canvasxpress-cli 59.6.1 → 59.8.0
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/package.json +1 -1
- package/src/canvasXpress.css +7 -7
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -3004,7 +3004,7 @@ label.cX-Toggle:hover div.cX-Toggle-Switch:before {
|
|
|
3004
3004
|
}
|
|
3005
3005
|
|
|
3006
3006
|
input.cX-Toggle:checked+div.cX-Toggle-Switch {
|
|
3007
|
-
background: var(--cx-background-color);
|
|
3007
|
+
background: var(--cx-toggle-switch-background-color);
|
|
3008
3008
|
}
|
|
3009
3009
|
|
|
3010
3010
|
input.cX-Toggle:checked+div.cX-Toggle-Switch:before {
|
|
@@ -3057,7 +3057,7 @@ div.CanvasXpressRangeSliderInput {
|
|
|
3057
3057
|
|
|
3058
3058
|
input.CanvasXpressRangeSliderMin,
|
|
3059
3059
|
input.CanvasXpressRangeSliderMax {
|
|
3060
|
-
color: var(--cx-background-color);
|
|
3060
|
+
color: var(--cx-toggle-switch-background-color);
|
|
3061
3061
|
border: 1px solid var(--cx-background-widgets-color);
|
|
3062
3062
|
border-radius: var(--cx-border-radius);
|
|
3063
3063
|
font: var(--cx-font);
|
|
@@ -3097,7 +3097,7 @@ div.CanvasXpressRangeSlider>div.CanvasXpressRangeSliderTrack {
|
|
|
3097
3097
|
}
|
|
3098
3098
|
|
|
3099
3099
|
div.CanvasXpressRangeSlider>div.CanvasXpressRangeSliderRange {
|
|
3100
|
-
background-color: var(--cx-background-color);
|
|
3100
|
+
background-color: var(--cx-toggle-switch-background-color);
|
|
3101
3101
|
position: absolute;
|
|
3102
3102
|
z-index: 10002;
|
|
3103
3103
|
left: 0%;
|
|
@@ -3119,7 +3119,7 @@ div.CanvasXpressRangeSlider>div.CanvasXpressRangeSliderThumbRight {
|
|
|
3119
3119
|
|
|
3120
3120
|
div.CanvasXpressRangeSlider>div.CanvasXpressRangeSliderThumbLeft,
|
|
3121
3121
|
div.CanvasXpressRangeSlider>div.CanvasXpressRangeSliderThumbRight {
|
|
3122
|
-
background-color: var(--cx-background-color);
|
|
3122
|
+
background-color: var(--cx-toggle-switch-background-color);
|
|
3123
3123
|
box-shadow: 0 0 0 0 var(--cx-background-hover-color);
|
|
3124
3124
|
}
|
|
3125
3125
|
|
|
@@ -3155,7 +3155,7 @@ input[type=range].customizerRightItemRangeSelect::-webkit-slider-thumb {
|
|
|
3155
3155
|
width: 15px;
|
|
3156
3156
|
height: 15px;
|
|
3157
3157
|
border-radius: 50%;
|
|
3158
|
-
background: var(--cx-background-color);
|
|
3158
|
+
background: var(--cx-toggle-switch-background-color);
|
|
3159
3159
|
cursor: pointer;
|
|
3160
3160
|
}
|
|
3161
3161
|
|
|
@@ -3163,7 +3163,7 @@ input[type=range].customizerRightItemRangeSelect::-moz-range-thumb {
|
|
|
3163
3163
|
width: 15px;
|
|
3164
3164
|
height: 15px;
|
|
3165
3165
|
border-radius: 50%;
|
|
3166
|
-
background: var(--cx-background-color);
|
|
3166
|
+
background: var(--cx-toggle-switch-background-color);
|
|
3167
3167
|
cursor: pointer;
|
|
3168
3168
|
}
|
|
3169
3169
|
|
|
@@ -3208,7 +3208,7 @@ span.CanvasXpressRangeSliderTicks {
|
|
|
3208
3208
|
display: flex;
|
|
3209
3209
|
justify-content: center;
|
|
3210
3210
|
width: 1px;
|
|
3211
|
-
background: var(--cx-background-color);
|
|
3211
|
+
background: var(--cx-toggle-switch-background-color);
|
|
3212
3212
|
margin-bottom: 10px;
|
|
3213
3213
|
}
|
|
3214
3214
|
|