This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_forms.scss
108 lines (93 loc) · 1.96 KB
/
_forms.scss
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
select.form-control {
height: 38px;
}
/* Example Styles for React Tags*/
.ReactTags__tags {
position: relative;
}
/* Styles for the input */
.ReactTags__tagInput {
width : 200px;
border-radius: 2px;
display : inline-block;
}
.ReactTags__tagInput input,
.ReactTags__tagInput input:focus {
// height: 31px;
// margin: 0;
// font-size: 12px;
// width: 100%;
// border: 1px solid #eee;
display : block;
width : 100%;
padding : 0.375rem 0.75rem;
font-size : 1rem;
line-height : 1.5;
color : #55595c;
background-color: #fff;
background-image: none;
border : 1px solid #ccc;
border-radius : 0.25rem;
}
/* Styles for selected tags */
.ReactTags__selected {
float : left;
display : flex;
align-items: center;
margin-left: -5px;
}
.ReactTags__selected span.ReactTags__tag {
border : 1px solid #ddd;
background : #eee;
font-size : 12px;
display : inline-block;
padding : 5px;
margin : 0 5px;
// cursor: move;
border-radius: 2px;
}
.ReactTags__selected a.ReactTags__remove {
color : #aaa;
margin-left: 5px;
cursor : pointer;
}
/* Styles for suggestions */
.ReactTags__suggestions {
position: absolute;
z-index : 10;
}
.ReactTags__suggestions ul {
list-style-type: none;
box-shadow : 0.05em 0.01em 0.5em rgba(0,0,0,.2);
background : white;
width : 200px;
padding : 0;
}
.ReactTags__suggestions li {
border-bottom: 1px solid #ddd;
padding : 5px 10px;
margin : 0;
}
.ReactTags__suggestions li mark {
text-decoration: underline;
background : none;
font-weight : 600;
}
.ReactTags__suggestions ul li.active {
background: #b7cfe0;
cursor : pointer;
}
.ReactTags__suggestions mark {
padding: 0;
}
.form-section {
.form-section-heading {
font-size : 1.2rem;
font-weight: bold;
}
}
.control-label {
strong {
font-weight: normal;
}
}