Fix missing js semi-colons and refactor CSS

This commit is contained in:
Dmitry V Selitsky 2015-10-07 12:48:28 +01:00 committed by Calum Lind
commit 14e775cbcf
10 changed files with 107 additions and 203 deletions

View file

@ -136,7 +136,7 @@ Deluge.ux.preferences.ExecutePage = Ext.extend(Ext.Panel, {
'complete': _('Torrent Complete'), 'complete': _('Torrent Complete'),
'added': _('Torrent Added'), 'added': _('Torrent Added'),
'removed': _('Torrent Removed') 'removed': _('Torrent Removed')
} };
this.list = new Ext.list.ListView({ this.list = new Ext.list.ListView({
store: new Ext.data.SimpleStore({ store: new Ext.data.SimpleStore({

View file

@ -62,7 +62,7 @@ Deluge.ux.preferences.ExtractorPage = Ext.extend(Ext.Panel, {
onApply: function() { onApply: function() {
// build settings object // build settings object
var config = {} var config = {};
config['extract_path'] = this.extract_path.getValue(); config['extract_path'] = this.extract_path.getValue();
config['use_name_folder'] = this.use_name_folder.getValue(); config['use_name_folder'] = this.use_name_folder.getValue();

View file

@ -556,7 +556,7 @@ Deluge.ux.preferences.SchedulerPage = Ext.extend(Ext.Panel, {
onApply: function() { onApply: function() {
// build settings object // build settings object
var config = {} var config = {};
config['button_state'] = this.schedule.getConfig(); config['button_state'] = this.schedule.getConfig();
config['low_down'] = this.downloadLimit.getValue(); config['low_down'] = this.downloadLimit.getValue();

View file

@ -30,9 +30,9 @@ Ext.ux.JSLoader = function(options) {
script.onError(script.options, response.status); script.onError(script.options, response.status);
} }
}); });
} };
Ext.ux.JSLoader.index = 0; Ext.ux.JSLoader.index = 0;
Ext.ux.JSLoader.scripts = []; Ext.ux.JSLoader.scripts = [];
Ext.ux.JSLoader.stdError = function(options, e) { Ext.ux.JSLoader.stdError = function(options, e) {
window.alert('Error loading script:\n\n' + options.url + '\n\nstatus: ' + e); window.alert('Error loading script:\n\n' + options.url + '\n\nstatus: ' + e);
} };

View file

@ -199,7 +199,7 @@ Ext.ux.Spinner = Ext.extend(Ext.util.Observable, {
this.field.mon(this.wrap, "mousewheel", this.handleMouseWheel, this); this.field.mon(this.wrap, "mousewheel", this.handleMouseWheel, this);
this.dd.setXConstraint(0, 0, 10) this.dd.setXConstraint(0, 0, 10);
this.dd.setYConstraint(1500, 1500, 10); this.dd.setYConstraint(1500, 1500, 10);
this.dd.endDrag = this.endDrag.createDelegate(this); this.dd.endDrag = this.endDrag.createDelegate(this);
this.dd.startDrag = this.startDrag.createDelegate(this); this.dd.startDrag = this.startDrag.createDelegate(this);

View file

@ -73,7 +73,7 @@ Ext.ux.form.SpinnerGroup = Ext.extend(Ext.form.CheckboxGroup, {
layoutConfig: {columns: this.items.length}, layoutConfig: {columns: this.items.length},
defaults: this.defaults, defaults: this.defaults,
items: this.items items: this.items
}) });
for(var i=0, len=this.items.length; i<len; i++){ for(var i=0, len=this.items.length; i<len; i++){
Ext.applyIf(this.items[i], colCfg); Ext.applyIf(this.items[i], colCfg);
}; };

View file

@ -89,4 +89,4 @@ Ext.override(Ext.tree.MultiSelectionModel, {
return node; return node;
} }
}) });

View file

@ -15,8 +15,7 @@ body {
.ext-el-mask-msg { .ext-el-mask-msg {
border-color:#223; border-color:#223;
background-color:#3f4757; background: #3f4757 url(../images/access/box/tb-blue.gif);
background-image:url(../images/access/box/tb-blue.gif);
} }
.ext-el-mask-msg div { .ext-el-mask-msg div {
background-color: #232d38; background-color: #232d38;
@ -26,8 +25,7 @@ body {
} }
.x-mask-loading div { .x-mask-loading div {
background-color:#232d38; background: #232d38 url(../images/access/grid/loading.gif);
background-image:url(../images/access/grid/loading.gif);
} }
.x-item-disabled { .x-item-disabled {
@ -90,14 +88,12 @@ body {
} }
ul.x-tab-strip-top{ ul.x-tab-strip-top{
background-color:#343843; background: #343843 url(../images/access/tabs/tab-strip-bg.gif);
background-image: url(../images/access/tabs/tab-strip-bg.gif);
border-bottom-color:#343d4e; border-bottom-color:#343d4e;
} }
ul.x-tab-strip-bottom{ ul.x-tab-strip-bottom{
background-color:#343843; background: #343843 url(../images/access/tabs/tab-strip-btm-bg.gif);
background-image: url(../images/access/tabs/tab-strip-btm-bg.gif);
border-top-color:#343843; border-top-color:#343843;
} }
@ -197,10 +193,8 @@ ul.x-tab-strip-bottom{
.x-form-text, textarea.x-form-field{ .x-form-text, textarea.x-form-field{
color: #ffffff; color: #ffffff;
background-color:#33373d; background: #33373d url(../images/access/form/text-bg.gif);
background-image:url(../images/access/form/text-bg.gif); border: 2px #737b8c;
border-color:#737b8c;
border-width:2px;
} }
.ext-webkit .x-form-text, .ext-webkit textarea.x-form-field{ .ext-webkit .x-form-text, .ext-webkit textarea.x-form-field{
@ -231,8 +225,7 @@ ul.x-tab-strip-bottom{
.x-form-field-wrap .x-form-trigger{ .x-form-field-wrap .x-form-trigger{
background-image:url(../images/access/form/trigger.gif); background-image:url(../images/access/form/trigger.gif);
border-bottom-color:#737b8c; border-bottom: 2px #737b8c;
border-bottom-width:2px;
height:24px; height:24px;
width:20px; width:20px;
} }
@ -299,8 +292,7 @@ ul.x-tab-strip-bottom{
.x-form-invalid, textarea.x-form-invalid, .x-form-invalid, textarea.x-form-invalid,
.ext-webkit .x-form-invalid, .ext-webkit textarea.x-form-invalid{ .ext-webkit .x-form-invalid, .ext-webkit textarea.x-form-invalid{
background-color:#15171a; background: #15171a url(../images/access/grid/invalid_line.gif);
background-image:url(../images/access/grid/invalid_line.gif);
border-color:#c30; border-color:#c30;
} }
@ -312,8 +304,7 @@ ul.x-tab-strip-bottom{
*/ */
.x-form-inner-invalid, textarea.x-form-inner-invalid{ .x-form-inner-invalid, textarea.x-form-inner-invalid{
background-color:#fff; background: #fff url(../images/access/grid/invalid_line.gif);
background-image:url(../images/access/grid/invalid_line.gif);
} }
.x-form-grow-sizer { .x-form-grow-sizer {
@ -347,10 +338,9 @@ ul.x-tab-strip-bottom{
} }
.x-form-invalid-icon { .x-form-invalid-icon {
background-image:url(../images/access/form/exclamation.gif);
height:25px; height:25px;
width:19px; width:19px;
background-position:center right; background: url(../images/access/form/exclamation.gif) center right;
} }
.x-fieldset { .x-fieldset {
@ -493,8 +483,7 @@ ul.x-tab-strip-bottom{
} }
.x-toolbar{ .x-toolbar{
border-color:#18181a; border-color:#18181a;
background-color:#393d4e; background: #393d4e url(../images/access/toolbar/bg.gif);
background-image:url(../images/access/toolbar/bg.gif);
} }
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{ .x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
@ -661,8 +650,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid-row-loading { .x-grid-row-loading {
background-color: #fff; background: #fff url(../images/default/shared/loading-balls.gif);
background-image:url(../images/default/shared/loading-balls.gif);
} }
.x-grid3-row { .x-grid3-row {
@ -688,8 +676,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid3-header{ .x-grid3-header{
background-color:#3b3f50; background: #3b3f50 url(../images/access/grid/grid3-hrow.gif);
background-image:url(../images/access/grid/grid3-hrow.gif);
} }
.x-grid3-header-pop { .x-grid3-header-pop {
@ -707,8 +694,7 @@ td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
} }
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner { td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background-color:#4e628a; background: #4e628a url(../images/access/grid/grid3-hrow-over.gif);
background-image:url(../images/access/grid/grid3-hrow-over.gif);
} }
.x-grid3-cell-inner, .x-grid3-hd-inner { .x-grid3-cell-inner, .x-grid3-hd-inner {
@ -742,8 +728,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-dd-drag-proxy .x-grid3-hd-inner{ .x-dd-drag-proxy .x-grid3-hd-inner{
background-color:#ebf3fd; background: #ebf3fd url(../images/access/grid/grid3-hrow-over.gif);
background-image:url(../images/access/grid/grid3-hrow-over.gif);
border-color:#aaccf6; border-color:#aaccf6;
} }
@ -779,8 +764,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{ .x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background-color:#ebeadb !important; background: #ebeadb url(../images/default/grid/grid-hrow.gif) !important;
background-image:url(../images/default/grid/grid-hrow.gif) !important;
color:#fff; color:#fff;
border-top-color:#fff; border-top-color:#fff;
border-right-color:#6fa0df !important; border-right-color:#6fa0df !important;
@ -832,8 +816,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-grid3-hd-btn { .x-grid3-hd-btn {
background-color:#c2c9d0; background: #c2c9d0 url(../images/access/grid/grid3-hd-btn.gif);
background-image:url(../images/access/grid/grid3-hd-btn.gif);
} }
.x-grid3-body .x-grid3-td-expander { .x-grid3-body .x-grid3-td-expander {
@ -887,8 +870,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-grid-group-hd div.x-grid-group-title { .x-grid-group-hd div.x-grid-group-title {
background-image:url(../images/access/grid/group-collapse.gif); background: url(../images/access/grid/group-collapse.gif) 3px 6px;
background-position:3px 6px;
color:#ffd; color:#ffd;
font:bold 14px tahoma, arial, helvetica, sans-serif; font:bold 14px tahoma, arial, helvetica, sans-serif;
} }
@ -1135,8 +1117,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-inner th { .x-date-inner th {
background-color:#363d4a; background: #363d4a url(../images/access/toolbar/bg.gif);
background-image:url(../images/access/toolbar/bg.gif);
border-bottom-color:#535b5c; border-bottom-color:#535b5c;
font:normal 13px arial, helvetica,tahoma,sans-serif; font:normal 13px arial, helvetica,tahoma,sans-serif;
color:#fff; color:#fff;
@ -1157,8 +1138,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-inner .x-date-selected a{ .x-date-inner .x-date-selected a{
background-color:#e5872c; background: #e5872c none;
background-image:none;
border-color:#864900; border-color:#864900;
padding:1px 6px 1px 2px; /* Structure to account for larger, bolder fonts in Access theme. */ padding:1px 6px 1px 2px; /* Structure to account for larger, bolder fonts in Access theme. */
} }
@ -1177,8 +1157,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
.x-date-bottom { .x-date-bottom {
border-top-color:#737b8c; border-top-color:#737b8c;
background-color:#464d5a; background: #464d5a url(../images/access/shared/glass-bg.gif);
background-image:url(../images/access/shared/glass-bg.gif);
} }
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{ .x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
@ -1216,8 +1195,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-mp-btns { .x-date-mp-btns {
background-color: #dfecfb; background: #dfecfb url(../images/access/shared/glass-bg.gif);
background-image: url(../images/access/shared/glass-bg.gif);
} }
.x-date-mp-btns td { .x-date-mp-btns td {
@ -1234,8 +1212,7 @@ td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
} }
td.x-date-mp-sel a { td.x-date-mp-sel a {
background-color: #e5872c; background: #e5872c none;
background-image: none;
border-color:#864900; border-color:#864900;
} }
@ -1286,8 +1263,7 @@ td.x-date-mp-sep {
} }
.x-menu { .x-menu {
border-color:#222; border-color:#222;
background-color:#414551; background: #414551 url(../images/access/menu/menu.gif);
background-image:url(../images/access/menu/menu.gif);
} }
.x-menu-nosep { .x-menu-nosep {
@ -1312,8 +1288,7 @@ a.x-menu-item {
} }
.x-menu-item-active { .x-menu-item-active {
background-color: #f09134; background: #f09134 none;
background-image: none;
border-color:#b36427; border-color:#b36427;
} }
@ -1374,8 +1349,7 @@ a.x-menu-item {
} }
.x-box-mc { .x-box-mc {
background-color: #eee; background: #eee url(../images/default/box/tb.gif);
background-image: url(../images/default/box/tb.gif);
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
color: #393939; color: #393939;
font-size: 15px; font-size: 15px;
@ -1714,13 +1688,11 @@ body.x-body-masked .x-window-plain .x-window-mc {
} }
.x-progress-inner { .x-progress-inner {
background-color:#232d38; background: #232d38 none;
background-image:none;
} }
.x-progress-bar { .x-progress-bar {
background-color:#f39a00; background: #f39a00 url(../images/access/progress/progress-bg.gif);
background-image:url(../images/access/progress/progress-bg.gif);
border-top-color:#a66900; border-top-color:#a66900;
border-bottom-color:#a66900; border-bottom-color:#a66900;
border-right-color:#ffb941; border-right-color:#ffb941;
@ -1739,9 +1711,7 @@ body.x-body-masked .x-window-plain .x-window-mc {
line-height: 19px; line-height: 19px;
} }
.x-list-header{ .x-list-header{
background-color:#393d4e; background: #393d4e url(../images/access/toolbar/bg.gif) 0 top;
background-image:url(../images/access/toolbar/bg.gif);
background-position:0 top;
} }
.x-list-header-inner div em { .x-list-header-inner div em {

View file

@ -10,8 +10,7 @@
.ext-el-mask-msg { .ext-el-mask-msg {
border-color:#6593cf; border-color:#6593cf;
background-color:#c3daf9; background: #c3daf9 url(../images/default/box/tb-blue.gif);
background-image:url(../images/default/box/tb-blue.gif);
} }
.ext-el-mask-msg div { .ext-el-mask-msg div {
background-color: #eee; background-color: #eee;
@ -21,8 +20,7 @@
} }
.x-mask-loading div { .x-mask-loading div {
background-color:#fbfbfb; background: #fbfbfb url(../images/default/grid/loading.gif);
background-image:url(../images/default/grid/loading.gif);
} }
.x-item-disabled { .x-item-disabled {
@ -92,14 +90,12 @@
} }
ul.x-tab-strip-top{ ul.x-tab-strip-top{
background-color:#cedff5; background: #cedff5 url(../images/default/tabs/tab-strip-bg.gif);
background-image: url(../images/default/tabs/tab-strip-bg.gif);
border-bottom-color:#8db2e3; border-bottom-color:#8db2e3;
} }
ul.x-tab-strip-bottom{ ul.x-tab-strip-bottom{
background-color:#cedff5; background: #cedff5 url(../images/default/tabs/tab-strip-btm-bg.gif);
background-image: url(../images/default/tabs/tab-strip-btm-bg.gif);
border-top-color:#8db2e3; border-top-color:#8db2e3;
} }
@ -205,8 +201,7 @@ ul.x-tab-strip-bottom{
} }
.x-form-text, textarea.x-form-field { .x-form-text, textarea.x-form-field {
background-color:#fff; background: #fff url(../images/default/form/text-bg.gif);
background-image:url(../images/default/form/text-bg.gif);
border-color:#b5b8c8; border-color:#b5b8c8;
} }
@ -258,8 +253,7 @@ ul.x-tab-strip-bottom{
} }
.x-form-invalid, textarea.x-form-invalid { .x-form-invalid, textarea.x-form-invalid {
background-color:#fff; background: #fff url(../images/default/grid/invalid_line.gif);
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30; border-color:#c30;
} }
@ -269,14 +263,12 @@ ul.x-tab-strip-bottom{
} }
.x-form-invalid.x-form-composite .x-form-invalid { .x-form-invalid.x-form-composite .x-form-invalid {
background-color:#fff; background: #fff url(../images/default/grid/invalid_line.gif);
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30; border-color:#c30;
} }
.x-form-inner-invalid, textarea.x-form-inner-invalid { .x-form-inner-invalid, textarea.x-form-inner-invalid {
background-color:#fff; background: #fff url(../images/default/grid/invalid_line.gif);
background-image:url(../images/default/grid/invalid_line.gif);
} }
.x-form-grow-sizer { .x-form-grow-sizer {
@ -406,8 +398,7 @@ ul.x-tab-strip-bottom{
background-image: url(../images/default/button/group-tb.gif); background-image: url(../images/default/button/group-tb.gif);
}.x-toolbar{ }.x-toolbar{
border-color:#a9bfd3; border-color:#a9bfd3;
background-color:#d0def0; background: #d0def0 url(../images/default/toolbar/bg.gif);
background-image:url(../images/default/toolbar/bg.gif);
} }
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{ .x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
@ -552,8 +543,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid-row-loading { .x-grid-row-loading {
background-color: #fff; background: #fff url(../images/default/shared/loading-balls.gif);
background-image:url(../images/default/shared/loading-balls.gif);
} }
.x-grid3-row { .x-grid3-row {
@ -567,8 +557,7 @@ ul.x-tab-strip-bottom{
.x-grid3-row-over { .x-grid3-row-over {
border-color:#ddd; border-color:#ddd;
background-color:#efefef; background: #efefef url(../images/default/grid/row-over.gif);
background-image:url(../images/default/grid/row-over.gif);
} }
.x-grid3-resize-proxy { .x-grid3-resize-proxy {
@ -580,8 +569,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid3-header{ .x-grid3-header{
background-color:#f9f9f9; background: #f9f9f9 url(../images/default/grid/grid3-hrow.gif);
background-image:url(../images/default/grid/grid3-hrow.gif);
} }
.x-grid3-header-pop { .x-grid3-header-pop {
@ -599,8 +587,7 @@ td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
} }
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner { td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background-color:#ebf3fd; background: #ebf3fd url(../images/default/grid/grid3-hrow-over.gif);
background-image:url(../images/default/grid/grid3-hrow-over.gif);
} }
@ -625,8 +612,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-dd-drag-proxy .x-grid3-hd-inner{ .x-dd-drag-proxy .x-grid3-hd-inner{
background-color:#ebf3fd; background: #ebf3fd url(../images/default/grid/grid3-hrow-over.gif);
background-image:url(../images/default/grid/grid3-hrow-over.gif);
border-color:#aaccf6; border-color:#aaccf6;
} }
@ -662,8 +648,7 @@ td.grid-hd-group-cell {
} }
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{ .x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background-color:#ebeadb !important; background: #ebeadb url(../images/default/grid/grid-hrow.gif) !important;
background-image:url(../images/default/grid/grid-hrow.gif) !important;
color:#000; color:#000;
border-top-color:#fff; border-top-color:#fff;
border-right-color:#6fa0df !important; border-right-color:#6fa0df !important;
@ -712,8 +697,7 @@ td.grid-hd-group-cell {
} }
.x-grid3-hd-btn { .x-grid3-hd-btn {
background-color:#c3daf9; background: #c3daf9 url(../images/default/grid/grid3-hd-btn.gif);
background-image:url(../images/default/grid/grid3-hd-btn.gif);
} }
.x-grid3-body .x-grid3-td-expander { .x-grid3-body .x-grid3-td-expander {
@ -801,10 +785,8 @@ td.grid-hd-group-cell {
border-top-color:#a3bae9; border-top-color:#a3bae9;
}.x-pivotgrid .x-grid3-header-offset table td { }.x-pivotgrid .x-grid3-header-offset table td {
background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%; background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%;
border-left: 1px solid; border-right: 1px solid #D0D0D0;
border-right: 1px solid; border-left: 1px solid #EEE;
border-left-color: #EEE;
border-right-color: #D0D0D0;
} }
.x-pivotgrid .x-grid3-row-headers { .x-pivotgrid .x-grid3-row-headers {
@ -813,12 +795,9 @@ td.grid-hd-group-cell {
.x-pivotgrid .x-grid3-row-headers table td { .x-pivotgrid .x-grid3-row-headers table td {
background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top; background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
border-left: 1px solid; border-right: 1px solid #D0D0D0;
border-right: 1px solid; border-bottom: 1px solid #D0D0D0;
border-left-color: #EEE; border-left: 1px solid #EEE;
border-right-color: #D0D0D0;
border-bottom: 1px solid;
border-bottom-color: #D0D0D0;
height: 18px; height: 18px;
} }
.x-dd-drag-ghost{ .x-dd-drag-ghost{
@ -1016,8 +995,7 @@ td.grid-hd-group-cell {
} }
.x-date-inner th { .x-date-inner th {
background-color:#dfecfb; background: #dfecfb url(../images/default/shared/glass-bg.gif);
background-image:url(../images/default/shared/glass-bg.gif);
border-bottom-color:#a3bad9; border-bottom-color:#a3bad9;
font:normal 10px arial, helvetica,tahoma,sans-serif; font:normal 10px arial, helvetica,tahoma,sans-serif;
color:#233d6d; color:#233d6d;
@ -1037,8 +1015,7 @@ td.grid-hd-group-cell {
} }
.x-date-inner .x-date-selected a{ .x-date-inner .x-date-selected a{
background-color:#dfecfb; background: #dfecfb url(../images/default/shared/glass-bg.gif);
background-image:url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3; border-color:#8db2e3;
} }
@ -1056,8 +1033,7 @@ td.grid-hd-group-cell {
.x-date-bottom { .x-date-bottom {
border-top-color:#a3bad9; border-top-color:#a3bad9;
background-color:#dfecfb; background: #dfecfb url(../images/default/shared/glass-bg.gif);
background-image:url(../images/default/shared/glass-bg.gif);
} }
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{ .x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
@ -1095,8 +1071,7 @@ td.grid-hd-group-cell {
} }
.x-date-mp-btns { .x-date-mp-btns {
background-color: #dfecfb; background: #dfecfb url(../images/default/shared/glass-bg.gif);
background-image: url(../images/default/shared/glass-bg.gif);
} }
.x-date-mp-btns td { .x-date-mp-btns td {
@ -1113,8 +1088,7 @@ td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
} }
td.x-date-mp-sel a { td.x-date-mp-sel a {
background-color: #dfecfb; background: #dfecfb url(../images/default/shared/glass-bg.gif);
background-image: url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3; border-color:#8db2e3;
} }
@ -1162,8 +1136,7 @@ td.x-date-mp-sep {
.x-tip-anchor { .x-tip-anchor {
background-image:url(../images/default/qtip/tip-anchor-sprite.gif); background-image:url(../images/default/qtip/tip-anchor-sprite.gif);
}.x-menu { }.x-menu {
background-color:#f0f0f0; background: #f0f0f0 url(../images/default/menu/menu.gif);
background-image:url(../images/default/menu/menu.gif);
} }
.x-menu-floating{ .x-menu-floating{
@ -1192,8 +1165,7 @@ a.x-menu-item {
} }
.x-menu-item-active { .x-menu-item-active {
background-image: url(../images/default/menu/item-over.gif); background: #dbecf4 url(../images/default/menu/item-over.gif);
background-color: #dbecf4;
border-color:#aaccf6; border-color:#aaccf6;
} }
@ -1259,8 +1231,7 @@ a.x-menu-item {
} }
.x-box-mc { .x-box-mc {
background-color: #eee; background: #eee url(../images/default/box/tb.gif);
background-image: url(../images/default/box/tb.gif);
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
color: #393939; color: #393939;
font-size: 12px; font-size: 12px;
@ -1399,8 +1370,7 @@ a.x-menu-item {
} }
.x-panel-ml { .x-panel-ml {
background-color: #fff; background: #fff url(../images/default/panel/left-right.gif);
background-image:url(../images/default/panel/left-right.gif);
} }
.x-panel-mr { .x-panel-mr {
@ -1580,13 +1550,11 @@ body.x-body-masked .x-window-plain .x-window-mc {
} }
.x-progress-inner { .x-progress-inner {
background-color:#e0e8f3; background: #e0e8f3 url(../images/default/qtip/bg.gif);
background-image:url(../images/default/qtip/bg.gif);
} }
.x-progress-bar { .x-progress-bar {
background-color:#9cbfee; background: #9cbfee url(../images/default/progress/progress-bg.gif);
background-image:url(../images/default/progress/progress-bg.gif);
border-top-color:#d1e4fd; border-top-color:#d1e4fd;
border-bottom-color:#7fa9e4; border-bottom-color:#7fa9e4;
border-right-color:#7fa9e4; border-right-color:#7fa9e4;
@ -1601,8 +1569,7 @@ body.x-body-masked .x-window-plain .x-window-mc {
.x-progress-text-back { .x-progress-text-back {
color:#396095; color:#396095;
}.x-list-header{ }.x-list-header{
background-color:#f9f9f9; background: #f9f9f9 url(../images/default/grid/grid3-hrow.gif);
background-image:url(../images/default/grid/grid3-hrow.gif);
} }
.x-list-header-inner div em { .x-list-header-inner div em {

View file

@ -10,9 +10,7 @@
.ext-el-mask-msg { .ext-el-mask-msg {
border-color:#999; border-color:#999;
background-color:#ddd; background: #ddd url(../images/gray/panel/white-top-bottom.gif) 0 -1px;
background-image:url(../images/gray/panel/white-top-bottom.gif);
background-position: 0 -1px;
} }
.ext-el-mask-msg div { .ext-el-mask-msg div {
background-color: #eee; background-color: #eee;
@ -22,8 +20,7 @@
} }
.x-mask-loading div { .x-mask-loading div {
background-color:#fbfbfb; background: #fbfbfb url(../images/default/grid/loading.gif);
background-image:url(../images/default/grid/loading.gif);
} }
.x-item-disabled { .x-item-disabled {
@ -92,14 +89,12 @@
} }
ul.x-tab-strip-top{ ul.x-tab-strip-top{
background-color:#dbdbdb; background: #dbdbdb url(../images/gray/tabs/tab-strip-bg.gif);
background-image: url(../images/gray/tabs/tab-strip-bg.gif);
border-bottom-color:#d0d0d0; border-bottom-color:#d0d0d0;
} }
ul.x-tab-strip-bottom{ ul.x-tab-strip-bottom{
background-color:#dbdbdb; background: #dbdbdb url(../images/gray/tabs/tab-strip-btm-bg.gif);
background-image: url(../images/gray/tabs/tab-strip-btm-bg.gif);
border-top-color:#d0d0d0; border-top-color:#d0d0d0;
} }
@ -206,8 +201,7 @@ ul.x-tab-strip-bottom{
} }
.x-form-text, textarea.x-form-field{ .x-form-text, textarea.x-form-field{
background-color:#fff; background: #fff url(../images/default/form/text-bg.gif);
background-image:url(../images/default/form/text-bg.gif);
border-color:#C1C1C1; border-color:#C1C1C1;
} }
@ -259,8 +253,7 @@ ul.x-tab-strip-bottom{
} }
.x-form-invalid, textarea.x-form-invalid{ .x-form-invalid, textarea.x-form-invalid{
background-color:#fff; background: #fff url(../images/default/grid/invalid_line.gif);
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30; border-color:#c30;
} }
@ -270,8 +263,7 @@ ul.x-tab-strip-bottom{
} }
.x-form-inner-invalid, textarea.x-form-inner-invalid{ .x-form-inner-invalid, textarea.x-form-inner-invalid{
background-color:#fff; background: #fff url(../images/default/grid/invalid_line.gif);
background-image:url(../images/default/grid/invalid_line.gif);
} }
.x-form-grow-sizer { .x-form-grow-sizer {
@ -401,8 +393,7 @@ ul.x-tab-strip-bottom{
} }
.x-toolbar{ .x-toolbar{
border-color:#d0d0d0; border-color:#d0d0d0;
background-color:#f0f0f0; background: #f0f0f0 url(../images/gray/toolbar/bg.gif);
background-image:url(../images/gray/toolbar/bg.gif);
} }
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{ .x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
@ -547,8 +538,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid-row-loading { .x-grid-row-loading {
background-color: #fff; background: #fff url(../images/default/shared/loading-balls.gif);
background-image:url(../images/default/shared/loading-balls.gif);
} }
.x-grid3-row { .x-grid3-row {
@ -562,8 +552,7 @@ ul.x-tab-strip-bottom{
.x-grid3-row-over { .x-grid3-row-over {
border-color:#ddd; border-color:#ddd;
background-color:#efefef; background: #efefef url(../images/default/grid/row-over.gif);
background-image:url(../images/default/grid/row-over.gif);
} }
.x-grid3-resize-proxy { .x-grid3-resize-proxy {
@ -575,8 +564,7 @@ ul.x-tab-strip-bottom{
} }
.x-grid3-header{ .x-grid3-header{
background-color:#f9f9f9; background: #f9f9f9 url(../images/gray/grid/grid3-hrow2.gif);
background-image:url(../images/gray/grid/grid3-hrow2.gif);
} }
.x-grid3-header-pop { .x-grid3-header-pop {
@ -594,8 +582,7 @@ td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
} }
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner { td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background-color:#f9f9f9; background: #f9f9f9 url(../images/gray/grid/grid3-hrow-over2.gif);
background-image:url(../images/gray/grid/grid3-hrow-over2.gif);
} }
@ -620,8 +607,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-dd-drag-proxy .x-grid3-hd-inner{ .x-dd-drag-proxy .x-grid3-hd-inner{
background-color:#f9f9f9; background: #f9f9f9 url(../images/gray/grid/grid3-hrow-over2.gif);
background-image:url(../images/gray/grid/grid3-hrow-over2.gif);
border-color:#ACACAC; border-color:#ACACAC;
} }
@ -653,8 +639,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{ .x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background-color:#ebeadb !important; background: #ebeadb url(../images/default/grid/grid-hrow.gif) !important;
background-image:url(../images/default/grid/grid-hrow.gif) !important;
color:#000; color:#000;
border-top-color:#fff; border-top-color:#fff;
border-right-color:#6fa0df !important; border-right-color:#6fa0df !important;
@ -703,8 +688,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-grid3-hd-btn { .x-grid3-hd-btn {
background-color:#f9f9f9; background: #f9f9f9 url(../images/gray/grid/grid3-hd-btn.gif);
background-image:url(../images/gray/grid/grid3-hd-btn.gif);
} }
.x-grid3-body .x-grid3-td-expander { .x-grid3-body .x-grid3-td-expander {
@ -797,10 +781,8 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-pivotgrid .x-grid3-header-offset table td { .x-pivotgrid .x-grid3-header-offset table td {
background: url(../images/gray/grid/grid3-hrow2.gif) repeat-x 50% 100%; background: url(../images/gray/grid/grid3-hrow2.gif) repeat-x 50% 100%;
border-left: 1px solid; border-right: 1px solid #D0D0D0;
border-right: 1px solid; border-left: 1px solid #D0D0D0;
border-left-color: #D0D0D0;
border-right-color: #D0D0D0;
} }
.x-pivotgrid .x-grid3-row-headers { .x-pivotgrid .x-grid3-row-headers {
@ -809,12 +791,9 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
.x-pivotgrid .x-grid3-row-headers table td { .x-pivotgrid .x-grid3-row-headers table td {
background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top; background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
border-left: 1px solid; border-right: 1px solid #D0D0D0;
border-right: 1px solid; border-bottom: 1px solid #D0D0D0;
border-left-color: #EEE; border-left: 1px solid #EEE;
border-right-color: #D0D0D0;
border-bottom: 1px solid;
border-bottom-color: #D0D0D0;
height: 18px; height: 18px;
} }
.x-dd-drag-ghost{ .x-dd-drag-ghost{
@ -1018,8 +997,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-inner th { .x-date-inner th {
background-color:#D8D8D8; background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif);
background-image: url(../images/gray/panel/white-top-bottom.gif);
border-bottom-color:#AFAFAF; border-bottom-color:#AFAFAF;
font:normal 10px arial, helvetica,tahoma,sans-serif; font:normal 10px arial, helvetica,tahoma,sans-serif;
color:#595959; color:#595959;
@ -1039,8 +1017,7 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-inner .x-date-selected a{ .x-date-inner .x-date-selected a{
background-image: none; background: #D8D8D8 none;
background-color:#D8D8D8;
border-color:#DCDCDC; border-color:#DCDCDC;
} }
@ -1058,7 +1035,6 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
.x-date-bottom { .x-date-bottom {
border-top-color:#AFAFAF; border-top-color:#AFAFAF;
background-color:#D8D8D8;
background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px; background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px;
} }
@ -1097,7 +1073,6 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
} }
.x-date-mp-btns { .x-date-mp-btns {
background-color:#D8D8D8;
background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px; background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px;
} }
@ -1115,7 +1090,6 @@ td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
} }
td.x-date-mp-sel a { td.x-date-mp-sel a {
background-color:#D8D8D8;
background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px; background: #D8D8D8 url(../images/gray/panel/white-top-bottom.gif) 0 -2px;
border-color:#DCDCDC; border-color:#DCDCDC;
} }
@ -1164,8 +1138,7 @@ td.x-date-mp-sep {
.x-tip-anchor { .x-tip-anchor {
background-image:url(../images/gray/qtip/tip-anchor-sprite.gif); background-image:url(../images/gray/qtip/tip-anchor-sprite.gif);
}.x-menu { }.x-menu {
background-color:#f0f0f0; background: #f0f0f0 url(../images/default/menu/menu.gif);
background-image:url(../images/default/menu/menu.gif);
} }
.x-menu-floating{ .x-menu-floating{
@ -1194,8 +1167,7 @@ a.x-menu-item {
} }
.x-menu-item-active { .x-menu-item-active {
background-image: url(../images/gray/menu/item-over.gif); background: #f1f1f1 url(../images/gray/menu/item-over.gif);
background-color: #f1f1f1;
border-color:#ACACAC; border-color:#ACACAC;
} }
@ -1255,8 +1227,7 @@ a.x-menu-item {
} }
.x-box-mc { .x-box-mc {
background-color: #eee; background: #eee url(../images/default/box/tb.gif);
background-image: url(../images/default/box/tb.gif);
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
color: #393939; color: #393939;
font-size: 12px; font-size: 12px;
@ -1396,8 +1367,7 @@ a.x-menu-item {
} }
.x-panel-ml { .x-panel-ml {
background-color: #fff; background: #fff url(../images/gray/panel/left-right.gif);
background-image:url(../images/gray/panel/left-right.gif);
} }
.x-panel-mr { .x-panel-mr {
@ -1585,13 +1555,11 @@ body.x-body-masked .x-window-plain .x-window-mc {
} }
.x-progress-inner { .x-progress-inner {
background-color:#E7E7E7; background: #E7E7E7 url(../images/gray/qtip/bg.gif);
background-image:url(../images/gray/qtip/bg.gif);
} }
.x-progress-bar { .x-progress-bar {
background-color:#BCBCBC; background: #BCBCBC url(../images/gray/progress/progress-bg.gif);
background-image:url(../images/gray/progress/progress-bg.gif);
border-top-color:#E2E2E2; border-top-color:#E2E2E2;
border-bottom-color:#A4A4A4; border-bottom-color:#A4A4A4;
border-right-color:#A4A4A4; border-right-color:#A4A4A4;
@ -1607,8 +1575,7 @@ body.x-body-masked .x-window-plain .x-window-mc {
color:#5F5F5F; color:#5F5F5F;
} }
.x-list-header{ .x-list-header{
background-color:#f9f9f9; background: #f9f9f9 url(../images/gray/grid/grid3-hrow2.gif);
background-image:url(../images/gray/grid/grid3-hrow2.gif);
} }
.x-list-header-inner div em { .x-list-header-inner div em {