-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path_input.scss
More file actions
57 lines (46 loc) · 752 Bytes
/
_input.scss
File metadata and controls
57 lines (46 loc) · 752 Bytes
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
@use "../../variables" as *;
// Inputs for forms etc.
@mixin input {
margin: 0 0 23px;
display: block;
max-width: $size-settings-max-width;
&-label {
.cld-ui-title {
font-size: $size-setting-label;
font-weight: 700;
}
display: block;
margin-bottom: 8px;
&-link {
font-size: $size-panel-description;
margin-left: 8px;
color: $color-cld-blue;
&:hover {
color: $color-cld-dark-blue;
}
}
}
&-radio-label{
display: block;
&:not(:first-of-type) {
padding-top: 8px;
}
}
}
.cld-input {
@include input;
.prefixed {
width: 40%;
margin-left: 6px;
}
.suffixed {
width: 40%;
margin-right: 6px;
}
input::placeholder{
color: $color-disabled-grey;
}
.hidden{
visibility: hidden;
}
}