WTD-1163 WTD-1146 New CSS to hide non-functional elements, including browse.top-bar with search elements; Adjusted spacing, mainly in .contents CSS class;
37 lines
555 B
SCSS
37 lines
555 B
SCSS
.frame {
|
|
$ohH: 20px;
|
|
$bc: $colorInteriorBorder;
|
|
&.child-frame.panel {
|
|
background: $colorBodyBg;
|
|
border: 1px solid $bc;
|
|
&:hover {
|
|
border-color: lighten($bc, 10%);
|
|
}
|
|
.contents {
|
|
// overflow: hidden;
|
|
}
|
|
}
|
|
>.object-header.abs {
|
|
font-size: 0.75em;
|
|
height: $ohH;
|
|
}
|
|
>.object-holder.abs {
|
|
top: $ohH + $interiorMarginSm;
|
|
}
|
|
.contents {
|
|
$myM: $interiorMargin;
|
|
top: $myM;
|
|
right: $myM;
|
|
bottom: $myM;
|
|
left: $myM;
|
|
}
|
|
}
|
|
|
|
.edit-main .frame.child-frame.panel {
|
|
&:hover {
|
|
border-color: $colorKey;
|
|
@include boxShdwLarge();
|
|
}
|
|
|
|
}
|