controls_styles.css
2.54 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css?family=Roboto:500');
*{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.gantt_control{
background: #ededed;
text-align: center;
}
.gantt_control input[type=button],
.gantt_control input[type=file],
.gantt_control input[type=checkbox],
.gantt_control button{
font: 500 14px Roboto;
border: 1px solid #D9D9D9;
border-radius: 2px;
background: #fff;
padding: 4px 12px;
margin: 0 5px;
color: rgba(0,0,0,0.7);
line-height: 20px;
}
.gantt_control input[type=button]:hover,
.gantt_control button:hover{
border: 1px solid #B3B3B3;
color: rgba(0,0,0,0.8);
cursor: pointer;
}
.gantt_control input[type=button]:active,
.gantt_control button:active{
background: #F7F7F7;
}
.gantt_control input[type=button]:focus,
.gantt_control button:focus{
outline: none !important;
}
.gantt_control{
padding: 10px 0 12px;
}
.gantt_control input[type=radio],
.gantt_control input[type=checkbox]{
display:none;
}
.gantt_control label{
padding: 0 6px;
color: rgba(0,0,0,0.54);
font: 14px Roboto;
line-height: 20px;
letter-spacing: 0.2px;
}
.material-icons{
position: relative;
top: 6px;
right: 2px;
color: rgba(0,0,0,0.54);
}
.material-icons.icon_color {
color: #0288D1;
}
.material-icons.md-inactive {
color: rgba(0, 0, 0, 0.38);
}
.checked_label{
color: rgba(0,0,0,0.7)!important;
}
.gantt_radio:checked,
.gantt_radio:not(:checked) {
position: absolute;
left: -9999px;
}
.gantt_radio:checked + label,
.gantt_radio:not(:checked) + label
{
position: relative;
padding-left: 28px;
cursor: pointer;
line-height: 20px;
display: inline-block;
color: #666;
}
.gantt_radio:checked + label:before,
.gantt_radio:not(:checked) + label:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 18px;
height: 18px;
border: 1px solid #ddd;
border-radius: 100%;
background: #fff;
}
.gantt_radio:checked + label:after,
.gantt_radio:not(:checked) + label:after {
content: '';
width: 12px;
height: 12px;
background: #8a9ada;
position: absolute;
top: 4px;
left: 4px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
.gantt_radio:not(:checked) + label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
.gantt_radio:checked + label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}