diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-11-22 11:12:26 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-11-22 11:12:26 -0500 |
commit | a9d854967f0175b4c4b8a48c76a71d0fd1028680 (patch) | |
tree | c3f7513e2a11d5eacdcc2fdb116d9dd097e66050 /themes | |
parent | d23fe49ae814f677fedd55cddd97768bddeffa12 (diff) | |
download | jquery-ui-a9d854967f0175b4c4b8a48c76a71d0fd1028680.tar.gz jquery-ui-a9d854967f0175b4c4b8a48c76a71d0fd1028680.zip |
CSS: Rewrote .ui-helper-hidden-accessible base on HTML5 Boilerplate. Fixes #4623 - CSS: ui-helper-hidden-accessible affects page layout.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/jquery.ui.core.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.core.css b/themes/base/jquery.ui.core.css index a04066df6..5cb485cd1 100644 --- a/themes/base/jquery.ui.core.css +++ b/themes/base/jquery.ui.core.css @@ -11,7 +11,7 @@ /* Layout helpers ----------------------------------*/ .ui-helper-hidden { display: none; } -.ui-helper-hidden-accessible { position: absolute; left: -99999999px; } +.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .ui-helper-clearfix { display: inline-block; } |