mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #571 from adrexia/7541-dialog
BUGFIX: Min-width on html dialog box (fixes #7541)
This commit is contained in:
commit
3a54d4a209
@ -516,6 +516,8 @@ form.member-profile-form .ui-tabs-nav .ui-corner-all, form.member-profile-form .
|
|||||||
|
|
||||||
.cms .ui-widget-overlay { background-color: #000; background-image: none; }
|
.cms .ui-widget-overlay { background-color: #000; background-image: none; }
|
||||||
|
|
||||||
|
.cms .ui-dialog { min-width: 570px; }
|
||||||
|
.cms .ui-dialog .htmleditorfield-dialog { min-width: 570px; }
|
||||||
.cms .ui-dialog .ss-ui-dialog.ui-dialog-content { padding-top: 0px; }
|
.cms .ui-dialog .ss-ui-dialog.ui-dialog-content { padding-top: 0px; }
|
||||||
|
|
||||||
.ui-dialog { background: url("../images/textures/bg_cms_main_content.png") repeat left top #f0f3f4; border: 3px solid #000 !important; border-radius: 8px; overflow: visible; padding: 0; }
|
.ui-dialog { background: url("../images/textures/bg_cms_main_content.png") repeat left top #f0f3f4; border: 3px solid #000 !important; border-radius: 8px; overflow: visible; padding: 0; }
|
||||||
|
@ -1280,9 +1280,15 @@ form.member-profile-form {
|
|||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cms .ui-dialog .ss-ui-dialog.ui-dialog-content {
|
.cms .ui-dialog{
|
||||||
|
min-width:570px;
|
||||||
|
.htmleditorfield-dialog{
|
||||||
|
min-width:570px;
|
||||||
|
}
|
||||||
|
.ss-ui-dialog.ui-dialog-content {
|
||||||
padding-top: 0px; //removes padding so that tabs are flush with header
|
padding-top: 0px; //removes padding so that tabs are flush with header
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Elements with this class can either frame inline markup or an iframe,
|
// Elements with this class can either frame inline markup or an iframe,
|
||||||
// most styles should be applied to .cms-dialog instead (which declares the content in the frame)
|
// most styles should be applied to .cms-dialog instead (which declares the content in the frame)
|
||||||
|
Loading…
Reference in New Issue
Block a user