diff options
author | Scott Jehl <scott@scottjehl.com> | 2008-12-22 18:32:59 +0000 |
---|---|---|
committer | Scott Jehl <scott@scottjehl.com> | 2008-12-22 18:32:59 +0000 |
commit | 224ae23179569ebed8e5a9b8966ce7bcd2dad0a9 (patch) | |
tree | b5bc23b51d0e3cf7d3a7ca57658fc4ca5ef7a012 /themes/base | |
parent | 8f01e245eabc39e06611ac63d7411c44038e2cda (diff) | |
download | jquery-ui-224ae23179569ebed8e5a9b8966ce7bcd2dad0a9.tar.gz jquery-ui-224ae23179569ebed8e5a9b8966ce7bcd2dad0a9.zip |
Fixed 1px jog during animation. Works in FF, not in Safari.
Diffstat (limited to 'themes/base')
-rw-r--r-- | themes/base/ui.accordion.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/base/ui.accordion.css b/themes/base/ui.accordion.css index c405a0d60..3d977ae02 100644 --- a/themes/base/ui.accordion.css +++ b/themes/base/ui.accordion.css @@ -1,9 +1,9 @@ /* Accordion ----------------------------------*/ .ui-accordion-group {margin-bottom: 1px;} -.ui-accordion-header { cursor: pointer; position: relative; height:2.2em; } +.ui-accordion-header { cursor: pointer; position: relative; } .selected .ui-accordion-header { border-bottom: 0; } .ui-accordion .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; } -.ui-accordion-content-wrap { border-top: 0; } +.ui-accordion-content-wrap { border-top: 0; margin-top: -1px; position: relative; top: 1px; } .ui-accordion-content { padding: 1em 2.2em; }
\ No newline at end of file |