mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
MINOR:SSF-30 changed measures to be multiples of grid-x and grid-y
This commit is contained in:
parent
5cc33ab843
commit
b53a32ae34
@ -466,7 +466,7 @@ body.cms-dialog { overflow: auto; background: url("../images/textures/bg_cms_mai
|
||||
|
||||
/** -------------------------------------------- Item Edit Form -------------------------------------------- */
|
||||
#Form_ItemEditForm .field { width: 100%; }
|
||||
#Form_ItemEditForm .field .fieldgroup { height: 230px; float: left; }
|
||||
#Form_ItemEditForm .field .fieldgroup { height: 240px; float: left; }
|
||||
#Form_ItemEditForm .field .fieldgroup .fieldgroup-field.first { position: relative; margin-left: 0px; }
|
||||
#Form_ItemEditForm .field .fieldgroup .fieldgroup-field { clear: both; width: 500px; margin-left: 420px; }
|
||||
#Form_ItemEditForm .field .fieldgroup .fieldgroup-field img { -moz-border-radius: 8px; -webkit-border-radius: 8px; -o-border-radius: 8px; -ms-border-radius: 8px; -khtml-border-radius: 8px; border-radius: 8px; border-width: 3px; border-style: dashed; border-color: #8c99a1; position: absolute; top: 8px; }
|
||||
|
@ -1238,7 +1238,7 @@ body.cms-dialog {
|
||||
.field {
|
||||
width:100%;
|
||||
.fieldgroup {
|
||||
height:230px;
|
||||
height:$grid-y * 30;
|
||||
float:left;
|
||||
.fieldgroup-field.first {
|
||||
position:relative;
|
||||
@ -1246,28 +1246,28 @@ body.cms-dialog {
|
||||
}
|
||||
.fieldgroup-field {
|
||||
clear:both;
|
||||
width:500px;
|
||||
margin-left:420px;
|
||||
width:$grid-x * 62.5;
|
||||
margin-left:$grid-x * 52.5;
|
||||
img {
|
||||
@include border-radius (8px);
|
||||
border: {
|
||||
width:3px;
|
||||
width:$grid-x - 5;
|
||||
style:dashed;
|
||||
color:$color-menu-border;
|
||||
}
|
||||
position:absolute;
|
||||
top:8px;
|
||||
top:$grid-y;
|
||||
}
|
||||
label {
|
||||
font-weight:bold;
|
||||
float:left;
|
||||
padding-top:8px;
|
||||
line-height:16px;
|
||||
padding-top:$grid-y;
|
||||
line-height:$grid-y * 2;
|
||||
text-shadow: $color-text-light 1px 1px 0;
|
||||
}
|
||||
span {
|
||||
float:left;
|
||||
padding-left:8px;
|
||||
padding-left:$grid-x;
|
||||
font-style:italic;
|
||||
color:lighten($color-text, 20%);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user