blob: adf3967e6b6ce1d1f7c5cb96b4cb7dd8e41d0dd2 (
plain)
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
|
@charset 'UTF-8';
.form-control {
@include border-radius($border-rad);
&:focus {
@include box-shadow(none);
}
&.no-padding {
line-height: 32px;
padding: 0;
}
&.no-resize {
resize: none;
}
&[disabled],
[readonly] {
@include alpha-property(background, $white, .1);
color: inherit;
cursor: auto;
}
}
fieldset {
&[disabled] {
.form-control {
@include alpha-property(background, $white, .1);
color: inherit;
cursor: auto;
}
}
}
.admin-textarea {
resize: none;
}
input {
&[type='radio'],
&[type='checkbox'] {
font-size: 14px;
margin-top: 3px;
}
}
|