Blame view

framework/scss/SelectionGroup.scss 624 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  .SelectionGroup {
  	padding: 0px;
  	clear : both;
  
  	li {
  		list-style-type: none;
  		float : left;
  		width: 100%;
  		clear : both;
  	}
  	li input.selector {
  		width: 20px;
  		float : left;
  	}
  	li > div.selectiongroup_item {
  		display: none;
  		font-size: 1em;
  	}
  	li input, .right .SelectionGroup li label {
  		display: block;
  	}	
  	li.selected > div.selectiongroup_item {
  		margin-left: 30px;
  		display: block;
  		margin-bottom: 1em;
  	}	
  	li.selected label.selector {
  		font-weight: bold;
  	}
  }
  
  .mainblock.allassets ul {
     padding: 0 0 0 10px;
     height:100px;
     overflow-y:scroll;
  }	
  .mainblock.allassets ul li {
     width: 150px;
  }