diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-22 02:05:27 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-22 02:05:27 +0000 |
commit | 1e95c7ff0660dacd40abf8d4263a114151a54b1d (patch) | |
tree | ec6926c83ac7ed3ee597056fd7dddc4a893de24a /themes | |
parent | 568b607b81cf7d98826a890246d1ff799962687c (diff) | |
download | jquery-ui-1e95c7ff0660dacd40abf8d4263a114151a54b1d.tar.gz jquery-ui-1e95c7ff0660dacd40abf8d4263a114151a54b1d.zip |
Dialog: Added padding and margin to the right side of the titlebar so the title doesn't go behind the close icon.
Fixes #5087 - Title goes behind the close link.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/base/ui.dialog.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/base/ui.dialog.css b/themes/base/ui.dialog.css index 609f6f984..29c4dde13 100644 --- a/themes/base/ui.dialog.css +++ b/themes/base/ui.dialog.css @@ -1,8 +1,8 @@ /* Dialog ----------------------------------*/ .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } -.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; } -.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } +.ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; } +.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } |