1
0
Fork 0
This commit is contained in:
hkernbach 2016-05-02 14:05:55 +02:00
parent e488451142
commit 5749761a1e
2 changed files with 19 additions and 0 deletions

View File

@ -25,6 +25,13 @@
cursor: pointer;
}
%animated {
-moz-transition: all .2s ease-in;
-o-transition: all .2s ease-in;
-webkit-transition: all .2s ease-in;
transition: all .2s ease-in;
}
%noselect {
-webkit-touch-callout: none;
-khtml-user-select: none;

View File

@ -52,6 +52,18 @@
@extend %toolbarspan;
font-weight: 100;
margin-left: 10px;
&.clickable {
cursor: pointer;
margin-left: 0;
opacity: .5;
top: 1px;
&:hover {
@extend %animated;
opacity: 1;
}
}
}
i {