diff options
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/application.scss | 2 | ||||
-rw-r--r-- | client/src/sass/primeng-custom.scss | 644 |
2 files changed, 553 insertions, 93 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 1c0d30854..25db91670 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -21,7 +21,7 @@ $assets-path: '../../assets/'; | |||
21 | 21 | ||
22 | body { | 22 | body { |
23 | /*** theme ***/ | 23 | /*** theme ***/ |
24 | // now beware node-sass requires interpolation | 24 | // now beware sass requires interpolation |
25 | // for css custom properties #{$var} | 25 | // for css custom properties #{$var} |
26 | --mainColor: #{$main-color}; | 26 | --mainColor: #{$main-color}; |
27 | --mainColorLighter: #{$main-color-lighter}; | 27 | --mainColorLighter: #{$main-color-lighter}; |
diff --git a/client/src/sass/primeng-custom.scss b/client/src/sass/primeng-custom.scss index 2ffa2d3ff..a48f797fc 100644 --- a/client/src/sass/primeng-custom.scss +++ b/client/src/sass/primeng-custom.scss | |||
@@ -2,7 +2,487 @@ | |||
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | @import '~primeng/resources/primeng.css'; | 4 | @import '~primeng/resources/primeng.css'; |
5 | @import '~primeng/resources/themes/nova-light/theme.css'; | 5 | |
6 | // Taken from old nova light theme | ||
7 | |||
8 | body .p-disabled { | ||
9 | opacity: 0.5; | ||
10 | } | ||
11 | |||
12 | // Checkbox | ||
13 | body .p-checkbox { | ||
14 | display: inline-block; | ||
15 | vertical-align: middle; | ||
16 | margin: 0; | ||
17 | width: 20px; | ||
18 | height: 20px; | ||
19 | } | ||
20 | body .p-checkbox .p-checkbox-box { | ||
21 | border: 1px solid #a6a6a6; | ||
22 | background-color: #ffffff; | ||
23 | width: 20px; | ||
24 | height: 20px; | ||
25 | text-align: center; | ||
26 | border-radius: 3px; | ||
27 | transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s; | ||
28 | } | ||
29 | body .p-checkbox .p-checkbox-box:not(.p-disabled):hover { | ||
30 | border-color: #212121; | ||
31 | } | ||
32 | body .p-checkbox .p-checkbox-box .p-checkbox-icon { | ||
33 | overflow: hidden; | ||
34 | position: relative; | ||
35 | font-size: 18px; | ||
36 | } | ||
37 | |||
38 | // Paginator | ||
39 | body .p-paginator { | ||
40 | background-color: #f4f4f4; | ||
41 | border: 1px solid #c8c8c8; | ||
42 | padding: 0; | ||
43 | } | ||
44 | body .p-paginator .p-paginator-first, | ||
45 | body .p-paginator .p-paginator-prev, | ||
46 | body .p-paginator .p-paginator-next, | ||
47 | body .p-paginator .p-paginator-last { | ||
48 | color: #848484; | ||
49 | height: 2.286em; | ||
50 | min-width: 2.286em; | ||
51 | border: 0 none; | ||
52 | line-height: 2.286em; | ||
53 | padding: 0; | ||
54 | margin: 0; | ||
55 | vertical-align: top; | ||
56 | transition: box-shadow 0.2s; | ||
57 | border-radius: 0; | ||
58 | } | ||
59 | body .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, | ||
60 | body .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, | ||
61 | body .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, | ||
62 | body .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover { | ||
63 | background-color: #e0e0e0; | ||
64 | color: #333333; | ||
65 | } | ||
66 | body .p-paginator .p-paginator-first:focus, | ||
67 | body .p-paginator .p-paginator-prev:focus, | ||
68 | body .p-paginator .p-paginator-next:focus, | ||
69 | body .p-paginator .p-paginator-last:focus { | ||
70 | outline: 0 none; | ||
71 | outline-offset: 0; | ||
72 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
73 | } | ||
74 | body .p-paginator .p-paginator-current { | ||
75 | color: #333333; | ||
76 | height: 2.286em; | ||
77 | min-width: 2.286em; | ||
78 | line-height: 2.286em; | ||
79 | } | ||
80 | body .p-paginator .p-dropdown { | ||
81 | border: 0 none; | ||
82 | } | ||
83 | body .p-paginator .p-dropdown .p-dropdown-trigger, body .p-paginator .p-dropdown .p-dropdown-label { | ||
84 | color: #848484; | ||
85 | } | ||
86 | body .p-paginator .p-dropdown:hover .p-dropdown-trigger, body .p-paginator .p-dropdown:hover .p-dropdown-label { | ||
87 | color: #333333; | ||
88 | } | ||
89 | body .p-paginator .p-paginator-first:before { | ||
90 | position: relative; | ||
91 | top: 1px; | ||
92 | } | ||
93 | body .p-paginator .p-paginator-prev:before { | ||
94 | position: relative; | ||
95 | top: 1px; | ||
96 | } | ||
97 | body .p-paginator .p-paginator-next:before { | ||
98 | position: relative; | ||
99 | top: 1px; | ||
100 | } | ||
101 | body .p-paginator .p-paginator-last:before { | ||
102 | position: relative; | ||
103 | top: 1px; | ||
104 | } | ||
105 | body .p-paginator .p-paginator-pages { | ||
106 | vertical-align: top; | ||
107 | display: inline-block; | ||
108 | padding: 0; | ||
109 | } | ||
110 | body .p-paginator .p-paginator-pages .p-paginator-page { | ||
111 | color: #848484; | ||
112 | height: 2.286em; | ||
113 | min-width: 2.286em; | ||
114 | border: 0 none; | ||
115 | line-height: 2.286em; | ||
116 | padding: 0; | ||
117 | margin: 0; | ||
118 | vertical-align: top; | ||
119 | transition: box-shadow 0.2s; | ||
120 | border-radius: 0; | ||
121 | } | ||
122 | body .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover { | ||
123 | background-color: #e0e0e0; | ||
124 | color: #333333; | ||
125 | } | ||
126 | body .p-paginator .p-paginator-pages .p-paginator-page:focus { | ||
127 | outline: 0 none; | ||
128 | outline-offset: 0; | ||
129 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
130 | } | ||
131 | body .p-paginator .p-dropdown { | ||
132 | margin-left: 0.5em; | ||
133 | height: 2.286em; | ||
134 | min-width: auto; | ||
135 | } | ||
136 | |||
137 | // Dropdown | ||
138 | |||
139 | body .p-dropdown { | ||
140 | background: #ffffff; | ||
141 | border: 1px solid #a6a6a6; | ||
142 | transition: border-color 0.2s, box-shadow 0.2s; | ||
143 | } | ||
144 | body .p-dropdown:not(.p-disabled):hover { | ||
145 | border-color: #212121; | ||
146 | } | ||
147 | body .p-dropdown:not(.p-disabled).p-focus { | ||
148 | outline: 0 none; | ||
149 | outline-offset: 0; | ||
150 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
151 | border-color: pvar(--mainColor); | ||
152 | } | ||
153 | body .p-dropdown .p-dropdown-label { | ||
154 | padding-right: 2em; | ||
155 | } | ||
156 | body .p-dropdown .p-dropdown-trigger { | ||
157 | background-color: #ffffff; | ||
158 | width: 2em; | ||
159 | line-height: 2em; | ||
160 | text-align: center; | ||
161 | padding: 0; | ||
162 | color: #848484; | ||
163 | } | ||
164 | body .p-dropdown .p-dropdown-clear-icon { | ||
165 | color: #848484; | ||
166 | } | ||
167 | body .p-dropdown.p-dropdown-clearable .p-dropdown-label { | ||
168 | padding-right: 4em; | ||
169 | } | ||
170 | body .p-dropdown-panel { | ||
171 | padding: 0; | ||
172 | border: 1px solid #c8c8c8; | ||
173 | background-color: #ffffff; | ||
174 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); | ||
175 | } | ||
176 | body .p-dropdown-panel .p-dropdown-filter-container { | ||
177 | padding: 0.429em 0.857em 0.429em 0.857em; | ||
178 | border-bottom: 1px solid #eaeaea; | ||
179 | color: #333333; | ||
180 | background-color: #ffffff; | ||
181 | margin: 0; | ||
182 | } | ||
183 | body .p-dropdown-panel .p-dropdown-filter-container .p-dropdown-filter { | ||
184 | width: 100%; | ||
185 | padding-right: 2em; | ||
186 | } | ||
187 | body .p-dropdown-panel .p-dropdown-filter-container .p-dropdown-filter-icon { | ||
188 | top: 50%; | ||
189 | margin-top: -0.5em; | ||
190 | right: 1.357em; | ||
191 | color: pvar(--mainColor); | ||
192 | } | ||
193 | body .p-dropdown-panel .p-dropdown-items { | ||
194 | padding: 0; | ||
195 | } | ||
196 | body .p-dropdown-panel .p-dropdown-items .p-dropdown-item, body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group { | ||
197 | margin: 0; | ||
198 | padding: 0.429em 0.857em; | ||
199 | border: 0 none; | ||
200 | color: #333333; | ||
201 | background-color: transparent; | ||
202 | -moz-border-radius: 0; | ||
203 | -webkit-border-radius: 0; | ||
204 | border-radius: 0; | ||
205 | } | ||
206 | body .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight, | ||
207 | body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group.p-highlight { | ||
208 | color: #ffffff; | ||
209 | background-color: pvar(--mainColor); | ||
210 | } | ||
211 | body .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled):hover, | ||
212 | body .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group:not(.p-highlight):not(.p-disabled):hover { | ||
213 | color: #333333; | ||
214 | background-color: #eaeaea; | ||
215 | } | ||
216 | body p-dropdown.ng-dirty.ng-invalid > .p-dropdown { | ||
217 | border: 1px solid #a80000; | ||
218 | } | ||
219 | |||
220 | // p-toast | ||
221 | body .p-toast .p-toast-message { | ||
222 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); | ||
223 | margin: 0 0 1em 0; | ||
224 | } | ||
225 | |||
226 | // p-calendar | ||
227 | body .p-datepicker { | ||
228 | padding: 0.857em; | ||
229 | min-width: 20em; | ||
230 | background-color: #ffffff; | ||
231 | color: #333333; | ||
232 | border: 1px solid #a6a6a6; | ||
233 | } | ||
234 | |||
235 | body .p-datepicker:not(.p-datepicker-inline) { | ||
236 | border: 1px solid #c8c8c8; | ||
237 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); | ||
238 | } | ||
239 | body .p-datepicker:not(.p-disabled) .p-datepicker-header .p-datepicker-prev:focus, | ||
240 | body .p-datepicker:not(.p-disabled) .p-datepicker-header .p-datepicker-next:focus { | ||
241 | outline: 0 none; | ||
242 | outline-offset: 0; | ||
243 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
244 | } | ||
245 | body .p-datepicker:not(.p-disabled) table td a:not(.p-highlight):not(.p-highlight):hover { | ||
246 | background-color: #eaeaea; | ||
247 | } | ||
248 | body .p-datepicker:not(.p-disabled) .p-monthpicker a.p-monthpicker-month:not(.p-highlight):hover { | ||
249 | background-color: #eaeaea; | ||
250 | } | ||
251 | body .p-datepicker .p-datepicker-header { | ||
252 | padding: 0.429em 0.857em 0.429em 0.857em; | ||
253 | background-color: #ffffff; | ||
254 | color: #333333; | ||
255 | -moz-border-radius: 0; | ||
256 | -webkit-border-radius: 0; | ||
257 | border-radius: 0; | ||
258 | } | ||
259 | body .p-datepicker .p-datepicker-header .p-datepicker-prev, | ||
260 | body .p-datepicker .p-datepicker-header .p-datepicker-next { | ||
261 | cursor: pointer; | ||
262 | top: 0; | ||
263 | color: #a6a6a6; | ||
264 | transition: color 0.2s, box-shadow 0.2s; | ||
265 | } | ||
266 | body .p-datepicker .p-datepicker-header .p-datepicker-title { | ||
267 | margin: 0; | ||
268 | padding: 0; | ||
269 | line-height: 1; | ||
270 | } | ||
271 | body .p-datepicker .p-datepicker-header .p-datepicker-title select { | ||
272 | margin-top: -0.35em; | ||
273 | margin-bottom: 0; | ||
274 | transition: color 0.2s, box-shadow 0.2s; | ||
275 | } | ||
276 | body .p-datepicker .p-datepicker-header .p-datepicker-title select:focus { | ||
277 | outline: 0 none; | ||
278 | outline-offset: 0; | ||
279 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
280 | } | ||
281 | body .p-datepicker table { | ||
282 | font-size: 14px; | ||
283 | margin: 0.857em 0 0 0; | ||
284 | } | ||
285 | body .p-datepicker table th { | ||
286 | padding: 0.5em; | ||
287 | } | ||
288 | body .p-datepicker table th.p-datepicker-weekheader { | ||
289 | border-right: 1px solid #a6a6a6; | ||
290 | } | ||
291 | body .p-datepicker table td { | ||
292 | padding: 0.5em; | ||
293 | } | ||
294 | body .p-datepicker table td > a, | ||
295 | body .p-datepicker table td > span { | ||
296 | display: block; | ||
297 | text-align: center; | ||
298 | color: #333333; | ||
299 | padding: 0.5em; | ||
300 | transition: box-shadow 0.2s; | ||
301 | border-radius: 3px; | ||
302 | } | ||
303 | body .p-datepicker table td > a.p-highlight, | ||
304 | body .p-datepicker table td > span.p-highlight { | ||
305 | color: #ffffff; | ||
306 | background-color: pvar(--mainColor); | ||
307 | } | ||
308 | body .p-datepicker table td > a { | ||
309 | cursor: pointer; | ||
310 | } | ||
311 | body .p-datepicker table td > a:focus { | ||
312 | outline: 0 none; | ||
313 | outline-offset: 0; | ||
314 | box-shadow: 0 0 0 0.2em pvar(--mainColorLightest); | ||
315 | } | ||
316 | body .p-datepicker table td.p-datepicker-today > a, | ||
317 | body .p-datepicker table td.p-datepicker-today > span { | ||
318 | background-color: #d0d0d0; | ||
319 | color: #333333; | ||
320 | } | ||
321 | body .p-datepicker table td.p-datepicker-today > a.p-highlight, | ||
322 | body .p-datepicker table td.p-datepicker-today > span.p-highlight { | ||
323 | color: #ffffff; | ||
324 | background-color: pvar(--mainColor); | ||
325 | } | ||
326 | body .p-datepicker table td.p-datepicker-weeknumber { | ||
327 | border-right: 1px solid #a6a6a6; | ||
328 | } | ||
329 | body .p-datepicker .p-datepicker-buttonbar { | ||
330 | border-top: 1px solid #d8dae2; | ||
331 | } | ||
332 | body .p-datepicker .p-timepicker { | ||
333 | border: 0 none; | ||
334 | border-top: 1px solid #d8dae2; | ||
335 | padding: 0.857em; | ||
336 | } | ||
337 | body .p-datepicker .p-timepicker a { | ||
338 | color: #333333; | ||
339 | font-size: 1.286em; | ||
340 | } | ||
341 | body .p-datepicker .p-timepicker a:hover { | ||
342 | color: pvar(--mainColor); | ||
343 | } | ||
344 | body .p-datepicker .p-timepicker span { | ||
345 | font-size: 1.286em; | ||
346 | } | ||
347 | body .p-datepicker .p-monthpicker .p-monthpicker-month { | ||
348 | color: #333333; | ||
349 | } | ||
350 | body .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight { | ||
351 | color: #ffffff; | ||
352 | background-color: pvar(--mainColor); | ||
353 | } | ||
354 | body .p-datepicker.p-datepicker-timeonly { | ||
355 | padding: 0; | ||
356 | } | ||
357 | body .p-datepicker.p-datepicker-timeonly .p-timepicker { | ||
358 | border-top: 0 none; | ||
359 | } | ||
360 | body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group { | ||
361 | border-right: 1px solid #d8dae2; | ||
362 | padding-right: 0.857em; | ||
363 | padding-left: 0.857em; | ||
364 | padding-top: 0; | ||
365 | padding-bottom: 0; | ||
366 | } | ||
367 | body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child { | ||
368 | padding-left: 0; | ||
369 | } | ||
370 | body .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child { | ||
371 | padding-right: 0; | ||
372 | border-right: 0 none; | ||
373 | } | ||
374 | body .p-calendar.p-calendar-w-btn .p-inputtext { | ||
375 | border-top-right-radius: 0; | ||
376 | border-bottom-right-radius: 0; | ||
377 | border-right: 0 none; | ||
378 | } | ||
379 | body .p-calendar.p-calendar-w-btn .p-inputtext:enabled:hover:not(.p-error), | ||
380 | body .p-calendar.p-calendar-w-btn .p-inputtext:enabled:focus:not(.p-error) { | ||
381 | border-right: 0 none; | ||
382 | } | ||
383 | body .p-calendar.p-calendar-w-btn .p-datepicker-trigger.p-button { | ||
384 | width: 2.357em; | ||
385 | border-top-left-radius: 0; | ||
386 | border-bottom-left-radius: 0; | ||
387 | } | ||
388 | body .ui-fluid .p-calendar.p-calendar-w-btn input.p-inputtext { | ||
389 | width: calc(100% - 2.357em); | ||
390 | } | ||
391 | body p-calendar.ng-dirty.ng-invalid > .p-calendar > .p-inputtext { | ||
392 | border: 1px solid #a80000; | ||
393 | } | ||
394 | body .p-timepicker .p-separator { | ||
395 | margin-left: 0; | ||
396 | min-width: 0.75rem; | ||
397 | } | ||
398 | |||
399 | // auto complete | ||
400 | body .p-autocomplete .p-autocomplete-input { | ||
401 | padding: 0.429em; | ||
402 | } | ||
403 | body .p-autocomplete-panel { | ||
404 | padding: 0; | ||
405 | border: 1px solid #c8c8c8; | ||
406 | background-color: #ffffff; | ||
407 | box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); | ||
408 | } | ||
409 | body .p-autocomplete-panel .p-autocomplete-items { | ||
410 | padding: 0; | ||
411 | } | ||
412 | body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item { | ||
413 | margin: 0; | ||
414 | padding: 0.429em 0.857em; | ||
415 | border: 0 none; | ||
416 | color: #333333; | ||
417 | background-color: transparent; | ||
418 | border-radius: 0; | ||
419 | } | ||
420 | body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight, | ||
421 | body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover { | ||
422 | color: #ffffff; | ||
423 | background-color: pvar(--mainColor); | ||
424 | } | ||
425 | body .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-group { | ||
426 | padding: 0.429em 0.857em; | ||
427 | background-color: #d8dae2; | ||
428 | color: #333333; | ||
429 | } | ||
430 | body p-autocomplete.ng-dirty.ng-invalid > .p-autocomplete > .p-inputtext { | ||
431 | border: 1px solid #a80000; | ||
432 | } | ||
433 | |||
434 | // select button | ||
435 | body .p-selectbutton .p-button { | ||
436 | background-color: #dadada; | ||
437 | border: 1px solid #dadada; | ||
438 | color: #333333; | ||
439 | overflow: hidden; | ||
440 | transition: background-color 0.2s, box-shadow 0.2s; | ||
441 | } | ||
442 | body .p-selectbutton .p-button .p-button-icon-left { | ||
443 | color: #666666; | ||
444 | } | ||
445 | body .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover { | ||
446 | background-color: #c8c8c8; | ||
447 | border-color: #c8c8c8; | ||
448 | color: #333333; | ||
449 | } | ||
450 | body .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left { | ||
451 | color: #212121; | ||
452 | } | ||
453 | body .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight).ui-state-focus { | ||
454 | box-shadow: 0 0 0 0.2em #8dcdff; | ||
455 | z-index: 1; | ||
456 | } | ||
457 | body .p-selectbutton .p-button.p-highlight { | ||
458 | background-color: pvar(--mainColor); | ||
459 | border-color: pvar(--mainColor); | ||
460 | color: #ffffff; | ||
461 | } | ||
462 | body .p-selectbutton .p-button.p-highlight .p-button-icon-left { | ||
463 | color: #ffffff; | ||
464 | } | ||
465 | body .p-selectbutton .p-button.p-highlight:not(.p-disabled):hover { | ||
466 | background-color: pvar(--mainColorLighter); | ||
467 | border-color: pvar(--mainColorLighter); | ||
468 | color: #ffffff; | ||
469 | } | ||
470 | body .p-selectbutton .p-button.p-highlight:not(.p-disabled):hover .p-button-icon-left { | ||
471 | color: #ffffff; | ||
472 | } | ||
473 | body .p-selectbutton .p-button:first-child { | ||
474 | border-top-left-radius: 3px; | ||
475 | border-bottom-left-radius: 3px; | ||
476 | } | ||
477 | body .p-selectbutton .p-button:last-child { | ||
478 | border-top-right-radius: 3px; | ||
479 | border-bottom-right-radius: 3px; | ||
480 | } | ||
481 | body p-selectbutton.ng-dirty.ng-invalid .p-button { | ||
482 | border: 1px solid #a80000; | ||
483 | } | ||
484 | |||
485 | // | ||
6 | 486 | ||
7 | @mixin glyphicon-light { | 487 | @mixin glyphicon-light { |
8 | font-family: 'Glyphicons Halflings'; | 488 | font-family: 'Glyphicons Halflings'; |
@@ -11,20 +491,9 @@ | |||
11 | font-display: swap; | 491 | font-display: swap; |
12 | } | 492 | } |
13 | 493 | ||
14 | my-edit-button, | ||
15 | my-delete-button, | ||
16 | my-button { | ||
17 | height: max-content; | ||
18 | } | ||
19 | |||
20 | // focus box-shadow for primeng | ||
21 | .ui-inputtext:enabled:focus:not(.ui-state-error) { | ||
22 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest) !important; | ||
23 | } | ||
24 | |||
25 | // data table customizations | 494 | // data table customizations |
26 | p-table { | 495 | p-table { |
27 | .ui-table-caption { | 496 | .p-datatable-header { |
28 | border: none !important; | 497 | border: none !important; |
29 | background-color: pvar(--mainBackgroundColor) !important; | 498 | background-color: pvar(--mainBackgroundColor) !important; |
30 | 499 | ||
@@ -54,6 +523,10 @@ p-table { | |||
54 | td { | 523 | td { |
55 | padding-left: 15px !important; | 524 | padding-left: 15px !important; |
56 | 525 | ||
526 | &.expand-cell { | ||
527 | padding: 10px 15px; | ||
528 | } | ||
529 | |||
57 | &:not(.action-cell):not(.expand-cell):not(.checkbox-cell) { | 530 | &:not(.action-cell):not(.expand-cell):not(.checkbox-cell) { |
58 | overflow: hidden !important; | 531 | overflow: hidden !important; |
59 | text-overflow: ellipsis !important; | 532 | text-overflow: ellipsis !important; |
@@ -66,7 +539,7 @@ p-table { | |||
66 | background-color: pvar(--mainBackgroundColor) !important; | 539 | background-color: pvar(--mainBackgroundColor) !important; |
67 | height: 46px; | 540 | height: 46px; |
68 | 541 | ||
69 | &.ui-state-highlight { | 542 | &.p-highlight { |
70 | background-color: pvar(--submenuColor) !important; | 543 | background-color: pvar(--submenuColor) !important; |
71 | 544 | ||
72 | td, td > a { | 545 | td, td > a { |
@@ -75,7 +548,7 @@ p-table { | |||
75 | } | 548 | } |
76 | } | 549 | } |
77 | 550 | ||
78 | .ui-table-tbody { | 551 | .p-datatable-tbody { |
79 | tr { | 552 | tr { |
80 | &:hover { | 553 | &:hover { |
81 | background-color: pvar(--submenuColor) !important; | 554 | background-color: pvar(--submenuColor) !important; |
@@ -115,7 +588,7 @@ p-table { | |||
115 | font-weight: $font-semibold !important; | 588 | font-weight: $font-semibold !important; |
116 | color: pvar(--mainForegroundColor) !important; | 589 | color: pvar(--mainForegroundColor) !important; |
117 | 590 | ||
118 | &.ui-sortable-column:hover { | 591 | &.p-sortable-column:hover { |
119 | background-color: pvar(--submenuColor) !important; | 592 | background-color: pvar(--submenuColor) !important; |
120 | border: 1px solid !important; | 593 | border: 1px solid !important; |
121 | border-color: pvar(--submenuColor) !important; | 594 | border-color: pvar(--submenuColor) !important; |
@@ -126,7 +599,7 @@ p-table { | |||
126 | } | 599 | } |
127 | } | 600 | } |
128 | 601 | ||
129 | &.ui-state-highlight { | 602 | &.p-highlight { |
130 | background-color: pvar(--submenuColor) !important; | 603 | background-color: pvar(--submenuColor) !important; |
131 | 604 | ||
132 | .pi { | 605 | .pi { |
@@ -170,7 +643,7 @@ p-table { | |||
170 | } | 643 | } |
171 | 644 | ||
172 | p-paginator { | 645 | p-paginator { |
173 | .ui-paginator-bottom { | 646 | .p-paginator-bottom { |
174 | background-color: pvar(--mainBackgroundColor) !important; | 647 | background-color: pvar(--mainBackgroundColor) !important; |
175 | position: relative; | 648 | position: relative; |
176 | border: none; | 649 | border: none; |
@@ -181,30 +654,31 @@ p-table { | |||
181 | justify-content: center; | 654 | justify-content: center; |
182 | align-items: center; | 655 | align-items: center; |
183 | 656 | ||
184 | .ui-dropdown { | 657 | .p-dropdown { |
185 | position: absolute; | 658 | position: absolute; |
186 | top: 3px; | 659 | top: 10px; |
187 | left: 0; | 660 | left: 0; |
188 | 661 | ||
189 | &.ui-state-focus { | 662 | &.p-focus { |
190 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest); | 663 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest); |
191 | } | 664 | } |
192 | 665 | ||
193 | .ui-dropdown-label { | 666 | .p-label { |
194 | color: pvar(--inputPlaceholderColor); | 667 | color: pvar(--inputPlaceholderColor); |
195 | } | 668 | } |
196 | } | 669 | } |
197 | 670 | ||
198 | .ui-paginator-current { | 671 | .p-paginator-current { |
199 | position: absolute; | 672 | position: absolute; |
200 | right: 0; | 673 | right: 0; |
201 | color: pvar(--inputPlaceholderColor); | 674 | color: pvar(--inputPlaceholderColor); |
675 | overflow: visible; | ||
202 | } | 676 | } |
203 | 677 | ||
204 | .ui-paginator-first, | 678 | .p-paginator-first, |
205 | .ui-paginator-prev, | 679 | .p-paginator-prev, |
206 | .ui-paginator-next, | 680 | .p-paginator-next, |
207 | .ui-paginator-last { | 681 | .p-paginator-last { |
208 | @include glyphicon-light; | 682 | @include glyphicon-light; |
209 | padding: 5px 2px; | 683 | padding: 5px 2px; |
210 | height: auto; | 684 | height: auto; |
@@ -217,42 +691,40 @@ p-table { | |||
217 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest); | 691 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest); |
218 | } | 692 | } |
219 | 693 | ||
220 | &.ui-state-disabled:hover { | 694 | &.p-disabled:hover { |
221 | background-color: #fff !important; | 695 | background-color: #fff !important; |
222 | } | 696 | } |
223 | 697 | ||
224 | &.ui-paginator-first { | 698 | &.p-paginator-first { |
225 | @extend .glyphicon-step-backward; | 699 | @extend .glyphicon-step-backward; |
226 | } | 700 | } |
227 | 701 | ||
228 | &.ui-paginator-prev { | 702 | &.p-paginator-prev { |
229 | @extend .glyphicon-chevron-left; | 703 | @extend .glyphicon-chevron-left; |
230 | 704 | ||
231 | margin-right: 10px; | 705 | margin-right: 10px; |
232 | } | 706 | } |
233 | 707 | ||
234 | &.ui-paginator-next { | 708 | &.p-paginator-next { |
235 | @extend .glyphicon-chevron-right; | 709 | @extend .glyphicon-chevron-right; |
236 | 710 | ||
237 | margin-left: 10px; | 711 | margin-left: 10px; |
238 | } | 712 | } |
239 | 713 | ||
240 | &.ui-paginator-last { | 714 | &.p-paginator-last { |
241 | @extend .glyphicon-step-forward; | 715 | @extend .glyphicon-step-forward; |
242 | } | 716 | } |
243 | } | 717 | } |
244 | 718 | ||
245 | .ui-paginator-pages { | 719 | .p-paginator-pages { |
246 | height: auto !important; | 720 | height: auto !important; |
247 | 721 | ||
248 | .ui-paginator-page { | 722 | .p-paginator-page { |
249 | &.focus-within, | 723 | &.focus-within, |
250 | &:focus { | 724 | &:focus { |
251 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest) !important; | 725 | box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest) !important; |
252 | } | 726 | } |
253 | } | ||
254 | 727 | ||
255 | a { | ||
256 | color: pvar(--mainForegroundColor) !important; | 728 | color: pvar(--mainForegroundColor) !important; |
257 | font-weight: $font-semibold !important; | 729 | font-weight: $font-semibold !important; |
258 | margin: 0 5px !important; | 730 | margin: 0 5px !important; |
@@ -262,7 +734,7 @@ p-table { | |||
262 | height: auto !important; | 734 | height: auto !important; |
263 | line-height: initial !important; | 735 | line-height: initial !important; |
264 | 736 | ||
265 | &.ui-state-active { | 737 | &.p-highlight { |
266 | &, &:hover, &:active, &:focus { | 738 | &, &:hover, &:active, &:focus { |
267 | color: #fff !important; | 739 | color: #fff !important; |
268 | background-color: pvar(--mainColor) !important; | 740 | background-color: pvar(--mainColor) !important; |
@@ -277,7 +749,7 @@ p-table { | |||
277 | // overflow data table | 749 | // overflow data table |
278 | @mixin overflow-datatable ($table-min-width, $horizontal-margins, $mobile-paginator: true) { | 750 | @mixin overflow-datatable ($table-min-width, $horizontal-margins, $mobile-paginator: true) { |
279 | p-table { | 751 | p-table { |
280 | .ui-table-wrapper { | 752 | .p-datatable-wrapper { |
281 | overflow-x: auto; | 753 | overflow-x: auto; |
282 | max-width: calc(100vw - #{$horizontal-margins * 2}); | 754 | max-width: calc(100vw - #{$horizontal-margins * 2}); |
283 | 755 | ||
@@ -287,15 +759,15 @@ p-table { | |||
287 | } | 759 | } |
288 | 760 | ||
289 | @if $mobile-paginator { | 761 | @if $mobile-paginator { |
290 | p-paginator .ui-paginator-bottom { | 762 | p-paginator .p-paginator-bottom { |
291 | display: block; | 763 | display: block; |
292 | 764 | ||
293 | .ui-paginator-current { | 765 | .p-paginator-current { |
294 | position: relative; | 766 | position: relative; |
295 | display: block; | 767 | display: block; |
296 | } | 768 | } |
297 | 769 | ||
298 | a, .ui-paginator-pages { | 770 | a, .p-paginator-pages { |
299 | vertical-align: middle; | 771 | vertical-align: middle; |
300 | } | 772 | } |
301 | } | 773 | } |
@@ -304,18 +776,18 @@ p-table { | |||
304 | } | 776 | } |
305 | 777 | ||
306 | // PrimeNG calendar tweaks | 778 | // PrimeNG calendar tweaks |
307 | p-calendar .ui-datepicker { | 779 | p-calendar .p-datepicker { |
308 | a { | 780 | a { |
309 | @include disable-default-a-behaviour; | 781 | @include disable-default-a-behaviour; |
310 | } | 782 | } |
311 | 783 | ||
312 | .ui-datepicker-header { | 784 | .p-datepicker-header { |
313 | 785 | ||
314 | .ui-datepicker-year { | 786 | .p-datepicker-year { |
315 | margin-left: 5px; | 787 | margin-left: 5px; |
316 | } | 788 | } |
317 | 789 | ||
318 | .ui-datepicker-next { | 790 | .p-datepicker-next { |
319 | @extend .glyphicon-chevron-right; | 791 | @extend .glyphicon-chevron-right; |
320 | @include glyphicon-light; | 792 | @include glyphicon-light; |
321 | 793 | ||
@@ -327,7 +799,7 @@ p-calendar .ui-datepicker { | |||
327 | } | 799 | } |
328 | } | 800 | } |
329 | 801 | ||
330 | .ui-datepicker-prev { | 802 | .p-datepicker-prev { |
331 | @extend .glyphicon-chevron-left; | 803 | @extend .glyphicon-chevron-left; |
332 | @include glyphicon-light; | 804 | @include glyphicon-light; |
333 | 805 | ||
@@ -340,7 +812,7 @@ p-calendar .ui-datepicker { | |||
340 | } | 812 | } |
341 | } | 813 | } |
342 | 814 | ||
343 | .ui-timepicker { | 815 | .p-timepicker { |
344 | 816 | ||
345 | .pi.pi-chevron-up { | 817 | .pi.pi-chevron-up { |
346 | @extend .glyphicon-chevron-up; | 818 | @extend .glyphicon-chevron-up; |
@@ -358,32 +830,32 @@ p-calendar .ui-datepicker { | |||
358 | } | 830 | } |
359 | } | 831 | } |
360 | 832 | ||
361 | p-tablecheckbox:hover div .ui-chkbox-box { | 833 | p-tablecheckbox:hover div .p-checkbox-box { |
362 | box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2); | 834 | box-shadow: 0 0 0 .1rem rgba(87, 85, 217, .2); |
363 | } | 835 | } |
364 | 836 | ||
365 | .ui-chkbox { | 837 | .p-checkbox { |
366 | 838 | ||
367 | &, .ui-chkbox-box { | 839 | &, .p-checkbox-box { |
368 | width: 18px !important; | 840 | width: 18px !important; |
369 | height: 18px !important; | 841 | height: 18px !important; |
370 | } | 842 | } |
371 | 843 | ||
372 | .ui-chkbox-box { | 844 | .p-checkbox-box { |
373 | &.ui-state-active { | 845 | &.p-highlight { |
374 | border-color: pvar(--mainColor) !important; | 846 | border-color: pvar(--mainColor) !important; |
375 | background-color: pvar(--mainColor) !important; | 847 | background-color: pvar(--mainColor) !important; |
376 | } | 848 | } |
377 | 849 | ||
378 | .ui-chkbox-icon { | 850 | .p-checkbox-icon { |
379 | position: relative; | 851 | position: relative; |
380 | overflow: visible !important; | 852 | overflow: visible !important; |
381 | 853 | ||
382 | &:after { | 854 | &:after { |
383 | content: ''; | 855 | content: ''; |
384 | position: absolute; | 856 | position: absolute; |
385 | top: 1px; | 857 | bottom: -5px; |
386 | left: 6px; | 858 | left: -2px; |
387 | width: 5px; | 859 | width: 5px; |
388 | height: 12px; | 860 | height: 12px; |
389 | opacity: 0; | 861 | opacity: 0; |
@@ -400,51 +872,30 @@ p-tablecheckbox:hover div .ui-chkbox-box { | |||
400 | } | 872 | } |
401 | } | 873 | } |
402 | 874 | ||
403 | p-inputswitch { | ||
404 | height: 26px; | ||
405 | |||
406 | .ui-inputswitch-checked .ui-inputswitch-slider { | ||
407 | background-color: pvar(--mainColor) !important; | ||
408 | } | ||
409 | |||
410 | &.small { | ||
411 | height: 20px; | ||
412 | |||
413 | .ui-inputswitch { | ||
414 | width: 2.5em !important; | ||
415 | height: 1.45em !important; | ||
416 | |||
417 | .ui-inputswitch-slider::before { | ||
418 | height: 1em !important; | ||
419 | width: 1em !important; | ||
420 | } | ||
421 | } | ||
422 | |||
423 | .ui-inputswitch-checked .ui-inputswitch-slider::before { | ||
424 | transform: translateX(1em) !important; | ||
425 | } | ||
426 | } | ||
427 | } | ||
428 | |||
429 | p-toast { | 875 | p-toast { |
430 | .ui-toast { | 876 | .p-toast { |
877 | width: auto; | ||
878 | max-width: 300px; | ||
431 | z-index: z(notification) !important; | 879 | z-index: z(notification) !important; |
432 | 880 | ||
433 | .ui-toast-close-icon { | 881 | .p-toast-icon-close { |
434 | font-family: "Glyphicons Halflings"; | 882 | font-family: "Glyphicons Halflings"; |
435 | opacity: 0; | 883 | opacity: 0; |
884 | position: absolute; | ||
885 | right: 5px; | ||
886 | top: 5px; | ||
436 | 887 | ||
437 | &:after { | 888 | &:after { |
438 | content: "\e014"; | 889 | content: "\e014"; |
439 | } | 890 | } |
440 | } | 891 | } |
441 | 892 | ||
442 | &:hover .ui-toast-close-icon { | 893 | &:hover .p-toast-icon-close { |
443 | opacity: .3; | 894 | opacity: .3; |
444 | } | 895 | } |
445 | } | 896 | } |
446 | 897 | ||
447 | .ui-toast-message { | 898 | .p-toast-message { |
448 | font-family: $main-fonts; | 899 | font-family: $main-fonts; |
449 | background-color: pvar(--mainBackgroundColor) !important; | 900 | background-color: pvar(--mainBackgroundColor) !important; |
450 | color: pvar(--mainForegroundColor) !important; | 901 | color: pvar(--mainForegroundColor) !important; |
@@ -454,29 +905,30 @@ p-toast { | |||
454 | box-shadow: 0 2px 12px 0 rgba(0, 0 , 0, .1); | 905 | box-shadow: 0 2px 12px 0 rgba(0, 0 , 0, .1); |
455 | overflow: hidden; | 906 | overflow: hidden; |
456 | 907 | ||
457 | &.ui-toast-message-success .glyphicon { | 908 | &.p-toast-message-success .glyphicon { |
458 | color: #8BC34A !important; | 909 | color: #8BC34A !important; |
459 | } | 910 | } |
460 | 911 | ||
461 | &.ui-toast-message-error .glyphicon { | 912 | &.p-toast-message-error .glyphicon { |
462 | color: #F44336 !important; | 913 | color: #F44336 !important; |
463 | } | 914 | } |
464 | 915 | ||
465 | &.ui-toast-message-warn .glyphicon { | 916 | &.p-toast-message-warn .glyphicon { |
466 | color: #F1680D !important; | 917 | color: #F1680D !important; |
467 | } | 918 | } |
468 | 919 | ||
469 | &.ui-toast-message-info .glyphicon { | 920 | &.p-toast-message-info .glyphicon { |
470 | color: #03A9F4 !important; | 921 | color: #03A9F4 !important; |
471 | } | 922 | } |
472 | 923 | ||
473 | .notification-block { | 924 | .notification-block { |
474 | display: flex; | 925 | display: flex; |
475 | align-items: center; | 926 | align-items: center; |
476 | padding: 5px; | 927 | padding: 10px; |
477 | 928 | ||
478 | .message { | 929 | .message { |
479 | flex-grow: 1; | 930 | flex-grow: 1; |
931 | margin-right: 20px; | ||
480 | 932 | ||
481 | h3 { | 933 | h3 { |
482 | font-size: 21px; | 934 | font-size: 21px; |
@@ -496,6 +948,14 @@ p-toast { | |||
496 | } | 948 | } |
497 | } | 949 | } |
498 | 950 | ||
499 | .ui-widget { | 951 | .p-selectbutton { |
500 | font-family: $main-fonts !important; | 952 | .p-button:focus { |
953 | outline: none; | ||
954 | } | ||
955 | |||
956 | .p-button-label { | ||
957 | padding: 5px 15px; | ||
958 | font-size: 15px; | ||
959 | font-weight: 600; | ||
960 | } | ||
501 | } | 961 | } |