summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-05-22 01:41:45 +0300
committerLV-426 <lv-426@taproot.org.il>2015-05-22 02:41:21 +0300
commit117292a4ef03b68e1428ab2e57d19924189c3060 (patch)
tree65014415adf06322e4e7fa0d6d8e0215a2563d6d /res
parent3935305ce7a21436e712afb860f99b3bc1c70683 (diff)
[top-bar redesign] btn hover mixin's
Diffstat (limited to 'res')
-rw-r--r--res/client/css/modules/mixins.scss16
1 files changed, 15 insertions, 1 deletions
diff --git a/res/client/css/modules/mixins.scss b/res/client/css/modules/mixins.scss
index e449b836..8c4d1f85 100644
--- a/res/client/css/modules/mixins.scss
+++ b/res/client/css/modules/mixins.scss
@@ -12,4 +12,18 @@
@mixin rz-box-sizing-padding() {
box-sizing: padding-box;
-} \ No newline at end of file
+}
+
+@mixin btn-change-on-hover__opacity() {
+ &:hover {
+ opacity: 0.7;
+ cursor: pointer;
+ }
+}
+
+@mixin btn-change-on-hover__color($color) {
+ &:hover {
+ color: $color;
+ cursor: pointer;
+ }
+}