pacem-less 0.51.4-dijkstra → 0.51.4-dirac
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/pacem/ui/dark/tuner.less +14 -2
- package/package.json +1 -1
package/pacem/ui/dark/tuner.less
CHANGED
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
stroke: ~"var(--@{PCSS}-color-default)";
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
&::part(complementary-rail) {
|
|
28
|
+
display: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
27
31
|
&::part(track) {
|
|
28
32
|
stroke: @color_border;
|
|
29
33
|
}
|
|
@@ -69,13 +73,20 @@
|
|
|
69
73
|
|
|
70
74
|
@colors: @all_colors;
|
|
71
75
|
|
|
72
|
-
//
|
|
76
|
+
// rail
|
|
73
77
|
each(@colors, {
|
|
74
78
|
&.tuner-@{value}::part(rail){
|
|
75
79
|
|
|
76
80
|
stroke: ~"var(--@{PCSS}-color-@{value})";
|
|
77
81
|
}
|
|
78
82
|
});
|
|
83
|
+
// complementary-rail
|
|
84
|
+
each(@colors, {
|
|
85
|
+
&.tuner-complementary-@{value}::part(complementary-rail){
|
|
86
|
+
display: inherit;
|
|
87
|
+
stroke: ~"var(--@{PCSS}-color-@{value})";
|
|
88
|
+
}
|
|
89
|
+
});
|
|
79
90
|
}
|
|
80
91
|
|
|
81
92
|
.TunerWrapper(@clr) {
|
|
@@ -111,6 +122,7 @@
|
|
|
111
122
|
}
|
|
112
123
|
|
|
113
124
|
&::part(rail),
|
|
125
|
+
&::part(complementary-rail),
|
|
114
126
|
&::part(track) {
|
|
115
127
|
stroke-width: 3px;
|
|
116
128
|
}
|
|
@@ -122,7 +134,7 @@
|
|
|
122
134
|
|
|
123
135
|
@colors: @all_colors;
|
|
124
136
|
|
|
125
|
-
//
|
|
137
|
+
// tuner
|
|
126
138
|
each(@colors, {
|
|
127
139
|
&.tuner-@{value}{
|
|
128
140
|
.TunerWrapper(~"var(--@{PCSS}-color-@{value}-rgb)");
|
package/package.json
CHANGED