@vixcom/ui 1.0.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/.firebaserc +17 -0
- package/.github/workflows/deploy-prod.yml +26 -0
- package/.pnpm-debug.log +19 -0
- package/assets/img/favicon.png +0 -0
- package/assets/img/icon.png +0 -0
- package/css/animations.css +175 -0
- package/css/animations.css.map +1 -0
- package/css/app.css +1896 -0
- package/css/app.css.map +1 -0
- package/css/colors.css +5591 -0
- package/css/colors.css.map +1 -0
- package/css/external/bootstrap-grid.css +4997 -0
- package/css/external/bootstrap.css +10308 -0
- package/css/external/mdb.css +9444 -0
- package/css/external/owl-carousel.css +218 -0
- package/css/fonts.css +65 -0
- package/css/fonts.css.map +1 -0
- package/css/grid.css +6 -0
- package/css/grid.css.map +1 -0
- package/css/helper/owl.carousel.css +75 -0
- package/css/helper/owl.carousel.css.map +1 -0
- package/css/helper/primefaces.css +276 -0
- package/css/helper/primefaces.css.map +1 -0
- package/css/helper/primefaces.org.css.map +1 -0
- package/css/helper/tailwindcss.css +6 -0
- package/css/helper/tailwindcss.css.map +1 -0
- package/css/icons/external/bootstrap.icons.css +5502 -0
- package/css/icons/external/fontawesome.icons.css +6127 -0
- package/css/icons/external/material-design.icons.css +5728 -0
- package/css/icons/external/themify.icons.css +1428 -0
- package/css/index.css +23 -0
- package/css/index.css.map +1 -0
- package/css/menu.css +556 -0
- package/css/menu.css.map +1 -0
- package/css/polyfills.css +11 -0
- package/css/polyfills.css.map +1 -0
- package/css/sidebar.css.map +1 -0
- package/css/sizes.css +7457 -0
- package/css/sizes.css.map +1 -0
- package/css/variables.css +258 -0
- package/css/variables.css.map +1 -0
- package/firebase.json +55 -0
- package/fonts/MontessoriScript.ttf +0 -0
- package/fonts/Montserrat-Bold.ttf +0 -0
- package/fonts/Montserrat-Regular.ttf +0 -0
- package/fonts/NotoSans-Bold.ttf +0 -0
- package/fonts/Roboto-Bold.ttf +0 -0
- package/fonts/Roboto-Regular.ttf +0 -0
- package/fonts/bootstrap-icons.woff +0 -0
- package/fonts/fa-brands.woff +0 -0
- package/fonts/fa-regular.woff +0 -0
- package/fonts/fa-solid.woff +0 -0
- package/fonts/material-design-icons.ttf +0 -0
- package/http-server.sh +4 -0
- package/index.html +206 -0
- package/js/axios.min.js +3 -0
- package/js/bootstrap.min.js +7 -0
- package/js/jquery.min.js +4 -0
- package/js/lodash.min.js +139 -0
- package/js/mdb.min.js +15411 -0
- package/js/owl.carousel.min.js +7 -0
- package/js/sidebar.min.js +50 -0
- package/package.json +11 -0
- package/pages/error/index.html +32 -0
- package/pages/sidemenu/index.html +36 -0
- package/pages/tier-1/LICENSE +201 -0
- package/pages/tier-1/fonts/krub/Krub-Bold.ttf +0 -0
- package/pages/tier-1/fonts/krub/Krub-Light.ttf +0 -0
- package/pages/tier-1/fonts/krub/Krub-Regular.ttf +0 -0
- package/pages/tier-1/fonts/themify.woff +0 -0
- package/pages/tier-1/index.html +74 -0
- package/pages/tier-1/preview.png +0 -0
- package/pages/tier-1/scripts/jquery.min.js +4 -0
- package/pages/tier-1/scripts/sidebar.min.js +50 -0
- package/pages/tier-1/styles/bootstrap.css +9495 -0
- package/pages/tier-1/styles/color.css +28 -0
- package/pages/tier-1/styles/layout.css +33 -0
- package/pages/tier-1/styles/mdb.css +9657 -0
- package/pages/tier-1/styles/page.css +26 -0
- package/pages/tier-1/styles/sidebar.css +193 -0
- package/pages/tier-1/styles/themify.css +1428 -0
- package/pages/tier-2/LICENSE +201 -0
- package/pages/tier-2/fonts/krub/Krub-Bold.ttf +0 -0
- package/pages/tier-2/fonts/krub/Krub-Light.ttf +0 -0
- package/pages/tier-2/fonts/krub/Krub-Regular.ttf +0 -0
- package/pages/tier-2/fonts/themify.woff +0 -0
- package/pages/tier-2/index.html +65 -0
- package/pages/tier-2/preview.png +0 -0
- package/pages/tier-2/scripts/jquery.min.js +4 -0
- package/pages/tier-2/scripts/sidebar.min.js +50 -0
- package/pages/tier-2/styles/bootstrap.css +9495 -0
- package/pages/tier-2/styles/color.css +28 -0
- package/pages/tier-2/styles/layout.css +43 -0
- package/pages/tier-2/styles/mdb.css +9657 -0
- package/pages/tier-2/styles/page.css +26 -0
- package/pages/tier-2/styles/sidebar.css +193 -0
- package/pages/tier-2/styles/themify.css +1428 -0
- package/styles/_mixins.scss +309 -0
- package/styles/animations.scss +191 -0
- package/styles/app.scss +2020 -0
- package/styles/colors.scss +117 -0
- package/styles/fonts.scss +16 -0
- package/styles/grid.scss +4 -0
- package/styles/helper/owl.carousel.scss +92 -0
- package/styles/helper/primefaces.scss +364 -0
- package/styles/helper/tailwindcss.scss +4 -0
- package/styles/index.scss +25 -0
- package/styles/menu.scss +566 -0
- package/styles/polyfills.scss +9 -0
- package/styles/sizes.scss +191 -0
- package/styles/variables.scss +30 -0
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
@import 'mixins';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* HSL Darken = level - n; Lighten = level + n.
|
|
5
|
+
** Darken Color = hsl(var(--{color}-hs), calc(var(--{color}-l) - n%))
|
|
6
|
+
** Lighten Color = hsl(var(--{color}-hs), calc(var(--{color}-l) + n%))
|
|
7
|
+
* {color}-hs = The Hue and Saturation level of the color.
|
|
8
|
+
* {color}-l = Lightness level of the color.
|
|
9
|
+
* {color}-a = Alpha level of the color.
|
|
10
|
+
* {color}-c = The corresponding Text color of the color, if it is used as a background.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
@each $k,
|
|
14
|
+
$v in $app-colors-mapped {
|
|
15
|
+
// Texts
|
|
16
|
+
@include mapped-color-variant('.text-#{$k}', $k, $v);
|
|
17
|
+
@include mapped-neon-color-variant('.text-neon-#{$k}', $k, $v);
|
|
18
|
+
// Background
|
|
19
|
+
@include mapped-bg-color-variant('.bg-#{$k}', $k, $v);
|
|
20
|
+
@include mapped-g-color-variant('.bg-g-#{$k}', $k, $v);
|
|
21
|
+
@include mapped-tabs-variant('.tabs-#{$k}', $k, $v);
|
|
22
|
+
@include mapped-alert-variant('.alert-#{$k}', $k, $v);
|
|
23
|
+
@include mapped-outline-variant('.bg-outline-#{$k}', $k, $v);
|
|
24
|
+
// Buttons
|
|
25
|
+
@include mapped-bg-color-variant('.btn-#{$k}', $k, $v);
|
|
26
|
+
@include mapped-g-color-variant('.btn-g-#{$k}', $k, $v);
|
|
27
|
+
@include mapped-outline-variant('.btn-outline-#{$k}', $k, $v);
|
|
28
|
+
// Badges
|
|
29
|
+
@include mapped-bg-color-variant('.badge-#{$k}', $k, $v);
|
|
30
|
+
@include mapped-outline-variant('.badge-outline-#{$k}', $k, $v);
|
|
31
|
+
|
|
32
|
+
.border-#{$k} {
|
|
33
|
+
border-color: map-get($v, 'bg')
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@each $v in (0, 25, 50, 75, 100) {
|
|
38
|
+
.opacity-#{$v} {
|
|
39
|
+
opacity: $v/100;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
button,
|
|
44
|
+
input {
|
|
45
|
+
|
|
46
|
+
&.focus,
|
|
47
|
+
&:focus-within,
|
|
48
|
+
&:focus {
|
|
49
|
+
outline: none;
|
|
50
|
+
box-shadow: none !important
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.bg-transparent,
|
|
55
|
+
.btn-transparent,
|
|
56
|
+
.tabs-transparent,
|
|
57
|
+
.alert-transparent {
|
|
58
|
+
border: none;
|
|
59
|
+
background-color: transparent !important;
|
|
60
|
+
color: currentColor !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.bg-current,
|
|
64
|
+
.btn-current,
|
|
65
|
+
.tabs-current,
|
|
66
|
+
.alert-current {
|
|
67
|
+
border: none;
|
|
68
|
+
background-color: currentColor;
|
|
69
|
+
// color: currentColor !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.inactive {
|
|
73
|
+
color: #BCBCCB
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
.shadow- {
|
|
78
|
+
&1 {
|
|
79
|
+
&::before {
|
|
80
|
+
box-shadow: var(--black) 0 3px 9px -3px;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.shadow-inset {
|
|
86
|
+
&-1 {
|
|
87
|
+
&::before {
|
|
88
|
+
box-shadow: inset var(--black) 0 3px 9px -3px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
[class*=shadow-] {
|
|
94
|
+
position: relative;
|
|
95
|
+
z-index: 1;
|
|
96
|
+
|
|
97
|
+
&>* {
|
|
98
|
+
position: relative;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@include before-content;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
input,
|
|
105
|
+
input::placeholder,
|
|
106
|
+
input::-webkit-input-placeholder {
|
|
107
|
+
color: currentColor !important
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.text-unset,
|
|
111
|
+
.text-color-unset {
|
|
112
|
+
color: unset
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.text-current {
|
|
116
|
+
color: currentColor
|
|
117
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author Vixson
|
|
3
|
+
* @Description Font variables and Logics
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@for $n from 1 through 6 {
|
|
7
|
+
h#{$n},
|
|
8
|
+
.h#{$n},
|
|
9
|
+
.font-#{7 - $n} {
|
|
10
|
+
--heading-size: calc(
|
|
11
|
+
var(--heading-start) -
|
|
12
|
+
(#{$n - 1} * (var(--heading-start) - var(--heading-end)) / 5)
|
|
13
|
+
);
|
|
14
|
+
font-size: var(--heading-size);
|
|
15
|
+
}
|
|
16
|
+
}
|
package/styles/grid.scss
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Owl Carousel Library Patch
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/* .carousel.fullwidth .carousel-item {
|
|
6
|
+
width: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.owl-carousel.fullwidth .owl-stage {
|
|
10
|
+
padding-left: 0 !important;
|
|
11
|
+
padding-right: 0 !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.carousel .carousel-item {
|
|
15
|
+
margin-right: 1rem;
|
|
16
|
+
width: 90%;
|
|
17
|
+
} */
|
|
18
|
+
|
|
19
|
+
.owl-carousel.partical {
|
|
20
|
+
margin-left: -1.25rem;
|
|
21
|
+
margin-right: -1.25rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.owl-carousel.partical .owl-stage-outer {
|
|
25
|
+
min-width: 100vw;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.owl-carousel {
|
|
29
|
+
|
|
30
|
+
.owl-stage {
|
|
31
|
+
/* padding-left: 0 !important; */
|
|
32
|
+
display: flex;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.owl-item {
|
|
36
|
+
padding-left: 0.25rem;
|
|
37
|
+
// min-height: 6rem !important;
|
|
38
|
+
|
|
39
|
+
.flex-card {
|
|
40
|
+
border-radius: 0.75rem;
|
|
41
|
+
height: 100%;
|
|
42
|
+
border: none;
|
|
43
|
+
|
|
44
|
+
.bg-image {
|
|
45
|
+
// background-clip: border-box;
|
|
46
|
+
// background-image: attr(data-src './assets/bg/flex-card-bg.svg');
|
|
47
|
+
// background-size: cover;
|
|
48
|
+
// background-repeat: no-repeat;
|
|
49
|
+
object-fit: cover;
|
|
50
|
+
position: absolute;
|
|
51
|
+
display: block;
|
|
52
|
+
height: 100%;
|
|
53
|
+
width: 100%;
|
|
54
|
+
top: 0;
|
|
55
|
+
left: 0;
|
|
56
|
+
z-index: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.content {
|
|
60
|
+
align-self: stretch;
|
|
61
|
+
|
|
62
|
+
.title {
|
|
63
|
+
margin-bottom: 0.5rem;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.owl-dots {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-wrap: nowrap;
|
|
72
|
+
text-align: center;
|
|
73
|
+
|
|
74
|
+
.owl-dot {
|
|
75
|
+
height: 0.125rem;
|
|
76
|
+
width: 100%;
|
|
77
|
+
/* width: 2.5rem; */
|
|
78
|
+
margin-right: 0.25rem;
|
|
79
|
+
background-color: currentColor;
|
|
80
|
+
opacity: 0.125;
|
|
81
|
+
transition: all 0.75s;
|
|
82
|
+
|
|
83
|
+
&.active {
|
|
84
|
+
opacity: 1;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&+.owl-dot {
|
|
88
|
+
margin-left: 0.5rem;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
@import '../mixins';
|
|
2
|
+
|
|
3
|
+
.p-component {
|
|
4
|
+
font-size: 100%;
|
|
5
|
+
font-family: unset;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.p-steps {
|
|
9
|
+
.p-steps-item {
|
|
10
|
+
&.p-highlight .p-steps-number {
|
|
11
|
+
background-color: var(--secondary) !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p-steps-number {
|
|
15
|
+
background-color: var(--primary) !important;
|
|
16
|
+
color: var(--white) !important;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-tabview {
|
|
22
|
+
&.no-header .p-tabview-nav {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
& &-nav {
|
|
27
|
+
align-items: stretch;
|
|
28
|
+
flex-wrap: nowrap;
|
|
29
|
+
overflow-x: scroll;
|
|
30
|
+
border: none !important;
|
|
31
|
+
|
|
32
|
+
li {
|
|
33
|
+
min-width: 20%;
|
|
34
|
+
|
|
35
|
+
&.p-highlight {
|
|
36
|
+
min-width: 30%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-tabview-nav-link {
|
|
40
|
+
height: 100%;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.p-dialog-mask,
|
|
47
|
+
.p-component-overlay,
|
|
48
|
+
.p-dialog-mask.p-component-overlay {
|
|
49
|
+
z-index: 4;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-dialog {
|
|
53
|
+
min-width: 50%;
|
|
54
|
+
max-width: 95%;
|
|
55
|
+
max-height: 95%;
|
|
56
|
+
z-index: 1;
|
|
57
|
+
|
|
58
|
+
.p-confirm-dialog .p-confirm-dialog-icon {
|
|
59
|
+
font-size: 300%;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.p-dialog-header {
|
|
63
|
+
border-top-left-radius: inherit;
|
|
64
|
+
border-top-right-radius: inherit;
|
|
65
|
+
|
|
66
|
+
.p-dialog-header-close:hover {
|
|
67
|
+
color: var(--danger) !important;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.p-dialog-content {
|
|
72
|
+
padding: 0.25rem 1.5rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.p-dialog-footer {
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-wrap: wrap;
|
|
78
|
+
justify-content: flex-end;
|
|
79
|
+
padding: 1.5rem;
|
|
80
|
+
gap: 0.5rem;
|
|
81
|
+
|
|
82
|
+
button {
|
|
83
|
+
border: none;
|
|
84
|
+
padding: 0.5rem 1.25rem;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.btn {
|
|
88
|
+
margin: 0;
|
|
89
|
+
|
|
90
|
+
& + .btn {
|
|
91
|
+
margin-left: 0.5rem;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
> * {
|
|
96
|
+
margin-top: 1rem;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.p-overlaypanel {
|
|
102
|
+
display: flex;
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
max-width: 100%;
|
|
105
|
+
max-height: 100%;
|
|
106
|
+
z-index: 1 !important;
|
|
107
|
+
|
|
108
|
+
.p-overlaypanel-content {
|
|
109
|
+
display: flex;
|
|
110
|
+
flex-direction: column;
|
|
111
|
+
min-height: 100%;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.p-toast {
|
|
116
|
+
z-index: 5 !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.p-badge {
|
|
120
|
+
font-size: 0.75rem !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.input > .p-inputtext {
|
|
124
|
+
padding: 0;
|
|
125
|
+
color: unset;
|
|
126
|
+
font-size: unset;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.p-inputtext {
|
|
130
|
+
width: 100%;
|
|
131
|
+
|
|
132
|
+
&:enabled {
|
|
133
|
+
margin-bottom: 0;
|
|
134
|
+
|
|
135
|
+
:hover {
|
|
136
|
+
border-color: unset;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.p-dropdown {
|
|
142
|
+
border-color: currentColor;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
*:not(.p-paginator) > .p-dropdown {
|
|
146
|
+
width: 100%;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
p-chart {
|
|
150
|
+
width: 100% !important;
|
|
151
|
+
|
|
152
|
+
canvas {
|
|
153
|
+
width: 100% !important;
|
|
154
|
+
min-width: 100% !important;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.p-calendar {
|
|
159
|
+
/* width: 100%; */
|
|
160
|
+
|
|
161
|
+
.p-datepicker {
|
|
162
|
+
min-width: unset;
|
|
163
|
+
|
|
164
|
+
.p-datepicker-header {
|
|
165
|
+
.p-datepicker-month {
|
|
166
|
+
border: none;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&:not(.p-datepicker-inline) {
|
|
171
|
+
box-shadow: unset;
|
|
172
|
+
|
|
173
|
+
& > * {
|
|
174
|
+
position: relative;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&::before {
|
|
178
|
+
content: '';
|
|
179
|
+
display: block;
|
|
180
|
+
height: 100%;
|
|
181
|
+
width: 100%;
|
|
182
|
+
position: absolute;
|
|
183
|
+
box-shadow: var(--card-shadow);
|
|
184
|
+
border-radius: inherit;
|
|
185
|
+
top: 0;
|
|
186
|
+
left: 0;
|
|
187
|
+
z-index: 0;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
table td > span {
|
|
192
|
+
width: 2.25rem;
|
|
193
|
+
height: 2.25rem;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.p-datepicker-buttonbar {
|
|
197
|
+
padding: 0;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.p-panel {
|
|
203
|
+
> {
|
|
204
|
+
:first-child {
|
|
205
|
+
border-top-left-radius: inherit !important;
|
|
206
|
+
border-top-right-radius: inherit !important;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
:last-child {
|
|
210
|
+
border-bottom-left-radius: inherit !important;
|
|
211
|
+
border-bottom-right-radius: inherit !important;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
& + .p-panel {
|
|
216
|
+
margin-top: 1rem;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.p-accordion {
|
|
221
|
+
.p-accordion-header-link {
|
|
222
|
+
border-radius: inherit !important;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// &:not(.default) {
|
|
226
|
+
// .p-accordion-header-link {
|
|
227
|
+
// padding: 0.75rem;
|
|
228
|
+
// }
|
|
229
|
+
|
|
230
|
+
// .p-accordion-content {
|
|
231
|
+
// padding: 0;
|
|
232
|
+
// }
|
|
233
|
+
// }
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.p-carousel {
|
|
237
|
+
width: 100%;
|
|
238
|
+
|
|
239
|
+
.p-carousel-container {
|
|
240
|
+
position: relative;
|
|
241
|
+
|
|
242
|
+
.p-carousel-prev,
|
|
243
|
+
.p-carousel-next {
|
|
244
|
+
position: absolute;
|
|
245
|
+
box-shadow: var(--card-shadow);
|
|
246
|
+
z-index: 1;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.p-carousel-next {
|
|
250
|
+
right: 0;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.p-carousel-items-content {
|
|
255
|
+
/* padding: 1rem; */
|
|
256
|
+
position: relative;
|
|
257
|
+
z-index: 0;
|
|
258
|
+
|
|
259
|
+
.p-carousel-items-container {
|
|
260
|
+
gap: 0.5rem;
|
|
261
|
+
|
|
262
|
+
.p-carousel-item {
|
|
263
|
+
display: flex;
|
|
264
|
+
justify-content: center;
|
|
265
|
+
/* padding: 0 0.5rem; */
|
|
266
|
+
/* border: thin solid transparent; */
|
|
267
|
+
|
|
268
|
+
&:hover {
|
|
269
|
+
border-color: var(--primary);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.p-carousel-item-active:nth-of-type(2) {
|
|
275
|
+
/* padding: 0 0.125rem; */
|
|
276
|
+
// transform: scale(1.25);
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.p-carousel-indicators {
|
|
281
|
+
.p-carousel-indicator button {
|
|
282
|
+
border: none;
|
|
283
|
+
height: 0.25rem !important;
|
|
284
|
+
border-radius: 0.125rem !important;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.p-paginator {
|
|
290
|
+
&-left-content {
|
|
291
|
+
margin-right: none;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
&-right-content {
|
|
295
|
+
margin-left: none;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
@media (max-width: 575.98px) {
|
|
300
|
+
.p-dialog {
|
|
301
|
+
min-width: 95%;
|
|
302
|
+
|
|
303
|
+
.p-dialog-footer p-footer {
|
|
304
|
+
/* justify-content: center; */
|
|
305
|
+
/* flex-direction: column; */
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.p-toast {
|
|
310
|
+
width: auto !important;
|
|
311
|
+
left: 0.5rem !important;
|
|
312
|
+
right: 0.5rem !important;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.p-message {
|
|
317
|
+
.p-message-icon {
|
|
318
|
+
margin-right: 1rem;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.p-toast .p-toast-message {
|
|
323
|
+
.p-toast-icon-close {
|
|
324
|
+
min-width: 2rem;
|
|
325
|
+
border: none !important;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.p-selectbutton {
|
|
330
|
+
display: flex;
|
|
331
|
+
|
|
332
|
+
> .p-button {
|
|
333
|
+
width: 100%;
|
|
334
|
+
padding: 1rem;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.p-button {
|
|
339
|
+
font-size: 120%;
|
|
340
|
+
border-color: unset;
|
|
341
|
+
background-color: unset;
|
|
342
|
+
// background-color: var(--primary);
|
|
343
|
+
|
|
344
|
+
&:hover {
|
|
345
|
+
background-color: hsl(var(--primary-hs), calc(var(--primary-l) - 20%));
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.p-hidden-accessible {
|
|
350
|
+
display: none;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
// @each $color,
|
|
354
|
+
// $colorValue in $app-colors-mapped {
|
|
355
|
+
// .p-toast-message-#{$color} {
|
|
356
|
+
// background-color: var(--#{$color}) !important;
|
|
357
|
+
// color: var(--#{$color}-c) !important;
|
|
358
|
+
// }
|
|
359
|
+
|
|
360
|
+
// .p-badge-#{$color} {
|
|
361
|
+
// background-color: var(--#{$color}) !important;
|
|
362
|
+
// color: var(--#{$color}-c) !important;
|
|
363
|
+
// }
|
|
364
|
+
// }
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author: Vixson
|
|
3
|
+
* @Description: Unique and Very Responsive Admin Dashboard UI
|
|
4
|
+
*/
|
|
5
|
+
@import 'mixins';
|
|
6
|
+
// @import 'https://unpkg.com/bootstrap@latest/dist/css/bootstrap.min.css';
|
|
7
|
+
@import 'external/bootstrap.css';
|
|
8
|
+
@import 'variables.css';
|
|
9
|
+
@import 'app.css';
|
|
10
|
+
@import 'sizes.css';
|
|
11
|
+
@import 'colors.css';
|
|
12
|
+
@import 'animations.css';
|
|
13
|
+
@import 'polyfills.css';
|
|
14
|
+
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'AppTitle';
|
|
17
|
+
src: url('/fonts/NotoSans-Bold.ttf');
|
|
18
|
+
font-weight: bold;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@font-face {
|
|
22
|
+
font-family: 'AppContent';
|
|
23
|
+
src: url('/fonts/Roboto-Regular.ttf');
|
|
24
|
+
font-weight: normal;
|
|
25
|
+
}
|