From 0727cab0dfd3d53e5e9c88bfbda6bc0e090d4f12 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 7 Dec 2017 10:27:33 +0100 Subject: Design video watch modals --- client/src/sass/_mixins.scss | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'client/src/sass/_mixins.scss') diff --git a/client/src/sass/_mixins.scss b/client/src/sass/_mixins.scss index ddc9c6766..14d9b5044 100644 --- a/client/src/sass/_mixins.scss +++ b/client/src/sass/_mixins.scss @@ -23,7 +23,8 @@ color: #fff; background-color: $orange-color; - &:hover { + &:hover, &:active, &:focus, &[disabled] { + color: #fff; background-color: $orange-hoover-color; } } @@ -32,7 +33,8 @@ background-color: $grey-color; color: #585858; - &:hover { + &:hover, &:active, &:focus, &[disabled] { + color: #585858; background-color: $grey-hoover-color; } } @@ -60,3 +62,13 @@ width: $size; height: $size; } + +@mixin icon ($size) { + display: inline-block; + background-repeat: no-repeat; + background-size: contain; + width: $size; + height: $size; + vertical-align: middle; + cursor: pointer; +} -- cgit v1.2.3