scrollytelling-video_controls 0.1.0 → 1.0.0
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9278ad64309be66146f6efbb3553df2725fb2c3
|
|
4
|
+
data.tar.gz: f480fc77e82fee4e95298818b40c2e102345c174
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86b3ae30fe101b7d0fddb2ef7479fa59b8d4a223b7e7a632c88cb40a6c5a89d2ace502a70970e2db9cb18d35ac34bbfed8f0efef100a97e2778958d7fe3c1155
|
|
7
|
+
data.tar.gz: eb3375228a60d561771b226f04b21915b07bd4b9b5bb36ffe49cf7cf1a58dfd7caef1c3b5dfb4b6702eb531a185072198550542f6c8dabb8aa8736c7b867dde1
|
data/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Add it to the asset pipeline:
|
|
|
29
29
|
$scrollytelling-video_controls-background-color: #b2cecf !default;
|
|
30
30
|
|
|
31
31
|
# app/assets/stylesheets/pageflow/application.css.scss
|
|
32
|
-
|
|
32
|
+
@import "scrollytelling/video_controls";
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
Note that you're adding it to the application stylesheet and not one of your theme stylesheets. The Pageflow video controls are included in the application stylesheet, which comes after your themes.
|
|
@@ -12,6 +12,11 @@ $scrollytelling-video_controls-background-color: #b2cecf !default;
|
|
|
12
12
|
border: none;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
.js .vjs-progress-control .vjs-progress-holder,
|
|
16
|
+
.js .vjs-progress-control.vjs-fade-out .vjs-progress-holder {
|
|
17
|
+
border-radius: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
15
20
|
.js .vjs-progress-control .vjs-play-progress,
|
|
16
21
|
.js .vjs-progress-control.vjs-fade-out .vjs-play-progress {
|
|
17
22
|
border-radius: 0 ;
|
|
@@ -19,6 +24,7 @@ $scrollytelling-video_controls-background-color: #b2cecf !default;
|
|
|
19
24
|
}
|
|
20
25
|
|
|
21
26
|
.js .vjs-play-control {
|
|
27
|
+
margin-left: 20px;
|
|
22
28
|
background-image: image-url('scrollytelling/video_controls.png');
|
|
23
29
|
}
|
|
24
30
|
|
|
@@ -27,7 +33,7 @@ $scrollytelling-video_controls-background-color: #b2cecf !default;
|
|
|
27
33
|
}
|
|
28
34
|
|
|
29
35
|
.js .vjs-slider-handle {
|
|
30
|
-
|
|
36
|
+
display: none;
|
|
31
37
|
}
|
|
32
38
|
|
|
33
39
|
.controls .add_info_box:before {
|