@vixcom/ui 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/animations.css +174 -0
- package/dist/css/animations.css.map +1 -0
- package/dist/css/colors.css +2651 -0
- package/dist/css/colors.css.map +1 -0
- package/dist/css/external/bootstrap-grid.css +4055 -0
- package/dist/css/external/bootstrap-grid.css.map +1 -0
- package/dist/css/external/bootstrap.css +9582 -0
- package/dist/css/external/bootstrap.css.map +1 -0
- package/dist/css/external/mdb.css +8811 -0
- package/dist/css/external/mdb.css.map +1 -0
- package/dist/css/external/owl-carousel.css +218 -0
- package/dist/css/external/owl-carousel.css.map +1 -0
- package/dist/css/external/tailwindcss.css +3 -0
- package/dist/css/external/tailwindcss.css.map +1 -0
- package/dist/css/fonts.css +143 -0
- package/dist/css/fonts.css.map +1 -0
- package/dist/css/grid.css +6 -0
- package/dist/css/grid.css.map +1 -0
- package/dist/css/helper/owl.carousel.css +75 -0
- package/dist/css/helper/owl.carousel.css.map +1 -0
- package/dist/css/helper/primefaces.css +309 -0
- package/dist/css/helper/primefaces.css.map +1 -0
- package/dist/css/helper/tailwindcss.css +6 -0
- package/dist/css/helper/tailwindcss.css.map +1 -0
- package/dist/css/icons/external/bootstrap.icons.css +7838 -0
- package/dist/css/icons/external/bootstrap.icons.css.map +1 -0
- package/dist/css/icons/external/fontawesome.icons.css +6122 -0
- package/dist/css/icons/external/fontawesome.icons.css.map +1 -0
- package/dist/css/icons/external/material-design.icons.css +5727 -0
- package/dist/css/icons/external/material-design.icons.css.map +1 -0
- package/dist/css/icons/external/themify.icons.css +1428 -0
- package/dist/css/icons/external/themify.icons.css.map +1 -0
- package/dist/css/index.css +22 -0
- package/dist/css/index.css.map +1 -0
- package/dist/css/main.css +1814 -0
- package/dist/css/main.css.map +1 -0
- package/dist/css/menu.css +561 -0
- package/dist/css/menu.css.map +1 -0
- package/dist/css/polyfills.css +10 -0
- package/dist/css/polyfills.css.map +1 -0
- package/dist/css/sizes.css +5974 -0
- package/dist/css/sizes.css.map +1 -0
- package/dist/css/variables.css +258 -0
- package/dist/css/variables.css.map +1 -0
- package/package.json +11 -2
- package/src/css/animations.css +3 -3
- package/src/css/animations.css.map +1 -1
- package/src/css/colors.css +1126 -1122
- package/src/css/colors.css.map +1 -1
- package/src/css/helper/owl.carousel.css +3 -3
- package/src/css/helper/owl.carousel.css.map +1 -1
- package/src/css/icons/external/bootstrap.icons.css +5088 -2751
- package/src/css/icons/external/bootstrap.icons.css.map +1 -1
- package/src/css/main.css +62 -95
- package/src/css/main.css.map +1 -1
- package/src/css/menu.css +176 -189
- package/src/css/menu.css.map +1 -1
- package/src/css/sizes.css +1164 -1164
- package/src/fonts/bootstrap-icons.woff +0 -0
- package/src/index.html +31 -46
- package/src/js/alpine +5 -0
- package/src/pages/menu/index.html +98 -0
- package/src/styles/_mixins.scss +55 -90
- package/src/styles/animations.scss +16 -17
- package/src/styles/colors.scss +13 -16
- package/src/styles/fonts.scss +42 -5
- package/src/styles/helper/owl.carousel.scss +6 -7
- package/src/styles/helper/primefaces.scss +50 -17
- package/src/styles/icons/external/bootstrap.icons.css +1969 -5490
- package/src/styles/index.scss +0 -3
- package/src/styles/main.scss +121 -184
- package/src/styles/menu.scss +174 -204
- package/src/styles/sizes.scss +2 -37
- package/src/styles/variables.scss +3 -3
- package/src/css/app.css.map +0 -1
- package/src/pages/sidemenu/index.html +0 -65
package/src/styles/index.scss
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
* @Author: Vixson
|
|
3
3
|
* @Description: Unique and Very Responsive Admin Dashboard UI
|
|
4
4
|
*/
|
|
5
|
-
@import 'mixins';
|
|
6
|
-
// @import 'https://unpkg.com/bootstrap@latest/dist/css/bootstrap.min.css';
|
|
7
|
-
// @import 'external/bootstrap.css';
|
|
8
5
|
@import 'variables.css';
|
|
9
6
|
@import 'main.css';
|
|
10
7
|
@import 'sizes.css';
|
package/src/styles/main.scss
CHANGED
|
@@ -2,11 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
/* Scrollbar - Start */
|
|
4
4
|
|
|
5
|
+
script {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
5
9
|
* {
|
|
6
10
|
scrollbar-color: hsl(var(--muted-hs), calc(var(--muted-l) + 40%)) transparent;
|
|
7
11
|
scrollbar-width: thin;
|
|
8
12
|
cursor: default;
|
|
9
|
-
|
|
13
|
+
word-break: break-word;
|
|
10
14
|
}
|
|
11
15
|
|
|
12
16
|
::-webkit-scrollbar {
|
|
@@ -23,6 +27,7 @@
|
|
|
23
27
|
|
|
24
28
|
::-webkit-scrollbar-thumb {
|
|
25
29
|
background-color: hsl(var(--muted-hs), calc(var(--muted-l) + 40%));
|
|
30
|
+
background-clip: padding-box;
|
|
26
31
|
border-radius: 0;
|
|
27
32
|
}
|
|
28
33
|
|
|
@@ -49,6 +54,7 @@ body {
|
|
|
49
54
|
color: var(--default, --white-c);
|
|
50
55
|
font-size: var(--font-size);
|
|
51
56
|
font-weight: normal;
|
|
57
|
+
margin: 0;
|
|
52
58
|
}
|
|
53
59
|
|
|
54
60
|
%title {
|
|
@@ -82,9 +88,6 @@ b {
|
|
|
82
88
|
.bg-text,
|
|
83
89
|
.bg-text-color {
|
|
84
90
|
position: relative;
|
|
85
|
-
display: inline-flex;
|
|
86
|
-
// align-items: center;
|
|
87
|
-
// justify-content: center;
|
|
88
91
|
|
|
89
92
|
&:hover::after {
|
|
90
93
|
opacity: 0.125;
|
|
@@ -141,68 +144,36 @@ a:not(.link) {
|
|
|
141
144
|
|
|
142
145
|
.main-logo {
|
|
143
146
|
display: inline-flex;
|
|
144
|
-
width: 10rem;
|
|
145
147
|
max-width: 100%;
|
|
146
148
|
object-fit: contain;
|
|
147
149
|
}
|
|
148
150
|
|
|
149
151
|
.page-header {
|
|
150
|
-
padding: 1rem
|
|
152
|
+
padding: 0 1rem;
|
|
151
153
|
display: flex;
|
|
152
154
|
align-items: center;
|
|
153
|
-
position: relative;
|
|
154
|
-
z-index: 1;
|
|
155
155
|
|
|
156
156
|
&.position-sticky,
|
|
157
157
|
&.sticky {
|
|
158
|
-
position: sticky
|
|
158
|
+
position: sticky;
|
|
159
159
|
top: 0;
|
|
160
160
|
left: 0;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
-
.main-title {
|
|
164
|
-
margin-bottom: 0;
|
|
165
|
-
font-size: 125%;
|
|
166
|
-
|
|
167
|
-
@include unify-selector(img, &) {
|
|
168
|
-
width: 10rem;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.flex-container {
|
|
174
|
-
display: flex;
|
|
175
|
-
flex-wrap: wrap;
|
|
176
|
-
/* align-items: flex-end; */
|
|
177
|
-
margin: 0.5rem 0;
|
|
178
|
-
gap: 0.5rem;
|
|
179
|
-
|
|
180
|
-
> * {
|
|
181
|
-
/* align-self: flex-start; */
|
|
182
|
-
margin-bottom: 0;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.page-header {
|
|
187
|
-
margin: 1rem 0;
|
|
188
|
-
padding: 0 1rem;
|
|
189
|
-
display: flex;
|
|
190
|
-
align-items: center;
|
|
191
|
-
|
|
192
163
|
.page-title {
|
|
193
164
|
text-transform: capitalize;
|
|
194
165
|
margin-right: auto;
|
|
195
|
-
margin-bottom: 1rem;
|
|
196
|
-
color: var(--primary);
|
|
197
|
-
|
|
198
166
|
font: {
|
|
199
167
|
size: 200%;
|
|
200
168
|
weight: normal;
|
|
201
169
|
}
|
|
202
|
-
}
|
|
203
170
|
|
|
204
|
-
|
|
205
|
-
|
|
171
|
+
.button {
|
|
172
|
+
min-width: auto;
|
|
173
|
+
}
|
|
174
|
+
@include unify-selector(img, &) {
|
|
175
|
+
width: 10rem;
|
|
176
|
+
}
|
|
206
177
|
}
|
|
207
178
|
}
|
|
208
179
|
|
|
@@ -246,6 +217,19 @@ a:not(.link) {
|
|
|
246
217
|
}
|
|
247
218
|
}
|
|
248
219
|
|
|
220
|
+
.flex-container {
|
|
221
|
+
display: flex;
|
|
222
|
+
flex-wrap: wrap;
|
|
223
|
+
/* align-items: flex-end; */
|
|
224
|
+
margin: 0.5rem 0;
|
|
225
|
+
gap: 0.5rem;
|
|
226
|
+
|
|
227
|
+
> * {
|
|
228
|
+
/* align-self: flex-start; */
|
|
229
|
+
margin-bottom: 0;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
249
233
|
.row > [class*='col'] {
|
|
250
234
|
margin-bottom: 1em;
|
|
251
235
|
|
|
@@ -283,7 +267,9 @@ a:not(.link) {
|
|
|
283
267
|
}
|
|
284
268
|
|
|
285
269
|
[class*='sq-'] {
|
|
286
|
-
|
|
270
|
+
display: inline-flex;
|
|
271
|
+
align-items: center;
|
|
272
|
+
justify-content: center;
|
|
287
273
|
flex: unset;
|
|
288
274
|
padding: 0;
|
|
289
275
|
/* margin: auto; */
|
|
@@ -304,35 +290,11 @@ hr {
|
|
|
304
290
|
}
|
|
305
291
|
|
|
306
292
|
hr[class*='s-']:not(.default) {
|
|
307
|
-
background-color: transparent
|
|
293
|
+
background-color: transparent;
|
|
308
294
|
margin: 0;
|
|
309
295
|
border: 0;
|
|
310
296
|
}
|
|
311
297
|
|
|
312
|
-
.s-sm {
|
|
313
|
-
padding: 0.25rem;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.s-1 {
|
|
317
|
-
padding: 0.5rem;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.s-2 {
|
|
321
|
-
padding: 0.75rem;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
.s-3 {
|
|
325
|
-
padding: 1.5rem;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.s-4 {
|
|
329
|
-
padding: 2.5rem;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.s-5 {
|
|
333
|
-
padding: 5rem;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
298
|
.dropdown-menu-right .dropdown-menu {
|
|
337
299
|
transform: translate(-100%, 0);
|
|
338
300
|
}
|
|
@@ -410,12 +372,14 @@ textarea {
|
|
|
410
372
|
}
|
|
411
373
|
}
|
|
412
374
|
|
|
413
|
-
ul
|
|
375
|
+
ul,
|
|
376
|
+
menu {
|
|
414
377
|
list-style: none;
|
|
415
378
|
padding-left: 0;
|
|
416
379
|
}
|
|
417
380
|
|
|
418
381
|
label {
|
|
382
|
+
margin: 0;
|
|
419
383
|
cursor: pointer;
|
|
420
384
|
|
|
421
385
|
&.radio,
|
|
@@ -424,7 +388,6 @@ label {
|
|
|
424
388
|
&-container {
|
|
425
389
|
display: flex;
|
|
426
390
|
align-items: center;
|
|
427
|
-
margin: 1rem 0;
|
|
428
391
|
|
|
429
392
|
.label > * {
|
|
430
393
|
margin-bottom: 0;
|
|
@@ -446,13 +409,14 @@ label {
|
|
|
446
409
|
.active,
|
|
447
410
|
input:not(:checked) ~ .label.off,
|
|
448
411
|
input:checked ~ .label:not(.off) {
|
|
449
|
-
|
|
412
|
+
// TODO: Check if parent background color is secondary
|
|
413
|
+
// color: var(--secondary);
|
|
450
414
|
font-weight: bold;
|
|
451
415
|
}
|
|
452
416
|
|
|
453
417
|
input[type='radio'],
|
|
454
418
|
input[type='checkbox'] {
|
|
455
|
-
margin: 0 0.5rem;
|
|
419
|
+
// margin: 0 0.5rem;
|
|
456
420
|
}
|
|
457
421
|
}
|
|
458
422
|
|
|
@@ -476,9 +440,6 @@ input {
|
|
|
476
440
|
-webkit-appearance: none;
|
|
477
441
|
appearance: none;
|
|
478
442
|
border: none;
|
|
479
|
-
width: 2rem;
|
|
480
|
-
min-width: 2rem;
|
|
481
|
-
height: 1rem;
|
|
482
443
|
padding: 0;
|
|
483
444
|
margin: 0;
|
|
484
445
|
border-radius: 0.5rem;
|
|
@@ -486,6 +447,12 @@ input {
|
|
|
486
447
|
color: unset;
|
|
487
448
|
opacity: 1;
|
|
488
449
|
|
|
450
|
+
&:not(.default) {
|
|
451
|
+
width: 2rem;
|
|
452
|
+
min-width: 2rem;
|
|
453
|
+
height: 1rem;
|
|
454
|
+
}
|
|
455
|
+
|
|
489
456
|
&::before {
|
|
490
457
|
content: '';
|
|
491
458
|
display: block;
|
|
@@ -555,11 +522,11 @@ input {
|
|
|
555
522
|
display: inline-block;
|
|
556
523
|
justify-content: center;
|
|
557
524
|
align-items: center;
|
|
558
|
-
width: 1rem
|
|
525
|
+
width: 1rem;
|
|
559
526
|
min-width: 1rem;
|
|
560
527
|
height: 1rem;
|
|
561
528
|
min-height: 1rem;
|
|
562
|
-
padding: 0.125rem
|
|
529
|
+
padding: 0.125rem;
|
|
563
530
|
margin: 0;
|
|
564
531
|
|
|
565
532
|
&::after {
|
|
@@ -615,19 +582,19 @@ input {
|
|
|
615
582
|
display: flex;
|
|
616
583
|
align-items: center;
|
|
617
584
|
justify-content: center;
|
|
618
|
-
border-radius: inherit
|
|
585
|
+
border-radius: inherit;
|
|
619
586
|
/* font-weight: bold; */
|
|
620
587
|
align-self: stretch;
|
|
621
588
|
min-width: unset;
|
|
622
589
|
|
|
623
590
|
&:not(:last-child) {
|
|
624
|
-
border-top-right-radius: 0
|
|
625
|
-
border-bottom-right-radius: 0
|
|
591
|
+
border-top-right-radius: 0;
|
|
592
|
+
border-bottom-right-radius: 0;
|
|
626
593
|
}
|
|
627
594
|
|
|
628
595
|
&:not(:first-child) {
|
|
629
|
-
border-top-left-radius: 0
|
|
630
|
-
border-bottom-left-radius: 0
|
|
596
|
+
border-top-left-radius: 0;
|
|
597
|
+
border-bottom-left-radius: 0;
|
|
631
598
|
}
|
|
632
599
|
}
|
|
633
600
|
|
|
@@ -734,18 +701,18 @@ option[disabled]:first-of-type {
|
|
|
734
701
|
margin-top: 0.5rem;
|
|
735
702
|
}
|
|
736
703
|
|
|
737
|
-
&:has(input:invalid) {
|
|
738
|
-
|
|
739
|
-
}
|
|
704
|
+
// &:has(input:invalid) {
|
|
705
|
+
// color: var(--danger);
|
|
706
|
+
// }
|
|
740
707
|
|
|
741
|
-
&:has(input:focus:empty),
|
|
742
|
-
&:has(input:focus:placeholder-shown) {
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
}
|
|
708
|
+
// &:has(input:focus:empty),
|
|
709
|
+
// &:has(input:focus:placeholder-shown) {
|
|
710
|
+
// &::before,
|
|
711
|
+
// .label {
|
|
712
|
+
// // @include append-selector() {
|
|
713
|
+
// background-color: var(--primary);
|
|
714
|
+
// }
|
|
715
|
+
// }
|
|
749
716
|
|
|
750
717
|
// &>label,
|
|
751
718
|
&::before,
|
|
@@ -786,8 +753,8 @@ option[disabled]:first-of-type {
|
|
|
786
753
|
}
|
|
787
754
|
|
|
788
755
|
.addon {
|
|
789
|
-
background-color: var(--danger)
|
|
790
|
-
color: var(--white)
|
|
756
|
+
background-color: var(--danger);
|
|
757
|
+
color: var(--white);
|
|
791
758
|
}
|
|
792
759
|
|
|
793
760
|
> {
|
|
@@ -801,7 +768,6 @@ option[disabled]:first-of-type {
|
|
|
801
768
|
&.has-warning {
|
|
802
769
|
&::after,
|
|
803
770
|
.hint {
|
|
804
|
-
/* font-weight: bold; */
|
|
805
771
|
color: var(--warning);
|
|
806
772
|
}
|
|
807
773
|
|
|
@@ -853,7 +819,6 @@ option[disabled]:first-of-type {
|
|
|
853
819
|
justify-content: space-between;
|
|
854
820
|
overflow: hidden;
|
|
855
821
|
gap: 0.125rem;
|
|
856
|
-
/* border-radius: 5rem; */
|
|
857
822
|
@include before-content;
|
|
858
823
|
|
|
859
824
|
&::before {
|
|
@@ -883,15 +848,11 @@ option[disabled]:first-of-type {
|
|
|
883
848
|
|
|
884
849
|
.tabs {
|
|
885
850
|
position: relative;
|
|
886
|
-
margin-bottom: 1rem;
|
|
887
851
|
display: flex;
|
|
888
852
|
overflow-x: scroll;
|
|
889
853
|
flex-wrap: nowrap;
|
|
890
|
-
/* align-items: center; */
|
|
891
854
|
width: 100%;
|
|
892
|
-
padding: 0.125rem 1.25rem;
|
|
893
855
|
gap: 0.5rem;
|
|
894
|
-
/* z-index: 1; */
|
|
895
856
|
|
|
896
857
|
> .tab {
|
|
897
858
|
display: inline-flex;
|
|
@@ -901,7 +862,7 @@ option[disabled]:first-of-type {
|
|
|
901
862
|
padding: 0.25rem;
|
|
902
863
|
border: none;
|
|
903
864
|
border-radius: 0.25rem;
|
|
904
|
-
|
|
865
|
+
gap: 0.25rem;
|
|
905
866
|
min-width: 5rem;
|
|
906
867
|
flex: 0 0 auto;
|
|
907
868
|
transition: background-color 0.25s;
|
|
@@ -929,44 +890,24 @@ option[disabled]:first-of-type {
|
|
|
929
890
|
@extend %no-scrollbar;
|
|
930
891
|
}
|
|
931
892
|
|
|
932
|
-
&.overlap {
|
|
933
|
-
@include after-content;
|
|
934
|
-
|
|
935
|
-
&::after {
|
|
936
|
-
background-color: inherit;
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
|
|
940
893
|
&.md {
|
|
941
|
-
.tab {
|
|
942
|
-
background-color: transparent !important;
|
|
943
|
-
|
|
944
|
-
&.active {
|
|
945
|
-
border-bottom: medium solid;
|
|
946
|
-
}
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
|
|
950
|
-
&.md,
|
|
951
|
-
&.overlap {
|
|
952
|
-
// @extend &.no-scrollbar;
|
|
953
|
-
|
|
954
894
|
> .tab {
|
|
955
|
-
margin-bottom: 0;
|
|
956
895
|
border-bottom-left-radius: 0;
|
|
957
896
|
border-bottom-right-radius: 0;
|
|
958
897
|
padding: 0.25rem 0.5rem;
|
|
898
|
+
background-color: transparent;
|
|
959
899
|
|
|
900
|
+
&.active {
|
|
901
|
+
border-bottom: medium solid;
|
|
902
|
+
}
|
|
960
903
|
.label {
|
|
961
904
|
margin: 0.5rem;
|
|
962
905
|
}
|
|
963
906
|
}
|
|
964
907
|
}
|
|
965
|
-
}
|
|
966
908
|
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
.tab {
|
|
909
|
+
&.overlap {
|
|
910
|
+
> .tab {
|
|
970
911
|
position: relative;
|
|
971
912
|
|
|
972
913
|
&::before,
|
|
@@ -998,11 +939,11 @@ option[disabled]:first-of-type {
|
|
|
998
939
|
|
|
999
940
|
.border {
|
|
1000
941
|
&-dashed {
|
|
1001
|
-
border-style: dashed
|
|
942
|
+
border-style: dashed;
|
|
1002
943
|
}
|
|
1003
944
|
|
|
1004
945
|
&-current {
|
|
1005
|
-
border-color: currentColor
|
|
946
|
+
border-color: currentColor;
|
|
1006
947
|
}
|
|
1007
948
|
}
|
|
1008
949
|
|
|
@@ -1033,17 +974,21 @@ option[disabled]:first-of-type {
|
|
|
1033
974
|
border-radius: 0.5rem;
|
|
1034
975
|
}
|
|
1035
976
|
|
|
977
|
+
button,
|
|
1036
978
|
.button {
|
|
1037
979
|
position: relative;
|
|
1038
|
-
padding: 0.25rem 1.5rem;
|
|
1039
|
-
font-size: 120%;
|
|
1040
|
-
/* font-weight: bold; */
|
|
1041
|
-
min-width: 7.5rem;
|
|
1042
980
|
display: inline-flex;
|
|
1043
|
-
|
|
981
|
+
border-radius: var(--border-radius, 0.25rem);
|
|
982
|
+
padding: 0.25rem 0.75rem;
|
|
983
|
+
font-size: 120%;
|
|
984
|
+
min-width: 5rem;
|
|
985
|
+
gap: 0.25rem;
|
|
1044
986
|
justify-content: center;
|
|
1045
987
|
align-items: center;
|
|
1046
|
-
|
|
988
|
+
overflow: hidden;
|
|
989
|
+
text-overflow: ellipsis;
|
|
990
|
+
white-space: nowrap;
|
|
991
|
+
border: 1px;
|
|
1047
992
|
|
|
1048
993
|
&:focus {
|
|
1049
994
|
outline: 1px solid hsl(var(--secondary-hs), calc(var(--secondary-l) + 50%));
|
|
@@ -1058,10 +1003,9 @@ option[disabled]:first-of-type {
|
|
|
1058
1003
|
}
|
|
1059
1004
|
|
|
1060
1005
|
&.button-circle {
|
|
1061
|
-
width:
|
|
1062
|
-
height:
|
|
1006
|
+
min-width: 5rem;
|
|
1007
|
+
min-height: 5rem;
|
|
1063
1008
|
display: inline-flex;
|
|
1064
|
-
min-width: unset !important;
|
|
1065
1009
|
padding: 0.5rem;
|
|
1066
1010
|
align-items: center;
|
|
1067
1011
|
justify-content: center;
|
|
@@ -1093,9 +1037,9 @@ option[disabled]:first-of-type {
|
|
|
1093
1037
|
margin-top: 0.5rem;
|
|
1094
1038
|
}
|
|
1095
1039
|
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1040
|
+
.icon {
|
|
1041
|
+
font-size: 125%;
|
|
1042
|
+
}
|
|
1099
1043
|
}
|
|
1100
1044
|
|
|
1101
1045
|
.button-group {
|
|
@@ -1151,7 +1095,7 @@ table {
|
|
|
1151
1095
|
|
|
1152
1096
|
tr,
|
|
1153
1097
|
> .row {
|
|
1154
|
-
background-color: inherit
|
|
1098
|
+
background-color: inherit;
|
|
1155
1099
|
|
|
1156
1100
|
& + tr,
|
|
1157
1101
|
& + .row {
|
|
@@ -1407,8 +1351,8 @@ table {
|
|
|
1407
1351
|
}
|
|
1408
1352
|
|
|
1409
1353
|
.bg-svg {
|
|
1410
|
-
-webkit-mask-image: url('/assets/
|
|
1411
|
-
mask-image: url('/assets/
|
|
1354
|
+
-webkit-mask-image: url('/assets/images/card-bg.svg');
|
|
1355
|
+
mask-image: url('/assets/images/card-bg.svg');
|
|
1412
1356
|
}
|
|
1413
1357
|
}
|
|
1414
1358
|
|
|
@@ -1464,6 +1408,19 @@ table {
|
|
|
1464
1408
|
}
|
|
1465
1409
|
}
|
|
1466
1410
|
|
|
1411
|
+
.grid-item {
|
|
1412
|
+
display: grid;
|
|
1413
|
+
grid-template-columns: 1fr 4fr;
|
|
1414
|
+
grid-template-rows: 1fr;
|
|
1415
|
+
align-items: center;
|
|
1416
|
+
|
|
1417
|
+
:nth-child(1) {
|
|
1418
|
+
grid-row: 1/-1;
|
|
1419
|
+
}
|
|
1420
|
+
:nth-child(2) {
|
|
1421
|
+
}
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1467
1424
|
.text-spaced {
|
|
1468
1425
|
letter-spacing: 0.25rem;
|
|
1469
1426
|
|
|
@@ -1472,48 +1429,31 @@ table {
|
|
|
1472
1429
|
}
|
|
1473
1430
|
}
|
|
1474
1431
|
|
|
1475
|
-
.title-strick,
|
|
1476
1432
|
.text-strick-line {
|
|
1477
|
-
display:
|
|
1433
|
+
display: grid;
|
|
1434
|
+
grid-template-columns: repeat(3, 1fr);
|
|
1478
1435
|
align-items: center;
|
|
1479
1436
|
justify-content: center;
|
|
1480
|
-
|
|
1481
|
-
& .label,
|
|
1482
|
-
&::content {
|
|
1483
|
-
width: 100%;
|
|
1484
|
-
}
|
|
1437
|
+
gap: 0.5rem;
|
|
1485
1438
|
|
|
1486
1439
|
&::before,
|
|
1487
1440
|
&::after {
|
|
1488
1441
|
content: '';
|
|
1489
1442
|
display: inline-block;
|
|
1490
|
-
margin: 0 0.5rem;
|
|
1491
|
-
width: 100%;
|
|
1492
1443
|
height: 1px;
|
|
1493
|
-
max-width: 10rem;
|
|
1494
1444
|
background-color: currentColor;
|
|
1495
1445
|
}
|
|
1496
1446
|
}
|
|
1497
1447
|
|
|
1498
1448
|
.card {
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
/* overflow: unset; */
|
|
1503
|
-
border: none;
|
|
1504
|
-
z-index: 0;
|
|
1505
|
-
|
|
1506
|
-
& > * {
|
|
1507
|
-
/* position: relative; */
|
|
1508
|
-
}
|
|
1449
|
+
display: flex;
|
|
1450
|
+
flex-direction: column;
|
|
1451
|
+
border-radius: var(--border-radius);
|
|
1509
1452
|
|
|
1510
|
-
|
|
1511
|
-
box-shadow: var(--card-shadow);
|
|
1512
|
-
}
|
|
1513
|
-
}
|
|
1453
|
+
@include before-content;
|
|
1514
1454
|
|
|
1515
|
-
|
|
1516
|
-
|
|
1455
|
+
&:not(.flat)::before {
|
|
1456
|
+
box-shadow: var(--card-shadow);
|
|
1517
1457
|
}
|
|
1518
1458
|
|
|
1519
1459
|
&:not(.card-body) > {
|
|
@@ -1569,6 +1509,12 @@ table {
|
|
|
1569
1509
|
}
|
|
1570
1510
|
}
|
|
1571
1511
|
|
|
1512
|
+
.card-group {
|
|
1513
|
+
.card + .card {
|
|
1514
|
+
margin-top: 1rem;
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1572
1518
|
.flex-list,
|
|
1573
1519
|
.item-list {
|
|
1574
1520
|
margin: 1.5rem 0;
|
|
@@ -1924,11 +1870,10 @@ section {
|
|
|
1924
1870
|
}
|
|
1925
1871
|
}
|
|
1926
1872
|
|
|
1927
|
-
/*
|
|
1873
|
+
/* Tables/Mini PC Below */
|
|
1928
1874
|
@media (max-width: 768px) {
|
|
1929
1875
|
.page-header,
|
|
1930
1876
|
.section-header {
|
|
1931
|
-
padding: 0;
|
|
1932
1877
|
flex-wrap: wrap;
|
|
1933
1878
|
|
|
1934
1879
|
input[type='search'] {
|
|
@@ -1949,14 +1894,6 @@ section {
|
|
|
1949
1894
|
}
|
|
1950
1895
|
}
|
|
1951
1896
|
|
|
1952
|
-
.tabs {
|
|
1953
|
-
padding: 1.25rem 0.125rem;
|
|
1954
|
-
|
|
1955
|
-
&.overlap {
|
|
1956
|
-
padding: 0;
|
|
1957
|
-
}
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
1897
|
.table-container {
|
|
1961
1898
|
&:not(.is-sticky) .row.table-header {
|
|
1962
1899
|
display: none;
|
|
@@ -1990,7 +1927,7 @@ section {
|
|
|
1990
1927
|
}
|
|
1991
1928
|
}
|
|
1992
1929
|
|
|
1993
|
-
/* Below
|
|
1930
|
+
/* Mobile Below */
|
|
1994
1931
|
@media (max-width: 576px) {
|
|
1995
1932
|
.card {
|
|
1996
1933
|
width: 100%;
|