diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-02 12:50:17 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-12-03 19:09:32 +0100 |
commit | bdb0fbe993ab4c716f3cbc6f2c08072bf512115f (patch) | |
tree | db41ed29f22686c22532b8a3d1573b6de687b3f4 /themes/base | |
parent | 5ba267e7c78f0bc257383c822d241c5369e8e49d (diff) | |
download | jquery-ui-bdb0fbe993ab4c716f3cbc6f2c08072bf512115f.tar.gz jquery-ui-bdb0fbe993ab4c716f3cbc6f2c08072bf512115f.zip |
Dialog: Restrict title to a single line. Fixes #7773 - Dialog: If titlebar changes height during resize, button pane positioning changes.
Diffstat (limited to 'themes/base')
-rw-r--r-- | themes/base/jquery.ui.dialog.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/base/jquery.ui.dialog.css b/themes/base/jquery.ui.dialog.css index 986ce8604..370c95da5 100644 --- a/themes/base/jquery.ui.dialog.css +++ b/themes/base/jquery.ui.dialog.css @@ -24,6 +24,10 @@ .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; + white-space: nowrap; + width: 90%; + overflow: hidden; + text-overflow: ellipsis; } .ui-dialog .ui-dialog-titlebar-close { position: absolute; |