//
// Simple List
// --------------------------------------------------
// Usage:
//
//
// With icons:
//
//
// With checkboxes:
//
.control-simplelist {
font-size: 13px;
ul { padding-left: 15px; }
&.with-icons, &.with-checkboxes {
ul {
list-style-type: none;
padding-left: 0;
}
}
&.with-checkboxes {}
&.is-sortable {
li.placeholder {
position: relative;
&:before {
top: -10px;
position: absolute;
.triangle(right, 5px, 9px, @color-sortable-caret);
}
}
li.dragged {
position: absolute;
.opacity(.5);
z-index: 2000;
color: @color-sortable-active;
width: auto !important; // Prevent browser scrollbars
}
}
&.is-scrollable {
height: 200px;
}
}