Show spam aliases #

This commit is contained in:
andryyy
2017-02-21 22:27:11 +01:00
parent 76426b65b2
commit 0eb932b3ab
2737 changed files with 357639 additions and 22 deletions
@@ -0,0 +1,33 @@
// Slider
.@{prefix}-slider {
.border-radius(3px);
border: 1px solid @slider-border;
background: @slider-bg;
width: 100px;
height: 10px;
position: relative;
display: block;
}
.@{prefix}-slider.@{prefix}-vertical {
width: 10px;
height: 100px;
}
.@{prefix}-slider-handle {
.border-radius(3px);
border: 1px solid @slider-handle-border;
background: @slider-handle-bg;
display: block;
width: 13px;
height: 13px;
position: absolute;
top: 0; left: 0;
margin-left: -1px;
margin-top: -2px;
}
.@{prefix}-slider-handle:focus {
background: @slider-handle-bg-focus;
}