@ilo-org/styles 1.11.0 → 1.11.1
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/css/components/video.css +1 -1
- package/css/index.css +1 -1
- package/css/index.css.map +1 -1
- package/css/monorepo.css +1 -1
- package/css/monorepo.css.map +1 -1
- package/package.json +1 -1
- package/scss/components/_video.scss +11 -2
package/package.json
CHANGED
|
@@ -86,8 +86,9 @@
|
|
|
86
86
|
padding-bottom: 56.25%;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
// Initial state
|
|
90
|
-
&--element:not(.vjs-has-started)
|
|
89
|
+
// Initial and ended state
|
|
90
|
+
&--element:not(.vjs-has-started),
|
|
91
|
+
&--element.vjs-ended {
|
|
91
92
|
.vjs-poster {
|
|
92
93
|
background-size: cover;
|
|
93
94
|
object-fit: cover;
|
|
@@ -121,6 +122,10 @@
|
|
|
121
122
|
|
|
122
123
|
.vjs-play-control {
|
|
123
124
|
@include videobutton("triangle_right");
|
|
125
|
+
|
|
126
|
+
&.vjs-paused {
|
|
127
|
+
@include videobutton("triangle_right");
|
|
128
|
+
}
|
|
124
129
|
}
|
|
125
130
|
|
|
126
131
|
.vjs-duration {
|
|
@@ -142,6 +147,10 @@
|
|
|
142
147
|
gap: px-to-rem(4px);
|
|
143
148
|
.vjs-play-control {
|
|
144
149
|
@include videobutton("triangle_right", "big");
|
|
150
|
+
|
|
151
|
+
&.vjs-paused {
|
|
152
|
+
@include videobutton("triangle_right", "big");
|
|
153
|
+
}
|
|
145
154
|
}
|
|
146
155
|
}
|
|
147
156
|
}
|