File tree 6 files changed +7
-16
lines changed
features/conductor-v2/res/sass
6 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 268
268
text-shadow : rgba (black , $sVal ) 0 3px 7px ;
269
269
}
270
270
271
- @function pullForward ($c , $p : 20% ) {
272
- // For dark interfaces, lighter things come forward
273
- @return lighten ($c , $p );
274
- }
275
-
276
- @function pushBack ($c , $p : 20% ) {
277
- // For dark interfaces, darker things move back
278
- @return darken ($c , $p );
279
- }
280
-
281
271
@function percentToDecimal ($p ) {
282
272
@return $p / 100% ;
283
273
}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ $colorCreateBtn: $colorKey;
61
61
$colorGridLines : rgba (#fff , 0.05 );
62
62
$colorInvokeMenu : #fff ;
63
63
$colorObjHdrTxt : $colorBodyFg ;
64
- $colorObjHdrIc : pullForward ($colorObjHdrTxt , 20% );
64
+ $colorObjHdrIc : darken ($colorObjHdrTxt , 20% );
65
65
$colorTick : pullForward ($colorBodyBg , 20% );
66
66
67
67
// Menu colors
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ $colorCreateBtn: $colorKey;
61
61
$colorGridLines : rgba (#000 , 0.05 );
62
62
$colorInvokeMenu : #fff ;
63
63
$colorObjHdrTxt : $colorBodyFg ;
64
- $colorObjHdrIc : pushBack ($colorObjHdrTxt , 30 % );
65
- $colorTick : pullForward ( $colorBodyBg , 30 % );
64
+ $colorObjHdrIc : lighten ($colorObjHdrTxt , 20 % );
65
+ $colorTick : lighten ( $colorBodyFg , 10 % );
66
66
67
67
// Menu colors
68
68
$colorMenuBg : pushBack ($colorBodyBg , 10% );
Original file line number Diff line number Diff line change 66
66
top : 50% ;
67
67
z-index : 2 ;
68
68
& :before {
69
- background-color : $c ;
69
+ background : $colorObjHdrIc ;
70
70
content : ' ' ;
71
71
display : block ;
72
72
position : absolute ;
77
77
z-index : 2 ;
78
78
@include animation-duration (12s );
79
79
& :before {
80
- // background: red;
81
80
height : ceil ($handH * 0.7 );
82
81
}
83
82
}
178
177
}
179
178
180
179
.l-time-conductor-inputs-and-ticks {
181
- $c : $colorTick ;
180
+ $c : $colorTimeCondTicks ; // $ colorTick;
182
181
height : $r1H ;
183
182
mct-conductor-axis {
184
183
display : block ;
Original file line number Diff line number Diff line change 31
31
@import " constants" ;
32
32
33
33
// Thematic constants
34
+ $colorTimeCondTicks : pullForward ($colorBodyBg , 30% );
34
35
$colorTimeCondKeyBg : #4e70dc ;
35
36
$colorTimeCondKeyFg : #fff ;
36
37
$colorTimeCondDataVisBg : pullForward ($colorBodyBg , 10% );
Original file line number Diff line number Diff line change 31
31
@import " constants" ;
32
32
33
33
// Thematic constants
34
+ $colorTimeCondTicks : pullForward ($colorBodyBg , 30% );
34
35
$colorTimeCondKeyBg : #6178dc ;
35
36
$colorTimeCondKeyFg : #fff ;
36
37
$colorTimeCondDataVisBg : pullForward ($colorBodyBg , 10% );
You can’t perform that action at this time.
0 commit comments