mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX:adjusted padding so that content aligns properly on the add page panel Trac #6990
This commit is contained in:
parent
9e60225064
commit
97aa2c8ba6
@ -312,6 +312,9 @@ body.cms { overflow: hidden; }
|
||||
/** -------------------------------------------- "Add page" dialog -------------------------------------------- */
|
||||
.cms-page-add-form-dialog { display: none; }
|
||||
|
||||
.cms-add-form .step-label .flyout { height: 17px; padding-top: 5px; }
|
||||
.cms-add-form .step-label .title { padding-top: 5px; font-weight: bold; text-shadow: 1px 1px 0 white; }
|
||||
.cms-add-form ul.SelectionGroup { padding-left: 28px; }
|
||||
.cms-add-form .parent-mode { padding: 8px; overflow: auto; }
|
||||
.cms-add-form #PageType li { float: none; width: 100%; padding: 9px 0 9px 15px; overflow: hidden; border-bottom-width: 2px; border-bottom: 2px groove rgba(255, 255, 255, 0.8); -webkit-border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch; border-image: url(../images/textures/bg_fieldset_elements_border.png) 2 stretch stretch; }
|
||||
.cms-add-form #PageType li:last-child { border-bottom: none; }
|
||||
|
@ -408,6 +408,20 @@ body.cms {
|
||||
}
|
||||
|
||||
.cms-add-form {
|
||||
.step-label {
|
||||
.flyout {
|
||||
height:17px; //centres number within the grey arrow
|
||||
padding-top:5px;
|
||||
}
|
||||
.title {
|
||||
padding-top:5px; //aligns label with point of arrow
|
||||
font-weight:bold; //to match pagetype label
|
||||
@include text-shadow(1px 1px 0 $color-text-shadow);
|
||||
}
|
||||
}
|
||||
ul.SelectionGroup {
|
||||
padding-left:28px;
|
||||
}
|
||||
.parent-mode {
|
||||
padding: $grid-x;
|
||||
overflow: auto;
|
||||
|
Loading…
Reference in New Issue
Block a user