diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-31 20:24:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-31 20:24:13 +0000 |
commit | b4b31c10398f4aea5e347e85dd476abebaaac3f1 (patch) | |
tree | c182fab5d81cf8aed5432a3c7638faf384f38db4 /modules | |
parent | 6fc055ab906c035355bfb789aed404551db5b45a (diff) | |
download | brdo-b4b31c10398f4aea5e347e85dd476abebaaac3f1.tar.gz brdo-b4b31c10398f4aea5e347e85dd476abebaaac3f1.tar.bz2 |
- Patch #745380 by sun: CSS contains too many needless differences between JS and no-JS versions.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system-behavior.css | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/modules/system/system-behavior.css b/modules/system/system-behavior.css index 1dcb4221f..93cd5ab98 100644 --- a/modules/system/system-behavior.css +++ b/modules/system/system-behavior.css @@ -43,14 +43,18 @@ html.js fieldset.collapsed { border-bottom-width: 0; border-left-width: 0; border-right-width: 0; - margin-bottom: 0; height: 1em; } html.js fieldset.collapsed .fieldset-wrapper { display: none; } -html.js fieldset.collapsible .fieldset-legend { +fieldset.collapsible { + position: relative; +} +fieldset.collapsible .fieldset-legend { display: block; +} +html.js fieldset.collapsible .fieldset-legend { padding-left: 15px; /* LTR */ background: url(../../misc/menu-expanded.png) 5px 75% no-repeat; /* LTR */ } @@ -58,23 +62,11 @@ html.js fieldset.collapsed .fieldset-legend { background-image: url(../../misc/menu-collapsed.png); /* LTR */ background-position: 5px 50%; /* LTR */ } -html.js fieldset.collapsible legend span.summary { +.fieldset-legend span.summary { font-size: 0.9em; color: #999; margin-left: 0.5em; } -/* IE6: Fix due to '* html' (breaks Konqueror otherwise). */ -* html.js fieldset.collapsed table * { - display: inline; -} -/* Safari 2: Tables in collapsible fieldsets disappear due to tableheader.js. */ -html.js fieldset.collapsible { - position: relative; -} -/* Avoid jumping around due to margins collapsing into collapsible fieldset border */ -html.js fieldset.collapsible .fieldset-wrapper { - overflow: auto; -} /** * Resizable textareas |