diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-11-09 08:10:57 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-13 10:55:53 -0500 |
commit | db1a622900250eef3be2dff23d17a00dbc15a1d3 (patch) | |
tree | c6cff85b03045569db9c8951e1a970efc9425eaa | |
parent | 8f098d88061adbdc2ec3c7e849dffc13fcf3f6ef (diff) | |
download | jquery-ui-db1a622900250eef3be2dff23d17a00dbc15a1d3.tar.gz jquery-ui-db1a622900250eef3be2dff23d17a00dbc15a1d3.zip |
CSS: Update .ui-helper-hidden-accessible to match H5BP's current .visuallyhidden. Fixes #8793 - Dialog: Internal autocomplete causes scroll bars.
(cherry picked from commit 48e0aa0fd2782380931af43abb5bb92b73ebe4ad)
-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 8cf4d02ef..ff258220e 100644 --- a/themes/base/jquery.ui.core.css +++ b/themes/base/jquery.ui.core.css @@ -12,7 +12,7 @@ /* Layout helpers ----------------------------------*/ .ui-helper-hidden { display: none; } -.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } +.ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 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:before, .ui-helper-clearfix:after { content: ""; display: table; } .ui-helper-clearfix:after { clear: both; } |