mirror of https://gitee.com/bigwinds/arangodb
scss
This commit is contained in:
parent
e488451142
commit
5749761a1e
|
@ -25,6 +25,13 @@
|
||||||
cursor: pointer;
|
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 {
|
%noselect {
|
||||||
-webkit-touch-callout: none;
|
-webkit-touch-callout: none;
|
||||||
-khtml-user-select: none;
|
-khtml-user-select: none;
|
||||||
|
|
|
@ -52,6 +52,18 @@
|
||||||
@extend %toolbarspan;
|
@extend %toolbarspan;
|
||||||
font-weight: 100;
|
font-weight: 100;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
|
||||||
|
&.clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
margin-left: 0;
|
||||||
|
opacity: .5;
|
||||||
|
top: 1px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@extend %animated;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
|
|
Loading…
Reference in New Issue