mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix bottom toolbar height
This commit is contained in:
parent
dce31d7235
commit
d4ad1504a9
File diff suppressed because one or more lines are too long
@ -324,7 +324,7 @@ form.small .field, .field.small {
|
||||
}
|
||||
|
||||
.chzn-container-single .chzn-single {
|
||||
height: 30px;
|
||||
height: 32px;
|
||||
line-height: 30px; /* not relative, as then we'd had to redo most of chzn */
|
||||
font-size: $font-base-size;
|
||||
background-image: linear-gradient(#efefef, #fff 10%, #fff 90%, #efefef);
|
||||
@ -428,7 +428,7 @@ form.small .field, .field.small {
|
||||
}
|
||||
|
||||
.Actions {
|
||||
min-height: 46px;
|
||||
min-height: 30px;
|
||||
overflow: auto;
|
||||
padding: $grid-x $grid-y * 1.5;
|
||||
}
|
||||
|
@ -189,7 +189,7 @@ body.cms {
|
||||
}
|
||||
|
||||
.cms-content-header-nav {
|
||||
margin-left: 31px;
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -254,7 +254,7 @@ body.cms {
|
||||
}
|
||||
|
||||
.cms-panel-toggle.south {
|
||||
box-shadow: 0 -1px 0 0 $color-light-separator;
|
||||
box-shadow: inset 0 1px 0 0 $color-light-separator;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -768,9 +768,9 @@ body.cms {
|
||||
.cms-content-actions, .cms-preview-controls {
|
||||
margin: 0;
|
||||
z-index: 999;
|
||||
box-shadow: 0 -1px 0 0 $color-light-separator;
|
||||
height: 28px;
|
||||
max-height: 28px;
|
||||
box-shadow: inset 0 1px 0 0 $color-light-separator;
|
||||
height: 52px;
|
||||
max-height: 52px;
|
||||
background-color: $tab-panel-texture-color;
|
||||
|
||||
&.south .Actions {
|
||||
@ -1535,6 +1535,9 @@ form.member-profile-form {
|
||||
padding: $grid-y * 2 0;
|
||||
width: 100%;
|
||||
text-decoration: none;
|
||||
line-height: 20px;
|
||||
height: 52px;
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
margin: 0 8px;
|
||||
@ -1590,6 +1593,8 @@ form.member-profile-form {
|
||||
.cms-panel-content-collapsed {
|
||||
width: 40px;
|
||||
display: none; // Avoids FOUC
|
||||
height: calc(100% - 52px);
|
||||
overflow: hidden;
|
||||
|
||||
h2, h3 {
|
||||
border-bottom: 0;
|
||||
|
Loading…
Reference in New Issue
Block a user