|
33 | 33 | pressed-state-layer-color: $color,
|
34 | 34 | pressed-state-layer-opacity: 1,
|
35 | 35 | with-overlap-handle-outline-color: $container-color,
|
36 |
| - with-tick-marks-active-container-color: $color, |
37 |
| - with-tick-marks-disabled-container-color: $disabled-color, |
38 |
| - with-tick-marks-inactive-container-color: $container-color, |
39 | 36 | )
|
40 | 37 | );
|
41 | 38 | }
|
|
50 | 47 | :host(:not([disabled])) .track::before {
|
51 | 48 | border: 1px solid var(--_active-track-color);
|
52 | 49 | }
|
| 50 | + |
| 51 | + // inactive-track |
| 52 | + .track.tickmarks::before { |
| 53 | + // A url must be used when forced-colors is active as it's the only value |
| 54 | + // that is respected. The radial-gradient is not displayed. This is a |
| 55 | + // stop-gap solution so ticks are displayed at all when forced-colors is |
| 56 | + // active. |
| 57 | + // Note: |
| 58 | + // * The SVG has no viewBox which lets the svg take its dimensions from |
| 59 | + // background-size. |
| 60 | + // * The fill is set directly. Using currentColor does not seem to work, |
| 61 | + // hence the duplication of background-image. |
| 62 | + // * This approach does not respect tick sizes. Instead they will always be |
| 63 | + // 1px wide. This is a limitation of using the url, as I'm not sure how |
| 64 | + // to pass in a custom property to change the `r` attribute. |
| 65 | + // TODO(b/298051946): Tick marks cannot be resized in HCM |
| 66 | + // stylelint-disable function-url-quotes -- SVG data URI |
| 67 | + // SVG is optimized for data URI (https://codepen.io/tigt/post/optimizing-svgs-in-data-uris) |
| 68 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='CanvasText'%3E%3Ccircle cx='2' cy='2' r='1'/%3E%3C/svg%3E"); |
| 69 | + // stylelint-enable function-url-quotes |
| 70 | + } |
| 71 | + |
| 72 | + // active-track |
| 73 | + .track.tickmarks::after { |
| 74 | + // See inactive-track documentation for background-image. |
| 75 | + // stylelint-disable function-url-quotes -- SVG data URI |
| 76 | + // TODO(b/298051946): Tick marks cannot be resized in HCM |
| 77 | + background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='Canvas'%3E%3Ccircle cx='2' cy='2' r='1'/%3E%3C/svg%3E"); |
| 78 | + // stylelint-enable function-url-quotes |
| 79 | + } |
53 | 80 | }
|
0 commit comments