52 lines
1013 B
SCSS
52 lines
1013 B
SCSS
%list-row {
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
/* whilst this isn't in the designs this makes our temporary rollover look better */
|
|
padding-left: 12px;
|
|
}
|
|
%list-row-detail,
|
|
%list-row-header-icon {
|
|
margin-right: 6px;
|
|
}
|
|
%list-row-header dt {
|
|
display: none;
|
|
}
|
|
%list-row-header dd::before {
|
|
font-size: 0.9em;
|
|
}
|
|
%list-row-detail,
|
|
%list-row-header {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
overflow-x: hidden;
|
|
}
|
|
%list-row-header *,
|
|
%list-row-detail * {
|
|
white-space: nowrap;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
%list-row-detail > span {
|
|
margin-right: 18px;
|
|
}
|
|
%list-row-200 {
|
|
@extend %list-row;
|
|
padding-top: 0 !important;
|
|
padding-bottom: 0 !important;
|
|
}
|
|
%list-row-200 .detail {
|
|
grid-row-start: header !important;
|
|
grid-row-end: detail !important;
|
|
align-self: center !important;
|
|
padding: 5px 0;
|
|
}
|
|
%list-row-200 .popover-menu > [type='checkbox'] + label {
|
|
padding: 0;
|
|
}
|
|
%list-row-200 .popover-menu > [type='checkbox'] + label + div:not(.above) {
|
|
top: 30px;
|
|
}
|
|
%list-row-200 dd {
|
|
@extend %p2;
|
|
}
|