Skip to content

Commit 7c9659b

Browse files
authored
Rebuild Media Seek Slider Test Plan (#1208)
* Rebuild Seek Slider test plan * Generate .html source files with scripts automatically * Update reference name to trigger a new test plan version * Generate .html source files with scripts automatically
1 parent 8f8e3f8 commit 7c9659b

File tree

92 files changed

+11640
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+11640
-1
lines changed

build/tests/seek-slider/commands.json

Lines changed: 178 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/tests/seek-slider/index.html

Lines changed: 86 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
/* CSS Document */
2+
3+
.slider-seek .label {
4+
font-weight: bold;
5+
font-size: 125%;
6+
}
7+
8+
.slider-seek svg {
9+
forced-color-adjust: auto;
10+
}
11+
12+
.slider-seek text {
13+
font-weight: bold;
14+
fill: currentColor;
15+
font-family: sans-serif;
16+
}
17+
18+
.slider-seek {
19+
margin-top: 1em;
20+
padding: 6px;
21+
color: black;
22+
}
23+
24+
.slider-slider .value {
25+
position: relative;
26+
top: 20px;
27+
height: 1.5em;
28+
font-size: 80%;
29+
}
30+
31+
.slider-seek .temp-value {
32+
padding-left: 24px;
33+
font-size: 200%;
34+
}
35+
36+
.slider-seek .rail {
37+
stroke: currentColor;
38+
stroke-width: 2px;
39+
fill: currentColor;
40+
fill-opacity: 25%;
41+
}
42+
43+
.slider-seek .thumb {
44+
stroke-width: 0;
45+
fill: currentColor;
46+
}
47+
48+
.slider-seek .focus-ring {
49+
stroke: currentColor;
50+
stroke-opacity: 0;
51+
fill-opacity: 0;
52+
stroke-width: 3px;
53+
display: none;
54+
}
55+
56+
.slider-seek .slider-group {
57+
touch-action: pan-y;
58+
}
59+
60+
.slider-seek .slider-group .value {
61+
display: none;
62+
}
63+
64+
/* Focus and hover styling */
65+
66+
.slider-seek.focus [role="slider"] {
67+
color: #005a9c;
68+
}
69+
70+
.slider-seek [role="slider"]:focus {
71+
outline: none;
72+
}
73+
74+
.slider-seek [role="slider"]:focus .focus-ring {
75+
display: block;
76+
stroke-opacity: 1;
77+
}
78+
79+
.slider-seek [role="slider"]:focus .value {
80+
display: block;
81+
}

0 commit comments

Comments
 (0)