diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-31 23:31:25 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-31 23:31:25 +0000 |
commit | 7fd9aa5c8af5c2f20921c7096ad07f72da7bf7f8 (patch) | |
tree | fe0b9b598b2df1ce6735668a8d41623eaaaff0e2 /modules/system | |
parent | 291c7b8bb1a0ad6166f88d79c183973683adf183 (diff) | |
download | brdo-7fd9aa5c8af5c2f20921c7096ad07f72da7bf7f8.tar.gz brdo-7fd9aa5c8af5c2f20921c7096ad07f72da7bf7f8.tar.bz2 |
#69786: jQuery JavaScript Library in Drupal core
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.css | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/modules/system/system.css b/modules/system/system.css index 02ec1581f..cf28f9438 100644 --- a/modules/system/system.css +++ b/modules/system/system.css @@ -235,24 +235,29 @@ html.js fieldset.collapsed { border-left-width: 0; border-right-width: 0; margin-bottom: 0; + height: 1em; } html.js fieldset.collapsed * { display: none; } -html.js fieldset.collapsed table *, -html.js fieldset.collapsed legend, -html.js fieldset.collapsed legend * { - display: inline; +html.js fieldset.collapsed legend { + display: block; } html.js fieldset.collapsible legend a { padding-left: 15px; - background: url(../../misc/menu-expanded.png) 5px 50% no-repeat; + background: url(../../misc/menu-expanded.png) 5px 75% no-repeat; } html.js fieldset.collapsed legend a { background-image: url(../../misc/menu-collapsed.png); + background-position: 5px 50%; } /* Note: IE-only fix due to '* html' (breaks Konqueror otherwise). */ -* html.js fieldset.collapsible legend a { +* html.js fieldset.collapsed legend, +* html.js fieldset.collapsed legend *, +* html.js fieldset.collapsed table * { + display: inline; +} +html.js fieldset.collapsible legend a { display: block; } @@ -269,6 +274,10 @@ html.js fieldset.collapsed legend a { border-top-width: 0; cursor: s-resize; } +html.js .resizable-textarea textarea { + margin-bottom: 0; + width: 100%; +} /* ** Progressbar styles |