|
121 | 121 | background-color: var(--dui-slider-thumb-background, var(--dui-accent-l-1));
|
122 | 122 | position: absolute;
|
123 | 123 | border: var(--dui-slider-thumb-border);
|
124 |
| - transform-origin: var(--dui-slider-thumb-transform-origin); |
125 |
| - transform: var(--dui-slider-thumb-transform); |
126 |
| - border-radius: var(--dui-slider-thumb-value-radius); |
127 | 124 | height: var(--dui-slider-thumb-value-height);
|
128 |
| - width: var(--dui-slider-thumb-value-width); |
129 | 125 | top: var(--dui-slider-thumb-value-top);
|
130 | 126 | margin: var(--dui-slider-thumb-value-margin);
|
131 | 127 | -webkit-transition: var(--dui-slider-thumb-transition);
|
132 | 128 | transition: var(--dui-slider-thumb-transition);
|
133 | 129 | transition-property: var(--dui-slider-thumb-property);
|
| 130 | + transform-origin: var(--dui-slider-thumb-transform-origin); |
| 131 | + transform: var(--dui-slider-thumb-transform); |
| 132 | + border-radius: var(--dui-slider-thumb-value-radius); |
| 133 | + width: var(--dui-slider-thumb-value-width); |
134 | 134 | }
|
135 | 135 |
|
136 | 136 | .dui-slider-value {
|
137 | 137 | display: block;
|
| 138 | + text-align: center; |
| 139 | + color: var(--dui-slider-thumb-value-color); |
| 140 | + padding: var(--dui-slider-thumb-value-padding); |
| 141 | + font: var(--dui-font-regular-sm); |
| 142 | +} |
| 143 | + |
| 144 | +.dui-slider.dui-slider-thumb-rounded { |
| 145 | + --dui-slider-thumb-transform: translate(-9px, 9px) rotate(-45deg); |
| 146 | + --dui-slider-thumb-transform-origin: 50% 50%; |
| 147 | + --dui-slider-thumb-value-transform: rotate(45deg); |
| 148 | + |
| 149 | + --dui-slider-thumb-value-padding: 5px 0 0 0; |
| 150 | + --dui-slider-thumb-text-indent: 6px; |
| 151 | + --dui-slider-thumb-value-height: 30px; |
| 152 | + --dui-slider-thumb-radius: 25px; |
| 153 | + --dui-slider-thumb-value-radius: 50% 50% 50% 0; |
| 154 | +} |
| 155 | + |
| 156 | +.dui-slider.dui-slider-thumb-flat { |
| 157 | + --dui-slider-thumb-transform: translate(-4px, 9px); |
| 158 | + --dui-slider-thumb-transform-origin: 50% 50%; |
| 159 | + --dui-slider-thumb-value-transform: none; |
| 160 | + |
| 161 | + --dui-slider-thumb-value-padding: var(--dui-spc-1); |
| 162 | + --dui-slider-thumb-text-indent: 0; |
| 163 | + --dui-slider-thumb-value-height: auto; |
| 164 | + --dui-slider-thumb-radius: 25px; |
| 165 | + --dui-slider-thumb-value-radius: 2px; |
| 166 | +} |
| 167 | + |
| 168 | +.dui-slider.dui-slider-thumb-rounded .dui-slider-value { |
| 169 | + transform: var(--dui-slider-thumb-value-transform); |
| 170 | + text-indent: var(--dui-slider-thumb-text-indent); |
138 | 171 | width: var(--dui-slider-thumb-value-width);
|
139 | 172 | overflow-x: hidden;
|
140 | 173 | white-space: nowrap;
|
141 | 174 | text-overflow: ellipsis;
|
| 175 | +} |
| 176 | + |
| 177 | +.dui-slider.dui-slider-thumb-flat .dui-slider-thumb:after { |
| 178 | + content: ''; |
| 179 | + position: absolute; |
| 180 | + left: 2px; |
| 181 | + top: 20px; |
| 182 | + width: 0; |
| 183 | + height: 0; |
| 184 | + border-left: 10px solid transparent; |
| 185 | + border-right: 10px solid transparent; |
| 186 | + border-top: 16px solid var(--dui-slider-thumb-background, var(--dui-accent-l-1)); |
| 187 | + clear: both; |
| 188 | +} |
| 189 | + |
| 190 | +.dui-slider.dui-slider-thumb-flat .dui-slider-thumb { |
| 191 | + width: fit-content; |
142 | 192 | text-align: center;
|
| 193 | + line-height: 100%; |
| 194 | + min-width: 24px; |
| 195 | +} |
| 196 | + |
| 197 | +.dui-slider.dui-slider-thumb-flat .dui-slider-value { |
143 | 198 | transform: var(--dui-slider-thumb-value-transform);
|
144 |
| - color: var(--dui-slider-thumb-value-color); |
145 | 199 | text-indent: var(--dui-slider-thumb-text-indent);
|
146 |
| - padding: var(--dui-slider-thumb-value-padding); |
147 |
| - font: var(--dui-font-regular-sm); |
148 | 200 | }
|
149 |
| - |
|
0 commit comments