diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-13 17:01:09 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-13 17:01:09 +0200 |
commit | 5f8155482ab494e9b509f61baad7e3d5303176f1 (patch) | |
tree | ba68ce1440f33189a1ac16ebb793e35f75c3d73d /app/assets/stylesheets | |
parent | e70b84b1dc39ccc2e98bc2e93c8a10d067a9a271 (diff) |
Add overlay style to buttons, continue video after expanding it
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/components.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss index b135d27c9..1c363ec15 100644 --- a/app/assets/stylesheets/components.scss +++ b/app/assets/stylesheets/components.scss @@ -112,6 +112,18 @@ color: $color3; } } + + &.overlayed { + box-sizing: content-box; + background: rgba($color8, 0.6); + color: rgba($color5, 0.7); + border-radius: 4px; + padding: 2px; + + &:hover { + background: rgba($color8, 0.9); + } + } } .text-icon-button { |