diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2012-10-05 20:57:28 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2012-10-05 20:57:28 -0700 |
commit | 71c956f693985442d806621b33fb4f56ce02c801 (patch) | |
tree | 61224c383fdbaded7eab25ee43afd43e2fcb22dc | |
parent | 0a1b3116cae3577f966a8c86233c321d98c699e4 (diff) | |
download | brdo-71c956f693985442d806621b33fb4f56ce02c801.tar.gz brdo-71c956f693985442d806621b33fb4f56ce02c801.tar.bz2 |
Issue #1057912 by bfroehle, mgifford, bowersox, tarekdj, geerlingguy, hgurol: Fixed Weird Border on Vertical Tabs with Google Chrome and Safari caused by .element-invisible.
-rw-r--r-- | modules/system/system.base.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/system/system.base.css b/modules/system/system.base.css index 65383dd34..412b18a82 100644 --- a/modules/system/system.base.css +++ b/modules/system/system.base.css @@ -231,6 +231,8 @@ html.js .js-hide { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); + overflow: hidden; + height: 1px; } /** @@ -241,6 +243,8 @@ html.js .js-hide { .element-invisible.element-focusable:focus { position: static !important; clip: auto; + overflow: visible; + height: auto; } /** |