diff options
Diffstat (limited to 'WebContent/ITMILL')
3 files changed, 28 insertions, 2 deletions
diff --git a/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css b/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css index ff53ff33b4..360a17db07 100644 --- a/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css +++ b/WebContent/ITMILL/themes/default/progressindicator/progressindicator.css @@ -27,7 +27,16 @@ width: 16px; overflow: hidden; /* for IE6 */ } -.i-progressindicator-disabled-indeterminate { + +/* Hide obsolete elements in indeterminate mode */ +.i-progressindicator-indeterminate .i-progressindicator-wrapper, +.i-progressindicator-indeterminate .i-progressindicator-indicator, +.i-progressindicator-indeterminate-disabled .i-progressindicator-wrapper, +.i-progressindicator-indeterminate-disabled .i-progressindicator-indicator { + display: none; +} + +.i-progressindicator-indeterminate-disabled { background: #dfe2e4 url(../common/img/blank.gif); height: 16px; width: 16px; diff --git a/WebContent/ITMILL/themes/default/styles.css b/WebContent/ITMILL/themes/default/styles.css index b7bb7e658e..cb20c81a5c 100644 --- a/WebContent/ITMILL/themes/default/styles.css +++ b/WebContent/ITMILL/themes/default/styles.css @@ -1190,7 +1190,16 @@ input.i-modified, width: 16px; overflow: hidden; /* for IE6 */ } -.i-progressindicator-disabled-indeterminate { + +/* Hide obsolete elements in indeterminate mode */ +.i-progressindicator-indeterminate .i-progressindicator-wrapper, +.i-progressindicator-indeterminate .i-progressindicator-indicator, +.i-progressindicator-indeterminate-disabled .i-progressindicator-wrapper, +.i-progressindicator-indeterminate-disabled .i-progressindicator-indicator { + display: none; +} + +.i-progressindicator-indeterminate-disabled { background: #dfe2e4 url(common/img/blank.gif); height: 16px; width: 16px; diff --git a/WebContent/ITMILL/themes/tests-tickets/styles.css b/WebContent/ITMILL/themes/tests-tickets/styles.css index f03a28a1c2..12c41e01fc 100644 --- a/WebContent/ITMILL/themes/tests-tickets/styles.css +++ b/WebContent/ITMILL/themes/tests-tickets/styles.css @@ -1253,4 +1253,12 @@ padding:2px; background: none !important; border: none !important; color: #222222 !important; +} + +.dispnone { + display:none; +} + +.redborder { + border: 1px solid red; }
\ No newline at end of file |