| 1 |
.multiselect_sortable_hide{ |
| 2 |
position : absolute; |
| 3 |
top : -9999999px; |
| 4 |
} |
| 5 |
.mulltiselect_sortable_content{ |
| 6 |
float : left; |
| 7 |
width : 100%; |
| 8 |
max-width : 500px; |
| 9 |
} |
| 10 |
.selection{ |
| 11 |
float : left; |
| 12 |
width : calc(50% - 20px); |
| 13 |
margin : 10px; |
| 14 |
} |
| 15 |
.selection .selection_title{ |
| 16 |
float : left; |
| 17 |
width : 100%; |
| 18 |
} |
| 19 |
.selection .selection_content{ |
| 20 |
float : left; |
| 21 |
width : 100%; |
| 22 |
height : 300px; |
| 23 |
border : 1px solid #eeeeee; |
| 24 |
border-radius : 5px; |
| 25 |
overflow-y : scroll; |
| 26 |
overflow-x : hidden; |
| 27 |
margin : 0; |
| 28 |
padding : 0; |
| 29 |
box-sizing : border-box; |
| 30 |
} |
| 31 |
.selection .selection_content li{ |
| 32 |
float : left; |
| 33 |
width : 100%; |
| 34 |
padding : 10px; |
| 35 |
border-bottom : 1px solid #eeeeee; |
| 36 |
list-style : none; |
| 37 |
box-sizing : border-box; |
| 38 |
} |
| 39 |
.selection .selection_content li.disabled{ |
| 40 |
opacity: 0.5; |
| 41 |
background: #f7f7f7; |
| 42 |
pointer-events: none; |
| 43 |
} |
| 44 |
.selectable{ |
| 45 |
float : left; |
| 46 |
width : calc(50% - 20px); |
| 47 |
margin : 10px; |
| 48 |
} |
| 49 |
.selectable .selectable_title{ |
| 50 |
float : left; |
| 51 |
width : 100%; |
| 52 |
} |
| 53 |
.selectable .selectable_content{ |
| 54 |
float : left; |
| 55 |
width : 100%; |
| 56 |
height : 300px; |
| 57 |
border : 1px solid #eeeeee; |
| 58 |
border-radius : 5px; |
| 59 |
overflow-y : scroll; |
| 60 |
overflow-x : hidden; |
| 61 |
margin : 0; |
| 62 |
padding : 0; |
| 63 |
box-sizing : border-box; |
| 64 |
} |
| 65 |
.selectable .selectable_content li{ |
| 66 |
float : left; |
| 67 |
width : 100%; |
| 68 |
padding : 10px; |
| 69 |
border-bottom : 1px solid #eeeeee; |
| 70 |
list-style : none; |
| 71 |
box-sizing : border-box; |
| 72 |
} |
| 73 |
.selectable .selectable_content li.disabled{ |
| 74 |
opacity: 0.5; |
| 75 |
background: #f7f7f7; |
| 76 |
pointer-events: none; |
| 77 |
} |