diff options
author | David Rothstein <drothstein@gmail.com> | 2012-09-15 14:43:25 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2012-09-15 14:43:25 -0400 |
commit | d67b65277be72f8f35895c404844739054fc0be0 (patch) | |
tree | 417f5005565fa2f863378a12e4fc46f8bcda481a | |
parent | d5d3702eb10d9a48047ed9d5c116924266e6974e (diff) | |
download | brdo-d67b65277be72f8f35895c404844739054fc0be0.tar.gz brdo-d67b65277be72f8f35895c404844739054fc0be0.tar.bz2 |
Roll back issue #948516 from Drupal 7 for now (which made down arrows in fieldsets part of the link) because it breaks RTL languages.
-rw-r--r-- | modules/system/system.theme.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.theme.css b/modules/system/system.theme.css index 730d4587d..73cebee73 100644 --- a/modules/system/system.theme.css +++ b/modules/system/system.theme.css @@ -173,11 +173,11 @@ input.form-radio { * * @see collapse.js */ -html.js fieldset.collapsible .fieldset-legend a { +html.js fieldset.collapsible .fieldset-legend { background: url(../../misc/menu-expanded.png) 5px 65% no-repeat; /* LTR */ padding-left: 15px; /* LTR */ } -html.js fieldset.collapsed .fieldset-legend a { +html.js fieldset.collapsed .fieldset-legend { background-image: url(../../misc/menu-collapsed.png); /* LTR */ background-position: 5px 50%; /* LTR */ } |