|
54 | 54 | // Clock hands
|
55 | 55 | div[class*="hand"] {
|
56 | 56 | $handW: 2px;
|
57 |
| - $handH: $d * 0.4; //8px; |
| 57 | + $handH: $d * 0.4; |
58 | 58 | @include transform(translate(-50%, -50%));
|
59 | 59 | @include animation-iteration-count(infinite);
|
60 | 60 | @include animation-timing-function(linear);
|
|
95 | 95 | $rangeValOffset: $sliderKnobW + $interiorMargin;
|
96 | 96 | $r1H: nth($ueTimeConductorH, 1);
|
97 | 97 | $r2H: nth($ueTimeConductorH, 2);
|
| 98 | + $r2HRt: nth($ueTimeConductorRtH, 2); |
98 | 99 | $r3H: nth($ueTimeConductorH, 3);
|
99 | 100 | position: relative;
|
100 | 101 |
|
|
175 | 176 | }
|
176 | 177 |
|
177 | 178 | .l-time-conductor-inputs-and-ticks {
|
178 |
| - $c: $colorTimeCondTicks; //$colorTick; |
| 179 | + $c: $colorTimeCondTicks; |
179 | 180 | height: $r1H;
|
180 | 181 | mct-conductor-axis {
|
181 | 182 | display: block;
|
|
213 | 214 | height: $r2H;
|
214 | 215 | }
|
215 | 216 |
|
| 217 | + // Time of Interest control |
| 218 | + .l-toi-holder, |
| 219 | + .l-toi-holder:after, |
| 220 | + .l-toi-holder:before, |
| 221 | + .l-toi { |
| 222 | + display: block; |
| 223 | + position: absolute; |
| 224 | + } |
| 225 | + |
| 226 | + .l-toi-holder { |
| 227 | + $c: $colorClickIcon; |
| 228 | + $cHov: $colorClickIconHov; |
| 229 | + $linesVOffset: 2px; |
| 230 | + @include transform(translateX(-50%)); |
| 231 | + @include test(green); |
| 232 | + top: 0px; bottom: 0px; |
| 233 | + width: $r2H; |
| 234 | + left: auto; right: auto; |
| 235 | + z-index: 1; |
| 236 | + &:before, |
| 237 | + &:after { |
| 238 | + // Vertical lines |
| 239 | + content: ''; |
| 240 | + background-color: $c; |
| 241 | + left: 50%; height: 35%; width: 1px; |
| 242 | + z-index: 0; |
| 243 | + } |
| 244 | + |
| 245 | + &:before { |
| 246 | + @include transform(translate(-50%, $linesVOffset * -1)); |
| 247 | + top: 0px; bottom: auto; |
| 248 | + } |
| 249 | + |
| 250 | + &:after { |
| 251 | + @include transform(translate(-50%, $linesVOffset)); |
| 252 | + top: auto; bottom: 0px; |
| 253 | + } |
| 254 | + |
| 255 | + .l-toi { |
| 256 | + $d: $r2H * 0.65; |
| 257 | + @include transform(translate(-50%, -50%)); |
| 258 | + color: $c; |
| 259 | + font-size: $d; |
| 260 | + line-height: $d; |
| 261 | + text-align: center; |
| 262 | + left: 50%; |
| 263 | + top: 50%; |
| 264 | + height: $d; width: $d; |
| 265 | + z-index: 1; |
| 266 | + &:before { |
| 267 | + @extend .ui-symbol; |
| 268 | + content: $glyph-icon-clock; |
| 269 | + } |
| 270 | + } |
| 271 | + |
| 272 | + &:hover { |
| 273 | + &:before, |
| 274 | + &:after { |
| 275 | + background-color: $cHov !important; |
| 276 | + } |
| 277 | + .l-toi { |
| 278 | + color: $cHov !important; |
| 279 | + } |
| 280 | + |
| 281 | + } |
| 282 | + } |
| 283 | + |
216 | 284 | .l-time-conductor-controls {
|
217 | 285 | align-items: center;
|
218 | 286 | margin-top: $interiorMargin;
|
|
275 | 343 | }
|
276 | 344 | }
|
277 | 345 |
|
| 346 | + .l-toi-holder { |
| 347 | + display: none; |
| 348 | + } |
| 349 | + |
278 | 350 | .l-data-visualization {
|
279 |
| - background: $colorTimeCondDataVisRtBg !important |
| 351 | + background: $colorTimeCondDataVisRtBg !important; |
| 352 | + height: $r2HRt; |
280 | 353 | }
|
281 | 354 |
|
282 | 355 | .mode-selector .s-menu-button {
|
|
0 commit comments