Files
openmct/platform/commonUI/general/res/sass/features/_time-display.scss
Charles Hacskaylo 50134bbc7f [Frontend] Theming and cleanups in Clocks and Timers
open #208
Also converted timer to use flexbox layout;
2015-11-20 16:19:27 -08:00

33 lines
600 B
SCSS

.l-time-display {
$transTime: 200ms;
line-height: 140%;
&:hover {
.l-btn.control {
opacity: 1;
}
}
&.l-timer {
.control {
@include trans-prop-nice((width, opacity), $transTime);
line-height: inherit;
margin-right: 0;
opacity: 0;
width: 0;
}
&:hover .control {
margin-right: $interiorMargin;
opacity: 1;
width: auto;
}
}
.value {
color: pullForward($colorBodyFg, 20%);
font-weight: 600;
.direction {
font-size: 0.8em;
}
}
}