@vixcom/ui 1.3.0 → 1.4.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 +5599 -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 +65 -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 +286 -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 +1856 -0
- package/dist/css/main.css.map +1 -0
- package/dist/css/menu.css +562 -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 +6021 -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 +1 -1
- 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 +4 -3
- package/src/js/alpine +5 -0
- package/src/pages/menu/index.html +94 -0
- package/src/styles/_mixins.scss +23 -47
- package/src/styles/animations.scss +16 -17
- package/src/styles/colors.scss +4 -0
- package/src/styles/helper/owl.carousel.scss +6 -7
- package/src/styles/icons/external/bootstrap.icons.css +1969 -5490
- package/src/styles/main.scss +52 -74
- package/src/styles/menu.scss +174 -203
- package/src/styles/sizes.scss +2 -2
- package/src/css/app.css.map +0 -1
- package/src/pages/sidemenu/index.html +0 -65
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 {
|
|
@@ -141,7 +147,6 @@ a:not(.link) {
|
|
|
141
147
|
|
|
142
148
|
.main-logo {
|
|
143
149
|
display: inline-flex;
|
|
144
|
-
width: 10rem;
|
|
145
150
|
max-width: 100%;
|
|
146
151
|
object-fit: contain;
|
|
147
152
|
}
|
|
@@ -155,7 +160,7 @@ a:not(.link) {
|
|
|
155
160
|
|
|
156
161
|
&.position-sticky,
|
|
157
162
|
&.sticky {
|
|
158
|
-
position: sticky
|
|
163
|
+
position: sticky;
|
|
159
164
|
top: 0;
|
|
160
165
|
left: 0;
|
|
161
166
|
}
|
|
@@ -304,7 +309,7 @@ hr {
|
|
|
304
309
|
}
|
|
305
310
|
|
|
306
311
|
hr[class*='s-']:not(.default) {
|
|
307
|
-
background-color: transparent
|
|
312
|
+
background-color: transparent;
|
|
308
313
|
margin: 0;
|
|
309
314
|
border: 0;
|
|
310
315
|
}
|
|
@@ -410,12 +415,14 @@ textarea {
|
|
|
410
415
|
}
|
|
411
416
|
}
|
|
412
417
|
|
|
413
|
-
ul
|
|
418
|
+
ul,
|
|
419
|
+
menu {
|
|
414
420
|
list-style: none;
|
|
415
421
|
padding-left: 0;
|
|
416
422
|
}
|
|
417
423
|
|
|
418
424
|
label {
|
|
425
|
+
margin: 0;
|
|
419
426
|
cursor: pointer;
|
|
420
427
|
|
|
421
428
|
&.radio,
|
|
@@ -424,7 +431,6 @@ label {
|
|
|
424
431
|
&-container {
|
|
425
432
|
display: flex;
|
|
426
433
|
align-items: center;
|
|
427
|
-
margin: 1rem 0;
|
|
428
434
|
|
|
429
435
|
.label > * {
|
|
430
436
|
margin-bottom: 0;
|
|
@@ -446,13 +452,14 @@ label {
|
|
|
446
452
|
.active,
|
|
447
453
|
input:not(:checked) ~ .label.off,
|
|
448
454
|
input:checked ~ .label:not(.off) {
|
|
449
|
-
|
|
455
|
+
// TODO: Check if parent background color is secondary
|
|
456
|
+
// color: var(--secondary);
|
|
450
457
|
font-weight: bold;
|
|
451
458
|
}
|
|
452
459
|
|
|
453
460
|
input[type='radio'],
|
|
454
461
|
input[type='checkbox'] {
|
|
455
|
-
margin: 0 0.5rem;
|
|
462
|
+
// margin: 0 0.5rem;
|
|
456
463
|
}
|
|
457
464
|
}
|
|
458
465
|
|
|
@@ -476,9 +483,6 @@ input {
|
|
|
476
483
|
-webkit-appearance: none;
|
|
477
484
|
appearance: none;
|
|
478
485
|
border: none;
|
|
479
|
-
width: 2rem;
|
|
480
|
-
min-width: 2rem;
|
|
481
|
-
height: 1rem;
|
|
482
486
|
padding: 0;
|
|
483
487
|
margin: 0;
|
|
484
488
|
border-radius: 0.5rem;
|
|
@@ -486,6 +490,12 @@ input {
|
|
|
486
490
|
color: unset;
|
|
487
491
|
opacity: 1;
|
|
488
492
|
|
|
493
|
+
&:not(.default) {
|
|
494
|
+
width: 2rem;
|
|
495
|
+
min-width: 2rem;
|
|
496
|
+
height: 1rem;
|
|
497
|
+
}
|
|
498
|
+
|
|
489
499
|
&::before {
|
|
490
500
|
content: '';
|
|
491
501
|
display: block;
|
|
@@ -555,11 +565,11 @@ input {
|
|
|
555
565
|
display: inline-block;
|
|
556
566
|
justify-content: center;
|
|
557
567
|
align-items: center;
|
|
558
|
-
width: 1rem
|
|
568
|
+
width: 1rem;
|
|
559
569
|
min-width: 1rem;
|
|
560
570
|
height: 1rem;
|
|
561
571
|
min-height: 1rem;
|
|
562
|
-
padding: 0.125rem
|
|
572
|
+
padding: 0.125rem;
|
|
563
573
|
margin: 0;
|
|
564
574
|
|
|
565
575
|
&::after {
|
|
@@ -615,19 +625,19 @@ input {
|
|
|
615
625
|
display: flex;
|
|
616
626
|
align-items: center;
|
|
617
627
|
justify-content: center;
|
|
618
|
-
border-radius: inherit
|
|
628
|
+
border-radius: inherit;
|
|
619
629
|
/* font-weight: bold; */
|
|
620
630
|
align-self: stretch;
|
|
621
631
|
min-width: unset;
|
|
622
632
|
|
|
623
633
|
&:not(:last-child) {
|
|
624
|
-
border-top-right-radius: 0
|
|
625
|
-
border-bottom-right-radius: 0
|
|
634
|
+
border-top-right-radius: 0;
|
|
635
|
+
border-bottom-right-radius: 0;
|
|
626
636
|
}
|
|
627
637
|
|
|
628
638
|
&:not(:first-child) {
|
|
629
|
-
border-top-left-radius: 0
|
|
630
|
-
border-bottom-left-radius: 0
|
|
639
|
+
border-top-left-radius: 0;
|
|
640
|
+
border-bottom-left-radius: 0;
|
|
631
641
|
}
|
|
632
642
|
}
|
|
633
643
|
|
|
@@ -786,8 +796,8 @@ option[disabled]:first-of-type {
|
|
|
786
796
|
}
|
|
787
797
|
|
|
788
798
|
.addon {
|
|
789
|
-
background-color: var(--danger)
|
|
790
|
-
color: var(--white)
|
|
799
|
+
background-color: var(--danger);
|
|
800
|
+
color: var(--white);
|
|
791
801
|
}
|
|
792
802
|
|
|
793
803
|
> {
|
|
@@ -801,7 +811,6 @@ option[disabled]:first-of-type {
|
|
|
801
811
|
&.has-warning {
|
|
802
812
|
&::after,
|
|
803
813
|
.hint {
|
|
804
|
-
/* font-weight: bold; */
|
|
805
814
|
color: var(--warning);
|
|
806
815
|
}
|
|
807
816
|
|
|
@@ -853,7 +862,6 @@ option[disabled]:first-of-type {
|
|
|
853
862
|
justify-content: space-between;
|
|
854
863
|
overflow: hidden;
|
|
855
864
|
gap: 0.125rem;
|
|
856
|
-
/* border-radius: 5rem; */
|
|
857
865
|
@include before-content;
|
|
858
866
|
|
|
859
867
|
&::before {
|
|
@@ -883,15 +891,11 @@ option[disabled]:first-of-type {
|
|
|
883
891
|
|
|
884
892
|
.tabs {
|
|
885
893
|
position: relative;
|
|
886
|
-
margin-bottom: 1rem;
|
|
887
894
|
display: flex;
|
|
888
895
|
overflow-x: scroll;
|
|
889
896
|
flex-wrap: nowrap;
|
|
890
|
-
/* align-items: center; */
|
|
891
897
|
width: 100%;
|
|
892
|
-
padding: 0.125rem 1.25rem;
|
|
893
898
|
gap: 0.5rem;
|
|
894
|
-
/* z-index: 1; */
|
|
895
899
|
|
|
896
900
|
> .tab {
|
|
897
901
|
display: inline-flex;
|
|
@@ -901,7 +905,7 @@ option[disabled]:first-of-type {
|
|
|
901
905
|
padding: 0.25rem;
|
|
902
906
|
border: none;
|
|
903
907
|
border-radius: 0.25rem;
|
|
904
|
-
|
|
908
|
+
gap: 0.25rem;
|
|
905
909
|
min-width: 5rem;
|
|
906
910
|
flex: 0 0 auto;
|
|
907
911
|
transition: background-color 0.25s;
|
|
@@ -929,44 +933,24 @@ option[disabled]:first-of-type {
|
|
|
929
933
|
@extend %no-scrollbar;
|
|
930
934
|
}
|
|
931
935
|
|
|
932
|
-
&.overlap {
|
|
933
|
-
@include after-content;
|
|
934
|
-
|
|
935
|
-
&::after {
|
|
936
|
-
background-color: inherit;
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
|
|
940
936
|
&.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
937
|
> .tab {
|
|
955
|
-
margin-bottom: 0;
|
|
956
938
|
border-bottom-left-radius: 0;
|
|
957
939
|
border-bottom-right-radius: 0;
|
|
958
940
|
padding: 0.25rem 0.5rem;
|
|
941
|
+
background-color: transparent;
|
|
959
942
|
|
|
943
|
+
&.active {
|
|
944
|
+
border-bottom: medium solid;
|
|
945
|
+
}
|
|
960
946
|
.label {
|
|
961
947
|
margin: 0.5rem;
|
|
962
948
|
}
|
|
963
949
|
}
|
|
964
950
|
}
|
|
965
|
-
}
|
|
966
951
|
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
.tab {
|
|
952
|
+
&.overlap {
|
|
953
|
+
> .tab {
|
|
970
954
|
position: relative;
|
|
971
955
|
|
|
972
956
|
&::before,
|
|
@@ -998,11 +982,11 @@ option[disabled]:first-of-type {
|
|
|
998
982
|
|
|
999
983
|
.border {
|
|
1000
984
|
&-dashed {
|
|
1001
|
-
border-style: dashed
|
|
985
|
+
border-style: dashed;
|
|
1002
986
|
}
|
|
1003
987
|
|
|
1004
988
|
&-current {
|
|
1005
|
-
border-color: currentColor
|
|
989
|
+
border-color: currentColor;
|
|
1006
990
|
}
|
|
1007
991
|
}
|
|
1008
992
|
|
|
@@ -1033,17 +1017,21 @@ option[disabled]:first-of-type {
|
|
|
1033
1017
|
border-radius: 0.5rem;
|
|
1034
1018
|
}
|
|
1035
1019
|
|
|
1020
|
+
button,
|
|
1036
1021
|
.button {
|
|
1037
1022
|
position: relative;
|
|
1038
|
-
|
|
1023
|
+
display: inline-flex;
|
|
1024
|
+
border-radius: var(--border-radius, 0.25rem);
|
|
1025
|
+
padding: 0.25rem;
|
|
1039
1026
|
font-size: 120%;
|
|
1040
|
-
/* font-weight: bold; */
|
|
1041
1027
|
min-width: 7.5rem;
|
|
1042
|
-
|
|
1043
|
-
gap: 0.5rem;
|
|
1028
|
+
gap: 0.25rem;
|
|
1044
1029
|
justify-content: center;
|
|
1045
1030
|
align-items: center;
|
|
1046
|
-
|
|
1031
|
+
overflow: hidden;
|
|
1032
|
+
text-overflow: ellipsis;
|
|
1033
|
+
white-space: nowrap;
|
|
1034
|
+
border: 1px;
|
|
1047
1035
|
|
|
1048
1036
|
&:focus {
|
|
1049
1037
|
outline: 1px solid hsl(var(--secondary-hs), calc(var(--secondary-l) + 50%));
|
|
@@ -1061,7 +1049,7 @@ option[disabled]:first-of-type {
|
|
|
1061
1049
|
width: 3rem;
|
|
1062
1050
|
height: 3rem;
|
|
1063
1051
|
display: inline-flex;
|
|
1064
|
-
min-width: unset
|
|
1052
|
+
min-width: unset;
|
|
1065
1053
|
padding: 0.5rem;
|
|
1066
1054
|
align-items: center;
|
|
1067
1055
|
justify-content: center;
|
|
@@ -1151,7 +1139,7 @@ table {
|
|
|
1151
1139
|
|
|
1152
1140
|
tr,
|
|
1153
1141
|
> .row {
|
|
1154
|
-
background-color: inherit
|
|
1142
|
+
background-color: inherit;
|
|
1155
1143
|
|
|
1156
1144
|
& + tr,
|
|
1157
1145
|
& + .row {
|
|
@@ -1472,7 +1460,6 @@ table {
|
|
|
1472
1460
|
}
|
|
1473
1461
|
}
|
|
1474
1462
|
|
|
1475
|
-
.title-strick,
|
|
1476
1463
|
.text-strick-line {
|
|
1477
1464
|
display: flex;
|
|
1478
1465
|
align-items: center;
|
|
@@ -1924,11 +1911,10 @@ section {
|
|
|
1924
1911
|
}
|
|
1925
1912
|
}
|
|
1926
1913
|
|
|
1927
|
-
/*
|
|
1914
|
+
/* Tables/Mini PC Below */
|
|
1928
1915
|
@media (max-width: 768px) {
|
|
1929
1916
|
.page-header,
|
|
1930
1917
|
.section-header {
|
|
1931
|
-
padding: 0;
|
|
1932
1918
|
flex-wrap: wrap;
|
|
1933
1919
|
|
|
1934
1920
|
input[type='search'] {
|
|
@@ -1949,14 +1935,6 @@ section {
|
|
|
1949
1935
|
}
|
|
1950
1936
|
}
|
|
1951
1937
|
|
|
1952
|
-
.tabs {
|
|
1953
|
-
padding: 1.25rem 0.125rem;
|
|
1954
|
-
|
|
1955
|
-
&.overlap {
|
|
1956
|
-
padding: 0;
|
|
1957
|
-
}
|
|
1958
|
-
}
|
|
1959
|
-
|
|
1960
1938
|
.table-container {
|
|
1961
1939
|
&:not(.is-sticky) .row.table-header {
|
|
1962
1940
|
display: none;
|
|
@@ -1990,7 +1968,7 @@ section {
|
|
|
1990
1968
|
}
|
|
1991
1969
|
}
|
|
1992
1970
|
|
|
1993
|
-
/* Below
|
|
1971
|
+
/* Mobile Below */
|
|
1994
1972
|
@media (max-width: 576px) {
|
|
1995
1973
|
.card {
|
|
1996
1974
|
width: 100%;
|