Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
iCheck
3
***/
4
 
5
.icheck-list {
6
	> label {
7
		display: block;
8
		margin-bottom: 8px;
9
 
10
		&:last-child {
11
			margin-bottom: 0;
12
		}
13
	}
14
}
15
 
16
.icheck-inline {
17
 
18
	.form-horizontal & {
19
		margin-top: 8px;
20
	}
21
 
22
	> label {
23
		display: inline-block;
24
		margin-left: 15px;
25
 
26
		&:first-child {
27
			margin-left: 0;
28
		}
29
	}
30
}
31
 
32
div[class*='icheckbox_'],
33
div[class*='iradio_'] {
34
	margin-right: 5px;
35
	top: -1px !important;
36
}
37
 
38
.icheck-colors {
39
	padding: 0;
40
	margin: 0;
41
	list-style: none;
42
 
43
	> li {
44
		padding: 0;
45
		margin: 4px;
46
		float: left;
47
		display: inline-block;
48
		height: 20px;
49
		width: 20px;
50
		background:#000000;
51
 
52
		&:first-child {
53
			margin-left: 0;
54
		}
55
 
56
		@include opacity(0.6);
57
 
58
		&:hover {
59
			@include opacity(1);
60
			cursor: pointer;
61
		}
62
 
63
		&.active {
64
			height:26px;
65
			margin-top:0;
66
			@include opacity(0.6);
67
		}
68
 
69
		&.red{background:#d54e21;}
70
		&.green{background:#78a300;}
71
		&.blue{background:#0e76a8;}
72
		&.aero{background:#9cc2cb;}
73
		&.grey{background:#73716e;}
74
		&.orange{background:#f70;}
75
		&.yellow{background:#fc0;}
76
		&.pink{background:#ff66b5;}
77
		&.purple{background:#6a5a8c;}
78
	}
79
}