Skip to content

Commit c5c45f0

Browse files
committed
[Frontend] Update TC2 markup and sass
Fixes #933 Update markup and sass in TC2 to be in line with updates from master from #1047 glyphs to cssclass approach;
1 parent 753bd97 commit c5c45f0

File tree

9 files changed

+32
-37
lines changed

9 files changed

+32
-37
lines changed

platform/commonUI/general/res/sass/_icons.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
&.l-icon-link {
7474
&:after {
7575
color: $colorIconLink;
76-
content: '\e921'; //$glyph-icon-link;
76+
content: $glyph-icon-link;
7777
height: auto; width: auto;
7878
position: absolute;
7979
left: 0; top: 0; right: 0; bottom: 20%;

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

+13-15
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
&:before {
4444
@extend .ui-symbol;
4545
color: $c;
46-
content: '\e624';
46+
content: $glyph-icon-brackets;
4747
font-size: $d;
4848
line-height: normal;
4949
display: block;
@@ -99,11 +99,6 @@
9999
$r2H: nth($ueTimeConductorH, 2);
100100
$r3H: nth($ueTimeConductorH, 3);
101101

102-
// Glyphs Todo: replace with refactored CSS approach when that is merged into master
103-
$glyphIconFixed: '\e604';
104-
$glyphIconRealtime: '\43';
105-
$glyphIconLatest: '\44';
106-
107102
position: relative;
108103

109104
> .l-row-elem {
@@ -113,7 +108,7 @@
113108
position: relative;
114109
}
115110

116-
.mode-selector .s-menu-btn,
111+
.mode-selector .s-menu-button,
117112
.time-delta {
118113
&:before {
119114
@extend .ui-symbol;
@@ -285,27 +280,30 @@
285280
background: $colorTimeCondDataVisRtBg !important
286281
}
287282

288-
.mode-selector .s-menu-btn {
289-
@include btnSubtle($colorTimeCondKeyBg, pullForward($colorTimeCondKeyBg, $ltGamma), $colorTimeCondKeyFg);
283+
.mode-selector .s-menu-button {
284+
$fg: $colorTimeCondKeyFg;
285+
@include btnSubtle($bg: $colorTimeCondKeyBg, $bgHov: pullForward($colorTimeCondKeyBg, $ltGamma), $fg: $colorTimeCondKeyFg);
286+
&:before { color: $fg !important; };
287+
color: $fg !important;
290288
}
291289
}
292290

293291
// Fixed mode
294292
&.fixed-mode {
295-
$i: $glyphIconFixed;
293+
$i: $glyph-icon-calendar;
296294
.time-conductor-icon div[class*="hand"] {
297295
&.hand-little {
298296
@include transform(rotate(120deg));
299297
}
300298
}
301-
.mode-selector .s-menu-btn:before {
299+
.mode-selector .s-menu-button:before {
302300
content: $i;
303301
}
304302
}
305303

306304
// Realtime mode
307305
&.realtime-mode {
308-
$i: $glyphIconRealtime;
306+
$i: $glyph-icon-clock;
309307
.time-conductor-icon div[class*="hand"] {
310308
@include animation-name(clock-hands);
311309
}
@@ -315,14 +313,14 @@
315313
.l-time-conductor-inputs-holder .l-time-range-w.end-w .title:before {
316314
content: 'Now';
317315
}
318-
.mode-selector .s-menu-btn:before {
316+
.mode-selector .s-menu-button:before {
319317
content: $i;
320318
}
321319
}
322320

323321
// LAD mode
324322
&.latest-mode {
325-
$i: $glyphIconLatest;
323+
$i: $glyph-icon-database;
326324
.time-conductor-icon div[class*="hand"] {
327325
@include animation-name(clock-hands-sticky);
328326
&.hand-big {
@@ -338,7 +336,7 @@
338336
.l-time-conductor-inputs-holder .l-time-range-w.end-w .title:before {
339337
content: 'LAD';
340338
}
341-
.mode-selector .s-menu-btn:before {
339+
.mode-selector .s-menu-button:before {
342340
content: $i;
343341
}
344342
}

platform/features/conductor-v2/res/sass/time-conductor-espresso.scss

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
@import "../../../../commonUI/general/res/sass/mobile/mixins";
2727
@import "../../../../commonUI/themes/espresso/res/sass/constants";
2828
@import "../../../../commonUI/themes/espresso/res/sass/mixins";
29+
@import "../../../../commonUI/general/res/sass/glyphs";
2930
@import "../../../../commonUI/general/res/sass/icons";
3031
@import "constants";
3132

platform/features/conductor-v2/res/sass/time-conductor-snow.scss

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
@import "../../../../commonUI/general/res/sass/mobile/mixins";
2727
@import "../../../../commonUI/themes/snow/res/sass/constants";
2828
@import "../../../../commonUI/themes/snow/res/sass/mixins";
29+
@import "../../../../commonUI/general/res/sass/glyphs";
2930
@import "../../../../commonUI/general/res/sass/icons";
3031
@import "constants";
3132

platform/features/conductor-v2/res/templates/mode-selector/mode-menu.html

+4-9
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,16 @@
2424
<ul>
2525
<li ng-repeat="(key, metadata) in ngModel.options"
2626
ng-click="ngModel.selectedKey=key">
27-
<a
28-
ng-mouseover="representation.activeMetadata = metadata"
29-
ng-mouseleave="representation.activeMetadata = undefined">
30-
<span class="ui-symbol icon type-icon">
31-
{{metadata.glyph}}
32-
</span>
27+
<a ng-mouseover="representation.activeMetadata = metadata"
28+
ng-mouseleave="representation.activeMetadata = undefined"
29+
class="menu-item-a {{metadata.cssclass}}">
3330
{{metadata.name}}
3431
</a>
3532
</li>
3633
</ul>
3734
</div>
3835
<div class="pane right menu-item-description">
39-
<div class="desc-area ui-symbol icon type-icon">
40-
{{representation.activeMetadata.glyph}}
41-
</div>
36+
<div class="desc-area ui-symbol icon type-icon {{representation.activeMetadata.cssclass}}"></div>
4237
<div class="desc-area title">
4338
{{representation.activeMetadata.name}}
4439
</div>

platform/features/conductor-v2/res/templates/mode-selector/mode-selector.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
at runtime from the About dialog for additional information.
2121
-->
2222
<span ng-controller="ClickAwayController as modeController">
23-
<div class="s-menu-btn"
23+
<div class="s-menu-button"
2424
ng-click="modeController.toggle()">
2525
<span class="title-label">{{ngModel.options[ngModel.selectedKey]
2626
.label}}</span>

platform/features/conductor-v2/src/timeSystems/LocalClock.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ define(['./TickSource'], function (TickSource) {
3030

3131
this.metadata = {
3232
key: 'real-time',
33-
glyph: '\u0043',
33+
cssclass: 'icon-clock',
3434
label: 'Real-time',
3535
name: 'Real-time Mode',
3636
description: 'Monitor real-time streaming data as it comes in. The Time Conductor and displays will automatically advance themselves based on a UTC clock.'

platform/features/conductor-v2/src/timeSystems/UTCTimeSystem.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ define([
3838
/**
3939
* Some metadata, which will be used to identify the time system in
4040
* the UI
41-
* @type {{key: string, name: string, glyph: string}}
41+
* @type {{key: string, name: string, cssclass: string}}
4242
*/
4343
this.metadata = {
4444
'key': 'utc',
4545
'name': 'UTC',
46-
'glyph': '\u0043'
46+
'cssclass': 'icon-clock'
4747
};
4848

4949
this._formats = ['utc'];

platform/features/conductor-v2/src/ui/TimeConductorController.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@ define(
4747

4848
this.modes = {
4949
'fixed': {
50-
glyph: '\ue604',
50+
cssclass: 'icon-calendar',
5151
label: 'Fixed',
5252
name: 'Fixed Timespan Mode',
5353
description: 'Query and explore data that falls between two fixed datetimes.'
5454
},
55-
'latest': {
56-
glyph: '\u0044',
57-
label: 'LAD',
58-
name: 'LAD Mode',
59-
description: 'Latest Available Data mode monitors real-time streaming data as it comes in. The Time Conductor and displays will only advance when data becomes available.'
60-
},
6155
'realtime': {
62-
glyph: '\u0043',
56+
cssclass: 'icon-clock',
6357
label: 'Real-time',
6458
name: 'Real-time Mode',
6559
description: 'Monitor real-time streaming data as it comes in. The Time Conductor and displays will automatically advance themselves based on a UTC clock.'
60+
},
61+
'latest': {
62+
cssclass: 'icon-database',
63+
label: 'LAD',
64+
name: 'LAD Mode',
65+
description: 'Latest Available Data mode monitors real-time streaming data as it comes in. The Time Conductor and displays will only advance when data becomes available.'
6666
}
6767
};
6868
this.selectedMode = undefined;

0 commit comments

Comments
 (0)