Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Dialog: Restrict title to a single line. Fixes #7773 - Dialog: If tit…
…lebar changes height during resize, button pane positioning changes.
- Loading branch information
Showing
with
10 additions
and 1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -24,6 +24,10 @@ | ||
.ui-dialog .ui-dialog-title { | ||
float: left; | ||
margin: .1em 16px .1em 0; | ||
This comment has been minimized.
This comment has been minimized. |
||
white-space: nowrap; | ||
width: 90%; | ||
This comment has been minimized.
Jellyfrog
|
||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
.ui-dialog .ui-dialog-titlebar-close { | ||
position: absolute; | ||
The 16px margin is no longer needed?
margin: .1em 0;
should be enough?