1
0
Fork 0
arangodb/js/apps/system/aardvark/frontend/scss/_abstracts.scss

54 lines
671 B
SCSS

%pull-left {
float: left;
}
%pull-right {
float: right;
}
%clickable {
cursor: pointer;
}
%negative {
background-color: $c_negative;
&:hover {
background-color: $c_negative_hover;
}
}
%icon-negative {
color: $c_negative;
&:hover {
color: $c_negative_hover;
}
}
%positive {
background-color: $c_positive;
&:hover {
background-color: $c_positive_hover;
}
}
%icon-positive {
color: $c_positive;
&:hover {
color: $c_positive_hover;
}
}
%neutral {
background-color: $c_neutral;
&:hover {
background-color: $c_neutral_hover;
}
}
%icon-neutral {
color: $c_neutral;
&:hover {
color: $c_neutral_hover;
}
}