rename Spinner.cs to ext-extensions.css and add in the fileupload and
columntree css
This commit is contained in:
parent
d18a88c46a
commit
6cd5a7de30
|
@ -1,54 +0,0 @@
|
||||||
.x-form-spinner-proxy{
|
|
||||||
/*background-color:#ff00cc;*/
|
|
||||||
}
|
|
||||||
.x-form-field-wrap .x-form-spinner-trigger {
|
|
||||||
background: transparent url(/images/spinner.gif) no-repeat 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.x-form-field-wrap .x-form-spinner-overup{
|
|
||||||
background-position:-17px 0;
|
|
||||||
}
|
|
||||||
.x-form-field-wrap .x-form-spinner-clickup{
|
|
||||||
background-position:-34px 0;
|
|
||||||
}
|
|
||||||
.x-form-field-wrap .x-form-spinner-overdown{
|
|
||||||
background-position:-51px 0;
|
|
||||||
}
|
|
||||||
.x-form-field-wrap .x-form-spinner-clickdown{
|
|
||||||
background-position:-68px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-trigger{
|
|
||||||
background-position:-85px 0;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-overup{
|
|
||||||
background-position:-102px 0;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-clickup{
|
|
||||||
background-position:-119px 0;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-overdown{
|
|
||||||
background-position:-136px 0;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-clickdown{
|
|
||||||
background-position:-153px 0;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-trigger{
|
|
||||||
border-bottom: 1px solid #7eadd9;
|
|
||||||
}
|
|
||||||
|
|
||||||
.x-form-field-wrap .x-form-spinner-splitter {
|
|
||||||
line-height:1px;
|
|
||||||
font-size:1px;
|
|
||||||
background:transparent url(/images/spinner-split.gif) no-repeat 0 0;
|
|
||||||
position:absolute;
|
|
||||||
cursor: n-resize;
|
|
||||||
}
|
|
||||||
.x-trigger-wrap-focus .x-form-spinner-splitter{
|
|
||||||
background-position:-14px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.x-form-uxspinner .x-form-field-wrap {
|
|
||||||
height: 24px;
|
|
||||||
}
|
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,139 @@
|
||||||
|
/*
|
||||||
|
* ColumnTree styles
|
||||||
|
*/
|
||||||
|
.x-column-tree .x-tree-node {
|
||||||
|
zoom:1;
|
||||||
|
}
|
||||||
|
.x-column-tree .x-tree-node-el {
|
||||||
|
/*border-bottom:1px solid #eee; borders? */
|
||||||
|
zoom:1;
|
||||||
|
}
|
||||||
|
.x-column-tree .x-tree-selected {
|
||||||
|
background: #d9e8fb;
|
||||||
|
}
|
||||||
|
.x-column-tree .x-tree-node a {
|
||||||
|
line-height:18px;
|
||||||
|
vertical-align:middle;
|
||||||
|
}
|
||||||
|
.x-column-tree .x-tree-node a span{
|
||||||
|
|
||||||
|
}
|
||||||
|
.x-column-tree .x-tree-node .x-tree-selected a span{
|
||||||
|
background:transparent;
|
||||||
|
color:#000;
|
||||||
|
}
|
||||||
|
.x-tree-col {
|
||||||
|
float:left;
|
||||||
|
overflow:hidden;
|
||||||
|
padding:0 1px;
|
||||||
|
zoom:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-tree-col-text, .x-tree-hd-text {
|
||||||
|
overflow:hidden;
|
||||||
|
-o-text-overflow: ellipsis;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
padding:3px 3px 3px 5px;
|
||||||
|
white-space: nowrap;
|
||||||
|
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-tree-headers {
|
||||||
|
background: #f9f9f9 url(../../resources/images/default/grid/grid3-hrow.gif) repeat-x 0 bottom;
|
||||||
|
cursor:default;
|
||||||
|
zoom:1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-tree-hd {
|
||||||
|
float:left;
|
||||||
|
overflow:hidden;
|
||||||
|
border-left:1px solid #eee;
|
||||||
|
border-right:1px solid #d0d0d0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* FileUploadField component styles
|
||||||
|
*/
|
||||||
|
.x-form-file-wrap {
|
||||||
|
position: relative;
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
|
.x-form-file-wrap .x-form-file {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
-moz-opacity: 0;
|
||||||
|
filter:alpha(opacity: 0);
|
||||||
|
opacity: 0;
|
||||||
|
z-index: 2;
|
||||||
|
height: 22px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.x-form-file-wrap .x-btn {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.x-form-file-wrap .x-form-file-text {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
z-index: 3;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Spinner styles
|
||||||
|
*/
|
||||||
|
.x-form-spinner-proxy{
|
||||||
|
/*background-color:#ff00cc;*/
|
||||||
|
}
|
||||||
|
.x-form-field-wrap .x-form-spinner-trigger {
|
||||||
|
background: transparent url(/images/spinner.gif) no-repeat 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-form-field-wrap .x-form-spinner-overup{
|
||||||
|
background-position:-17px 0;
|
||||||
|
}
|
||||||
|
.x-form-field-wrap .x-form-spinner-clickup{
|
||||||
|
background-position:-34px 0;
|
||||||
|
}
|
||||||
|
.x-form-field-wrap .x-form-spinner-overdown{
|
||||||
|
background-position:-51px 0;
|
||||||
|
}
|
||||||
|
.x-form-field-wrap .x-form-spinner-clickdown{
|
||||||
|
background-position:-68px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-trigger{
|
||||||
|
background-position:-85px 0;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-overup{
|
||||||
|
background-position:-102px 0;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-clickup{
|
||||||
|
background-position:-119px 0;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-overdown{
|
||||||
|
background-position:-136px 0;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-clickdown{
|
||||||
|
background-position:-153px 0;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-trigger{
|
||||||
|
border-bottom: 1px solid #7eadd9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-form-field-wrap .x-form-spinner-splitter {
|
||||||
|
line-height:1px;
|
||||||
|
font-size:1px;
|
||||||
|
background:transparent url(/images/spinner-split.gif) no-repeat 0 0;
|
||||||
|
position:absolute;
|
||||||
|
cursor: n-resize;
|
||||||
|
}
|
||||||
|
.x-trigger-wrap-focus .x-form-spinner-splitter{
|
||||||
|
background-position:-14px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-form-uxspinner .x-form-field-wrap {
|
||||||
|
height: 24px;
|
||||||
|
}
|
|
@ -220,7 +220,7 @@ class TopLevel(resource.Resource):
|
||||||
|
|
||||||
__stylesheets = [
|
__stylesheets = [
|
||||||
"/css/ext-all.css",
|
"/css/ext-all.css",
|
||||||
"/css/Spinner.css",
|
"/css/ext-extensions.css",
|
||||||
"/css/deluge.css"
|
"/css/deluge.css"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -284,7 +284,7 @@ class TopLevel(resource.Resource):
|
||||||
self.putChild("tracker", Tracker())
|
self.putChild("tracker", Tracker())
|
||||||
|
|
||||||
theme = component.get("DelugeWeb").config["theme"]
|
theme = component.get("DelugeWeb").config["theme"]
|
||||||
self.__stylesheets.insert(1, "/css/xtheme-%s.css" % theme)
|
self.__stylesheets.append("/css/xtheme-%s.css" % theme)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def scripts(self):
|
def scripts(self):
|
||||||
|
|
Loading…
Reference in New Issue