2015-08-17 22:11:27 +00:00
|
|
|
/* Styles for sub-dividing views generically */
|
2016-09-02 02:37:36 +00:00
|
|
|
.l-control-bar {
|
2016-09-02 03:09:38 +00:00
|
|
|
// Element that can be placed above l-view-section, holds controls, buttons, etc.
|
|
|
|
height: $controlBarH;
|
2016-09-02 02:37:36 +00:00
|
|
|
}
|
|
|
|
|
2015-08-17 22:11:27 +00:00
|
|
|
.l-view-section {
|
|
|
|
@include absPosDefault(0);
|
|
|
|
h2 {
|
|
|
|
color: #fff;
|
|
|
|
margin-bottom: $interiorMargin;
|
|
|
|
}
|
|
|
|
&.fixed {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
.controls,
|
|
|
|
label,
|
|
|
|
.inline-block {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-09-02 02:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-control-bar {
|
|
|
|
.l-view-section {
|
2016-09-02 03:09:38 +00:00
|
|
|
top: $controlBarH + $interiorMargin;
|
2016-09-02 02:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.child-frame {
|
|
|
|
.has-control-bar {
|
|
|
|
$btnExportH: $btnFrameH;
|
|
|
|
.l-control-bar {
|
|
|
|
@include trans-prop-nice(opacity, $dur: 50ms);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.l-view-section {
|
|
|
|
@include trans-prop-nice(top, $dur: 150ms, $delay: 50ms);
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
.l-control-bar {
|
|
|
|
@include trans-prop-nice(opacity, 150ms, 100ms);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.l-view-section {
|
|
|
|
@include trans-prop-nice(top, $dur: 150ms);
|
|
|
|
top: $btnExportH + $interiorMargin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 22:11:27 +00:00
|
|
|
}
|