diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-07-29 20:56:28 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-07-29 20:56:28 -0400 |
commit | 61e0aeac7e626df711e7066f27b652602387b784 (patch) | |
tree | 7c9740d8542f472f8be5d8336fec5b3667288526 /themes | |
parent | f00c03139bf83e573b60376a146ae4584c5f5d17 (diff) | |
download | jquery-ui-61e0aeac7e626df711e7066f27b652602387b784.tar.gz jquery-ui-61e0aeac7e626df711e7066f27b652602387b784.zip |
Dialog: Wrap buttons in a div so we can float the div instead of the individual buttons. Fixes #4529 - dialog buttons are accessed in wrong order using tab.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/jquery.ui.dialog.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/base/jquery.ui.dialog.css b/themes/base/jquery.ui.dialog.css index 0ad55e9ca..035464447 100644 --- a/themes/base/jquery.ui.dialog.css +++ b/themes/base/jquery.ui.dialog.css @@ -15,6 +15,7 @@ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } -.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; } +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } +.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } .ui-draggable .ui-dialog-titlebar { cursor: move; } |