Project

General

Profile

1
.uk-form-label {
2
  font-size: 16px;
3
  font-family: "Roboto", sans-serif;
4
  color: currentColor;
5
}
6

    
7
.uk-form-hint {
8
  font-family: "Roboto", sans-serif;
9
  color: currentColor;
10
  font-size: 14px;
11
}
12

    
13
.input-box .uk-input,
14
.input-box .uk-textarea,
15
.input-borderless .uk-input,
16
.input-borderless .uk-textarea {
17
  height: auto;
18
  padding: 0;
19
  background-color: transparent !important;
20
  color: currentColor;
21
  line-height: 31px;
22
}
23

    
24
.input-box .uk-input,
25
.input-box .uk-textarea {
26
  max-width: 100%;
27
  overflow: hidden;
28
  text-overflow: ellipsis;
29
  white-space: nowrap;
30
}
31
.input-box .uk-textarea,
32
.input-borderless .uk-textarea {
33
  line-height: 20px;
34
}
35

    
36
.input-box:not([class*='uk-h']) .uk-input,
37
.input-box:not([class*='uk-h']) .uk-textarea,
38
.input-borderless:not([class*='uk-h']) .uk-input,
39
.input-borderless:not([class*='uk-h']) .uk-textarea {
40
  font-size: 14px;
41
}
42

    
43
.input-box .uk-input:not(.uk-form-danger),
44
.input-box .uk-textarea:not(.uk-form-danger),
45
.input-borderless .uk-input:not(.uk-form-danger),
46
.input-borderless .uk-textarea:not(.uk-form-danger){
47
  border: none !important;
48
}
49

    
50
.input-box .uk-input::placeholder,
51
.input-box .uk-textarea::placeholder,
52
.input-box::placeholder,
53
.placeholder {
54
  color: #7A7A7A !important;
55
  font-size: 14px;
56
}
57

    
58
.input-box .mat-chip-list-wrapper,
59
.input-borderless .mat-chip-list-wrapper {
60
  max-height: 150px;
61
  overflow-y: auto;
62
  overflow-x: hidden;
63
}
64

    
65
.input-box *:focus,
66
.input-borderless *:focus {
67
  outline: none;
68
}
69

    
70
  /* Input Box */
71
.input-box {
72
  background-color: #FAFAFA !important;
73
  border: 1px solid transparent;
74
  padding: 12px 16px;
75
  border-radius: 4px;
76
  color: currentColor;
77
  height: auto;
78
  line-height: 17px;
79
  transition-property: height;
80
  transition-duration: 0.5s;
81
}
82

    
83
.input-box .uk-textarea {
84
  padding-right: 16px;
85
}
86

    
87
.input-box .uk-input:focus,
88
.input-box .uk-textarea:focus,
89
.input-box:focus{
90
  color: currentColor !important;
91
}
92

    
93
.input-box:not(.uk-form-danger){
94
  border: 1px solid #D1D1D1 !important;
95
}
96

    
97
.input-box .mat-select {
98
  font-family: "Open Sans", sans-serif;
99
  font-size: 16px;
100
}
101

    
102
.input-box .mat-select.mat-select-invalid .mat-select-arrow {
103
  color: #1A1A1A !important;
104
}
105

    
106
.input-box .mat-select-value {
107
  color: currentColor;
108
}
109

    
110
.input-box .mat-form-field-infix {
111
  border: none !important;
112
  line-height: 30px;
113
  padding: 0 !important;
114
}
115

    
116
.input-box .mat-form-field-appearance-legacy .mat-form-field-wrapper {
117
  padding: 0 !important;
118
}
119

    
120
.input-box .mat-form-field-appearance-legacy .mat-form-field-underline {
121
  display: none;
122
}
123

    
124
.input-box .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
125
  display: none;
126
}
127

    
128
.input-box .uk-input:disabled,
129
.input-box .uk-textarea:disabled,
130
.input-box .mat-select-disabled .mat-select-value,
131
.input-box .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
132
  color: currentColor !important;
133
}
134

    
135
.input-box .mat-chip.mat-standard-chip, .mat-chip.mat-standard-chip:hover {
136
  color: #1a1a1a;
137
  border: 1px solid rgba(26, 26, 26, 0.2);
138
  background: white;
139
}
140

    
141
.input-box .mat-chip.mat-standard-chip::after {
142
  background: transparent;
143
}
144

    
145
.input-box .mat-chip.mat-standard-chip .mat-chip-remove {
146
  color: rgba(26, 26, 26, 0.5);
147
  width: 20px;
148
  height: 20px;
149
}
150

    
151
.input-box .tools {
152
  max-height: 0;
153
  transition: max-height 0.3s linear;
154
  overflow: hidden;
155
  padding-right: 16px;
156
}
157

    
158
.input-box .tools.focused {
159
  max-height: 100px;
160
}
161

    
162
/* Input borderless*/
163
.input-borderless {
164
  background-color: transparent !important;
165
  border: none;
166
  padding: 5px;
167
  color: currentColor;
168
  height: auto;
169
  line-height: 17px;
170
}
171

    
172
.input-borderless .uk-input:focus,
173
.input-borderless .uk-textarea:focus,
174
.input-borderless:focus{
175
  color: currentColor !important;
176
}
177

    
178
.input-borderless .uk-input:not(.uk-form-danger),
179
.input-borderless .uk-textarea:not(.uk-form-danger),
180
.input-borderless:not(.uk-form-danger){
181
  border: none !important;
182
}
183

    
184
.input-box .placeholder,
185
.input-borderless .placeholder {
186
  position: absolute;
187
  top: 6px;
188
  left: 6px;
189
  cursor: text;
190
}
191

    
192
.input-borderless .mat-select {
193
  font-family: "Open Sans", sans-serif;
194
  font-size: 16px;
195
}
196

    
197
.input-borderless .mat-select-value {
198
  color: currentColor;
199
}
200

    
201
.input-borderless .mat-form-field-infix {
202
  border: none !important;
203
  line-height: 30px;
204
  padding: 0 !important;
205
}
206

    
207
.input-borderless .mat-form-field-appearance-legacy .mat-form-field-wrapper {
208
  padding: 0 !important;
209
}
210

    
211
.input-borderless .mat-form-field-appearance-legacy .mat-form-field-underline {
212
  display: none;
213
}
214

    
215
.input-box .mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
216
  display: none;
217
}
218

    
219
.input-borderless .uk-input:disabled,
220
.input-borderless .uk-textarea:disabled,
221
.input-borderless .mat-select-disabled .mat-select-value,
222
.input-borderless .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
223
  color: currentColor !important;
224
}
225

    
226
.input-borderless .mat-chip.mat-standard-chip, .mat-chip.mat-standard-chip:hover {
227
  color: #1a1a1a;
228
  border: 1px solid rgba(26, 26, 26, 0.5);
229
  background: white;
230
}
231

    
232
.input-borderless .mat-chip.mat-standard-chip::after {
233
  background: transparent;
234
}
235

    
236
.input-borderless .mat-chip.mat-standard-chip .mat-chip-remove {
237
  color: #1a1a1a;
238
  width: 20px;
239
  height: 20px;
240
}
(6-6/20)