Skip to content

Commit 2f9cc20

Browse files
AndrewJakubowiczcopybara-github
authored andcommitted
fix(slider): display tick marks when forced-colors is active
PiperOrigin-RevId: 561097978
1 parent 0467c48 commit 2f9cc20

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

slider/internal/forced-colors-styles.scss

+30-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
pressed-state-layer-color: $color,
3434
pressed-state-layer-opacity: 1,
3535
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,
3936
)
4037
);
4138
}
@@ -50,4 +47,34 @@
5047
:host(:not([disabled])) .track::before {
5148
border: 1px solid var(--_active-track-color);
5249
}
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+
}
5380
}

0 commit comments

Comments
 (0)