Files
openmct/platform/commonUI/general/res/sass/user-environ/_frame.scss
Charles Hacskaylo aec1176dc4 [Frontend] Hiding non-functional items; padding adjustments
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;
2015-05-01 10:10:35 -07:00

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();
}
}