about summary refs log tree commit diff
path: root/app/javascript/styles/components.scss
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-10-08 02:33:08 +0200
committerGitHub <noreply@github.com>2017-10-08 02:33:08 +0200
commit292f3cd7e0db0d71cb3202e65185f06fd04c475f (patch)
tree89920ec789787ee887e5e393446c78c7065a0769 /app/javascript/styles/components.scss
parenta3d4f1bd9361c5e7fbf18e7d905cf8f44cf0224d (diff)
Show buffering in video player (#5261)
Diffstat (limited to 'app/javascript/styles/components.scss')
-rw-r--r--app/javascript/styles/components.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss
index 0e7022e9b..d578e9930 100644
--- a/app/javascript/styles/components.scss
+++ b/app/javascript/styles/components.scss
@@ -4028,7 +4028,8 @@ button.icon-button.active i.fa-retweet {
       top: 10px;
     }
 
-    &__progress {
+    &__progress,
+    &__buffer {
       display: block;
       position: absolute;
       height: 4px;
@@ -4036,6 +4037,10 @@ button.icon-button.active i.fa-retweet {
       background: $ui-highlight-color;
     }
 
+    &__buffer {
+      background: rgba($white, 0.2);
+    }
+
     &__handle {
       position: absolute;
       z-index: 3;