saumur: unify background and spacing for cells (#71774)

This commit is contained in:
Agate 2022-11-30 11:16:38 +01:00
parent 9d9e236ad3
commit 04e8cf3bb3
1 changed files with 15 additions and 4 deletions

View File

@ -183,7 +183,7 @@ div.link-cell {
position: relative;
}
h2:first-child {
padding-left: $space-large * 1.5;
padding-left: $space-large;
width: 100%;
}
img {
@ -191,18 +191,29 @@ div.link-cell {
padding: 0 !important;
width: $space-large;
top: $space-small;
left: $space-medium;
left: 0;
}
&.foldable:not(.folded) picture::after {
@extend %orange-border;
margin: 0 1rem;
margin: 0;
}
&:not(.foldable) picture::after {
@extend %orange-border;
margin: 0 1rem;
margin: 0;
}
}
// borderless cells in grid
.gru-content > #columns-wrapper > #columns {
border: $widget-border;
background: white;
padding: $space-medium;
.cell {
border: none;
}
}
// forms
.form-content {
@extend %cell;