blob: a8aff7679084a93925627caed87b49ea85c860ea [file] [log] [blame]
Matteo Scandolobba1d782016-07-12 15:56:23 -07001@import '../../../../style/sass/lib/_variables.scss';
2@import '../../../../style/sass/bootstrap/bootstrap/_variables.scss';
3
4#xosDashboardManager {
5
6 .col-xs-10 + .col-xs-2.text-right {
7 padding-top: $line-height-computed;
8 }
9
10 /* DRAG AND DROP STYLING */
11 ul[dnd-list] {
12 min-height: 42px;
13 border: 1px dashed $brand-primary;
14 padding: $line-height-computed;;
15 margin-bottom: 0;
16
17 li {
18 list-style: none;
19 }
20
21 li:not(:last-child){
22 margin-bottom: $line-height-computed;;
23 }
24
25 li:hover{
26 cursor: pointer;
27 }
28
29 li.dndDraggingSource {
30 display: none;
31 }
32 }
33
34 ul[dnd-list] > li, .dashboard-container {
35 display: block;
36 border: 1px solid $brand-primary;
37 padding: $line-height-computed;
38 a {
39 float: right;
40 }
41 }
42}