Skip to content

Commit 35872e2

Browse files
committed
[Frontend] Styling for TC's TOI element
Fixes #933 Fixes #1193 TOI in TC done for now.
1 parent 98e67f8 commit 35872e2

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

platform/features/conductor-v2/conductor/res/sass/_constants.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ $ueTimeConductorH: (25px, 16px, 20px); // Heights for Ticks, Data Visualization,
22
$ueTimeConductorRtH: (25px, 3px, 20px); // Heights for elements in Real-time mode
33
$timeCondInputTimeSysDefW: 165px; // Default width for datetime value inputs
44
$timeCondInputDeltaDefW: 60px; // Default width for delta value inputs, typically 00:00:00
5-
$timeCondAxisLROffset: (5px, 5px); // Margin to left, right of tick axis and vis bar. For paging, use 15, 20px
5+
$timeCondAxisLROffset: (6px, 6px); // Margin to left, right of tick axis and vis bar. For paging, use 15, 20px
6+
$timeCondTOIIconD: 12px; // height and width of icon used for TOI indicator
7+
$timeCondTOIValOffset: 0px;

platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss

+29-5
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,16 @@
255255
$linesVOffset: 2px;
256256
@include transform(translateX(-50%));
257257
top: 0px; bottom: 0px;
258-
width: $r2H;
258+
width: $timeCondTOIIconD;
259259
left: auto; right: auto;
260260
z-index: 1;
261261
&:before,
262262
&:after {
263263
// Vertical lines
264264
content: '';
265265
background-color: $c;
266-
left: 50%; height: 35%; width: 1px;
266+
left: 50%;
267+
height: (($r2H - $timeCondTOIIconD)/2) + $linesVOffset; width: 1px;
267268
z-index: 0;
268269
}
269270

@@ -278,7 +279,7 @@
278279
}
279280

280281
.l-toi {
281-
$d: $r2H * 0.65;
282+
$d: $timeCondTOIIconD; //$r2H * 0.65;
282283
@include transform(translate(-50%, -50%));
283284
color: $c;
284285
font-size: $d;
@@ -294,15 +295,38 @@
294295
}
295296
}
296297

298+
.l-toi-val {
299+
@include transform(translateY(-50%));
300+
display: none; // Only show when TOI is active
301+
font-size: 0.7rem;
302+
position: absolute;
303+
top: 50%;
304+
white-space: nowrap;
305+
right: $timeCondTOIIconD + $interiorMarginSm;
306+
}
307+
308+
&.val-to-right {
309+
.l-toi-val {
310+
right: auto;
311+
left: $timeCondTOIIconD + $interiorMarginSm;
312+
}
313+
}
314+
315+
&.s-status-active {
316+
.l-toi-val {
317+
display: block;
318+
}
319+
}
320+
297321
&:hover {
298322
&:before,
299323
&:after {
300324
background-color: $cHov !important;
301325
}
302-
.l-toi {
326+
.l-toi,
327+
.l-toi-val {
303328
color: $cHov !important;
304329
}
305-
306330
}
307331
}
308332

platform/features/conductor-v2/conductor/res/templates/time-conductor.html

+4
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,13 @@
8282
<div class="l-data-visualization-holder l-row-elem flex-elem">
8383
<a class="l-page-button s-icon-button icon-pointer-left"></a>
8484
<div class="l-data-visualization">
85+
86+
<!-- val-to-right should be applied when l-toi-holder left < 160px -->
8587
<div class="l-toi-holder slidable horz"
88+
ng-class="{ 's-status-active':true, 'val-to-right': false }"
8689
style="left: 100%">
8790
<div class="l-toi s-toi"></div>
91+
<div class="l-toi-val">2016-09-15 21:31:30.000Z</div>
8892
</div>
8993
</div>
9094
<a class="l-page-button align-right s-icon-button icon-pointer-right"></a>

0 commit comments

Comments
 (0)