azion-theme 1.4.3 → 1.5.1
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/.github/workflows/release.yml +1 -1
- package/CHANGELOG.md +13 -0
- package/CODEOWNERS +1 -1
- package/default.js +1 -0
- package/package.json +3 -2
- package/src/azion/_custom.scss +1 -0
- package/src/azion/_extensions.scss +30 -0
- package/src/azion/_fonts.scss +156 -0
- package/src/azion/_variables.scss +369 -0
- package/src/azion/custom/_focus.scss +5 -0
- package/src/azion/custom/_scrollbehavior.scss +6 -0
- package/src/azion/custom/_selection.scss +4 -0
- package/src/azion/extended-components/_badge.scss +53 -0
- package/src/azion/extended-components/_breadcumb.scss +18 -0
- package/src/azion/extended-components/_button.scss +131 -0
- package/src/azion/extended-components/_calendar.scss +42 -0
- package/src/azion/extended-components/_checkbox.scss +58 -0
- package/src/azion/extended-components/_datatable.scss +92 -0
- package/src/azion/extended-components/_dialog.scss +45 -0
- package/src/azion/extended-components/_divider.scss +31 -0
- package/src/azion/extended-components/_dropdownitem.scss +12 -0
- package/src/azion/extended-components/_inlinemessage.scss +10 -0
- package/src/azion/extended-components/_inputnumber.scss +40 -0
- package/src/azion/extended-components/_inputpassword.scss +4 -0
- package/src/azion/extended-components/_inputswitch.scss +53 -0
- package/src/azion/extended-components/_listbox.scss +25 -0
- package/src/azion/extended-components/_markdown.scss +123 -0
- package/src/azion/extended-components/_menuitem.scss +22 -0
- package/src/azion/extended-components/_multiselect.scss +170 -0
- package/src/azion/extended-components/_overlaypanel.scss +18 -0
- package/src/azion/extended-components/_picklist.scss +25 -0
- package/src/azion/extended-components/_progressbar.scss +6 -0
- package/src/azion/extended-components/_radiobutton.scss +63 -0
- package/src/azion/extended-components/_selectbutton.scss +36 -0
- package/src/azion/extended-components/_sidebar.scss +27 -0
- package/src/azion/extended-components/_tabmenu.scss +21 -0
- package/src/azion/extended-components/_tabview.scss +41 -0
- package/src/azion/extended-components/_tag.scss +42 -0
- package/src/azion/extended-components/_toast.scss +67 -0
- package/src/azion/extended-components/_tooltip.scss +7 -0
- package/src/azion/theme-base/_colors.scss +18 -0
- package/src/azion/theme-base/_common.scss +75 -0
- package/src/azion/theme-base/_components.scss +103 -0
- package/src/azion/theme-base/_mixins.scss +250 -0
- package/src/azion/theme-base/components/button/_button.scss +564 -0
- package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
- package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
- package/src/azion/theme-base/components/data/_carousel.scss +37 -0
- package/src/azion/theme-base/components/data/_datatable.scss +347 -0
- package/src/azion/theme-base/components/data/_dataview.scss +47 -0
- package/src/azion/theme-base/components/data/_filter.scss +138 -0
- package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
- package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
- package/src/azion/theme-base/components/data/_paginator.scss +92 -0
- package/src/azion/theme-base/components/data/_picklist.scss +70 -0
- package/src/azion/theme-base/components/data/_timeline.scss +38 -0
- package/src/azion/theme-base/components/data/_tree.scss +90 -0
- package/src/azion/theme-base/components/data/_treetable.scss +251 -0
- package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
- package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
- package/src/azion/theme-base/components/input/_calendar.scss +251 -0
- package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
- package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
- package/src/azion/theme-base/components/input/_chips.scss +53 -0
- package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
- package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
- package/src/azion/theme-base/components/input/_editor.scss +122 -0
- package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
- package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
- package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
- package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
- package/src/azion/theme-base/components/input/_listbox.scss +89 -0
- package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
- package/src/azion/theme-base/components/input/_password.scss +33 -0
- package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
- package/src/azion/theme-base/components/input/_rating.scss +60 -0
- package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
- package/src/azion/theme-base/components/input/_slider.scss +49 -0
- package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
- package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
- package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
- package/src/azion/theme-base/components/menu/_dock.scss +95 -0
- package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
- package/src/azion/theme-base/components/menu/_menu.scss +33 -0
- package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
- package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
- package/src/azion/theme-base/components/menu/_steps.scss +56 -0
- package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
- package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
- package/src/azion/theme-base/components/messages/_message.scss +100 -0
- package/src/azion/theme-base/components/messages/_toast.scss +100 -0
- package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
- package/src/azion/theme-base/components/misc/_badge.scss +48 -0
- package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
- package/src/azion/theme-base/components/misc/_chip.scss +39 -0
- package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
- package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
- package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
- package/src/azion/theme-base/components/misc/_tag.scss +40 -0
- package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
- package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
- package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
- package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
- package/src/azion/theme-base/components/overlay/_overlaypanel.scss +64 -0
- package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
- package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
- package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
- package/src/azion/theme-base/components/panel/_card.scss +30 -0
- package/src/azion/theme-base/components/panel/_divider.scss +31 -0
- package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
- package/src/azion/theme-base/components/panel/_panel.scss +47 -0
- package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
- package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
- package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
- package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
- package/src/azion/theme.scss +9 -0
- package/src/azion/variables/_button.scss +438 -0
- package/src/azion/variables/_data.scss +346 -0
- package/src/azion/variables/_form.scss +570 -0
- package/src/azion/variables/_general.scss +149 -0
- package/src/azion/variables/_media.scss +231 -0
- package/src/azion/variables/_menu.scss +287 -0
- package/src/azion/variables/_message.scss +145 -0
- package/src/azion/variables/_misc.scss +143 -0
- package/src/azion/variables/_overlay.scss +67 -0
- package/src/azion/variables/_panel.scss +327 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// Custom MenuItem
|
|
2
|
+
.p-menu {
|
|
3
|
+
.p-menuitem {
|
|
4
|
+
.p-menuitem-content {
|
|
5
|
+
.p-menuitem-link {
|
|
6
|
+
height: 38px !important;
|
|
7
|
+
white-space: nowrap;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
text-overflow: ellipsis;
|
|
10
|
+
.p-menuitem-text {
|
|
11
|
+
font-size: 0.875rem !important;
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
text-overflow: ellipsis;
|
|
15
|
+
}
|
|
16
|
+
.p-menuitem-icon {
|
|
17
|
+
font-size: 0.875rem !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-multiselect {
|
|
4
|
+
font-size: 0.875rem !important;
|
|
5
|
+
background: $inputBg;
|
|
6
|
+
border: $inputBorder;
|
|
7
|
+
transition: $formElementTransition;
|
|
8
|
+
border-radius: $borderRadius;
|
|
9
|
+
|
|
10
|
+
&:not(.p-disabled):hover {
|
|
11
|
+
border-color: $inputHoverBorderColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&:not(.p-disabled).p-focus {
|
|
15
|
+
@include focused-input();
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.p-multiselect-label {
|
|
19
|
+
padding: $inputPadding;
|
|
20
|
+
transition: $formElementTransition;
|
|
21
|
+
|
|
22
|
+
&.p-placeholder {
|
|
23
|
+
color: $inputPlaceholderTextColor;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.p-multiselect-chip {
|
|
28
|
+
.p-multiselect-token {
|
|
29
|
+
font-size: 0.875rem !important;
|
|
30
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
31
|
+
margin-right: $inlineSpacing;
|
|
32
|
+
background: $chipBg;
|
|
33
|
+
color: $chipTextColor;
|
|
34
|
+
border-radius: $chipBorderRadius;
|
|
35
|
+
|
|
36
|
+
.p-multiselect-token-icon {
|
|
37
|
+
margin-left: $inlineSpacing;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-multiselect-trigger {
|
|
43
|
+
background: transparent;
|
|
44
|
+
color: $inputIconColor;
|
|
45
|
+
width: $inputGroupAddOnMinWidth;
|
|
46
|
+
border-top-right-radius: $borderRadius;
|
|
47
|
+
border-bottom-right-radius: $borderRadius;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.p-invalid.p-component {
|
|
51
|
+
@include invalid-input();
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.p-inputwrapper-filled {
|
|
56
|
+
&.p-multiselect {
|
|
57
|
+
&.p-multiselect-chip {
|
|
58
|
+
.p-multiselect-label {
|
|
59
|
+
padding: math.div(nth($inputPadding, 1), 2) nth($inputPadding, 2);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.p-multiselect-panel {
|
|
66
|
+
background: $inputOverlayBg;
|
|
67
|
+
color: $inputListTextColor;
|
|
68
|
+
border: $inputOverlayBorder;
|
|
69
|
+
border-radius: $borderRadius;
|
|
70
|
+
box-shadow: $inputOverlayShadow;
|
|
71
|
+
|
|
72
|
+
.p-multiselect-header {
|
|
73
|
+
padding: $inputListHeaderPadding;
|
|
74
|
+
border-bottom: $inputListHeaderBorder;
|
|
75
|
+
color: $inputListHeaderTextColor;
|
|
76
|
+
background: $inputOverlayHeaderBg;
|
|
77
|
+
margin: $inputListHeaderMargin;
|
|
78
|
+
border-top-right-radius: $borderRadius;
|
|
79
|
+
border-top-left-radius: $borderRadius;
|
|
80
|
+
|
|
81
|
+
.p-multiselect-filter-container {
|
|
82
|
+
.p-inputtext {
|
|
83
|
+
padding-right: nth($inputPadding, 2) + $primeIconFontSize;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.p-multiselect-filter-icon {
|
|
87
|
+
right: nth($inputPadding, 2);
|
|
88
|
+
color: $inputIconColor;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.p-checkbox {
|
|
93
|
+
margin-right: $inlineSpacing;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.p-multiselect-close {
|
|
97
|
+
margin-left: $inlineSpacing;
|
|
98
|
+
@include action-icon();
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.p-multiselect-items {
|
|
103
|
+
font-size: 0.875rem !important;
|
|
104
|
+
padding: $inputListPadding;
|
|
105
|
+
|
|
106
|
+
.p-multiselect-item {
|
|
107
|
+
height: 2.375rem !important;
|
|
108
|
+
margin: $inputListItemMargin;
|
|
109
|
+
padding: $inputListItemPadding;
|
|
110
|
+
border: $inputListItemBorder;
|
|
111
|
+
color: $inputListItemTextColor;
|
|
112
|
+
background: $inputListItemBg;
|
|
113
|
+
transition: $listItemTransition;
|
|
114
|
+
border-radius: $inputListItemBorderRadius;
|
|
115
|
+
|
|
116
|
+
&.p-highlight {
|
|
117
|
+
color: $highlightTextColor;
|
|
118
|
+
background: $highlightBg;
|
|
119
|
+
|
|
120
|
+
&.p-focus {
|
|
121
|
+
background: $highlightFocusBg;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
&:not(.p-highlight):not(.p-disabled) {
|
|
126
|
+
&.p-focus {
|
|
127
|
+
color: $inputListItemTextFocusColor;
|
|
128
|
+
background: $inputListItemFocusBg;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&:hover {
|
|
132
|
+
color: $inputListItemTextHoverColor;
|
|
133
|
+
background: $inputListItemHoverBg;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.p-checkbox {
|
|
138
|
+
margin-right: $inlineSpacing;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.p-multiselect-item-group {
|
|
143
|
+
margin: $submenuHeaderMargin;
|
|
144
|
+
padding: $submenuHeaderPadding;
|
|
145
|
+
color: $submenuHeaderTextColor;
|
|
146
|
+
background: $submenuHeaderBg;
|
|
147
|
+
font-weight: $submenuHeaderFontWeight;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.p-multiselect-empty-message {
|
|
151
|
+
padding: $inputListItemPadding;
|
|
152
|
+
color: $inputListItemTextColor;
|
|
153
|
+
background: $inputListItemBg;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.p-input-filled {
|
|
159
|
+
.p-multiselect {
|
|
160
|
+
background: $inputFilledBg;
|
|
161
|
+
|
|
162
|
+
&:not(.p-disabled):hover {
|
|
163
|
+
background-color: $inputFilledHoverBg;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&:not(.p-disabled).p-focus {
|
|
167
|
+
background-color: $inputFilledFocusBg;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.p-overlaypanel .p-overlaypanel-close:enabled:hover {
|
|
2
|
+
background: none !important;
|
|
3
|
+
color: transparent;
|
|
4
|
+
}
|
|
5
|
+
.p-overlaypanel:after,
|
|
6
|
+
.p-overlaypanel:before {
|
|
7
|
+
content: none;
|
|
8
|
+
}
|
|
9
|
+
.p-overlaypanel.p-overlaypanel-flipped:after {
|
|
10
|
+
border-top-color: none !important;
|
|
11
|
+
}
|
|
12
|
+
.p-overlaypanel.p-overlaypanel-flipped:before {
|
|
13
|
+
border-top-color: none !important;
|
|
14
|
+
}
|
|
15
|
+
.p-overlaypanel {
|
|
16
|
+
margin-top: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Custom PickList
|
|
2
|
+
.p-picklist {
|
|
3
|
+
.p-picklist-buttons {
|
|
4
|
+
.p-button {
|
|
5
|
+
background-color: transparent;
|
|
6
|
+
transition: all 150ms;
|
|
7
|
+
border: 1px solid var(--surface-border);
|
|
8
|
+
color: $textSecondaryColor !important;
|
|
9
|
+
}
|
|
10
|
+
.p-button:hover {
|
|
11
|
+
background-color: var(--surface-hover) !important;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
.p-picklist-list {
|
|
15
|
+
.p-picklist-item {
|
|
16
|
+
padding: 0 0.5rem !important;
|
|
17
|
+
font-size: 0.875rem;
|
|
18
|
+
min-height: 2.375rem !important;
|
|
19
|
+
border-radius: $borderRadius;
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
// Custom Radio
|
|
2
|
+
.p-radiobutton {
|
|
3
|
+
.p-radiobutton-box {
|
|
4
|
+
border: 2px solid var(--surface-border) !important;
|
|
5
|
+
|
|
6
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
7
|
+
border-color: #f3652b !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&:not(.p-disabled).p-focus {
|
|
11
|
+
@include focused-input();
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.p-highlight {
|
|
15
|
+
border-color: #f3652b !important;
|
|
16
|
+
background: #f3652b !important;
|
|
17
|
+
|
|
18
|
+
&:not(.p-disabled):hover {
|
|
19
|
+
border-color: #f3652b !important;
|
|
20
|
+
background: #f3652b !important;
|
|
21
|
+
color: #f3652b !important;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.p-invalid > .p-radiobutton-box {
|
|
27
|
+
@include invalid-input();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&:focus-visible {
|
|
31
|
+
outline: 0 none;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.p-input-filled {
|
|
36
|
+
.p-radiobutton {
|
|
37
|
+
.p-radiobutton-box {
|
|
38
|
+
background-color: #f3652b !important;
|
|
39
|
+
|
|
40
|
+
&:not(.p-disabled):hover {
|
|
41
|
+
background-color: #f3652b !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.p-highlight {
|
|
45
|
+
background: #f3652b !important;
|
|
46
|
+
|
|
47
|
+
&:not(.p-disabled):hover {
|
|
48
|
+
background: #f3652b !important;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@if ($highlightBg == $radiobuttonActiveBg) {
|
|
56
|
+
.p-highlight {
|
|
57
|
+
.p-radiobutton {
|
|
58
|
+
.p-radiobutton-box {
|
|
59
|
+
border-color: #f3652b !important;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// Custom SelectButton
|
|
2
|
+
.p-selectbutton {
|
|
3
|
+
background: var(--surface-300) !important;
|
|
4
|
+
padding: 0.3rem;
|
|
5
|
+
border-radius: $borderRadius !important;
|
|
6
|
+
|
|
7
|
+
.p-button {
|
|
8
|
+
background: none !important;
|
|
9
|
+
border: none !important;
|
|
10
|
+
height: 1.7rem !important;
|
|
11
|
+
font-size: 0.875rem !important;
|
|
12
|
+
border-radius: 0.25rem !important;
|
|
13
|
+
color: var(--text-color-secondary) !important;
|
|
14
|
+
font-weight: 600 !important;
|
|
15
|
+
|
|
16
|
+
&:not(.p-disabled):not(.p-highlight):hover {
|
|
17
|
+
border-color: none !important;
|
|
18
|
+
color: var(--text-color) !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.p-highlight {
|
|
22
|
+
background: var(--surface-0) !important;
|
|
23
|
+
border-color: none !important;
|
|
24
|
+
font-weight: 600 !important;
|
|
25
|
+
border-radius: 0.25rem !important;
|
|
26
|
+
color: var(--text-color) !important;
|
|
27
|
+
|
|
28
|
+
&:hover {
|
|
29
|
+
background: var(--surface-0) !important;
|
|
30
|
+
border-color: none !important;
|
|
31
|
+
color: $toggleButtonTextActiveHoverColor !important;
|
|
32
|
+
color: var(--text-color) !important;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Custom Header Sidebar
|
|
2
|
+
.p-sidebar {
|
|
3
|
+
.p-sidebar-header {
|
|
4
|
+
justify-content: space-between;
|
|
5
|
+
font-size: 1.25rem !important;
|
|
6
|
+
height: 3.5rem !important;
|
|
7
|
+
font-weight: 500 !important;
|
|
8
|
+
padding-left: 32px !important;
|
|
9
|
+
padding-right: 32px !important;
|
|
10
|
+
border-bottom: 1px solid var(--surface-border) !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.p-sidebar-content {
|
|
14
|
+
padding: 2rem;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@media only screen and (max-width: 768px) {
|
|
19
|
+
.p-sidebar {
|
|
20
|
+
.p-sidebar-header {
|
|
21
|
+
padding: 0.75rem !important;
|
|
22
|
+
}
|
|
23
|
+
.p-sidebar-content {
|
|
24
|
+
padding: 0.75rem !important;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Custom TabMenu
|
|
2
|
+
.p-tabmenu {
|
|
3
|
+
.p-tabmenu-nav {
|
|
4
|
+
gap: 0.5rem !important;
|
|
5
|
+
|
|
6
|
+
.p-tabmenuitem {
|
|
7
|
+
.p-menuitem-link {
|
|
8
|
+
font-weight: 600 !important;
|
|
9
|
+
min-height: 2rem !important;
|
|
10
|
+
font-size: 0.875rem !important;
|
|
11
|
+
border-radius: $borderRadius !important;
|
|
12
|
+
}
|
|
13
|
+
&.p-highlight {
|
|
14
|
+
.p-menuitem-link {
|
|
15
|
+
color: var(--tab-menu-link) !important;
|
|
16
|
+
font-weight: 500 !important;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// Custom TabView
|
|
2
|
+
.p-tabview {
|
|
3
|
+
.p-tabview-nav {
|
|
4
|
+
gap: 0.5rem !important;
|
|
5
|
+
padding: 0 !important;
|
|
6
|
+
|
|
7
|
+
li {
|
|
8
|
+
.p-tabview-nav-link {
|
|
9
|
+
font-weight: 600 !important;
|
|
10
|
+
min-height: 2rem;
|
|
11
|
+
font-size: 0.875rem;
|
|
12
|
+
border-radius: $borderRadius;
|
|
13
|
+
}
|
|
14
|
+
&.p-highlight {
|
|
15
|
+
.p-tabview-nav-link {
|
|
16
|
+
color: #1e1e1e !important;
|
|
17
|
+
font-weight: 700 !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.p-tabview-nav-btn.p-link {
|
|
23
|
+
background-color: var(--surface-section) !important;
|
|
24
|
+
color: $textColor !important;
|
|
25
|
+
width: 2rem;
|
|
26
|
+
&:enabled:hover {
|
|
27
|
+
background: var(--surface-hover) !important;
|
|
28
|
+
color: $buttonBg;
|
|
29
|
+
transition: all 150ms;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.p-tabview-panels {
|
|
33
|
+
height: 100%;
|
|
34
|
+
background: transparent !important;
|
|
35
|
+
padding: 0 !important;
|
|
36
|
+
|
|
37
|
+
.p-tabview-panel {
|
|
38
|
+
height: 100%;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// Custom Tag
|
|
2
|
+
@use 'sass:math';
|
|
3
|
+
|
|
4
|
+
.p-tag {
|
|
5
|
+
background: #ff6c4729 !important;
|
|
6
|
+
color: #ff6c47 !important;
|
|
7
|
+
font-size: 0.75rem !important;
|
|
8
|
+
font-weight: 500 !important;
|
|
9
|
+
letter-spacing: 0.01rem;
|
|
10
|
+
padding: $tagPadding;
|
|
11
|
+
|
|
12
|
+
&.p-tag-success {
|
|
13
|
+
background-color: #16a34a33 !important;
|
|
14
|
+
color: #39e478 !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.p-tag-info {
|
|
18
|
+
background-color: var(--surface-section) !important;
|
|
19
|
+
color: $textColor !important;
|
|
20
|
+
box-shadow: 0px 0px 0px 1px var(--surface-border) !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.p-tag-warning {
|
|
24
|
+
background-color: #ffb64d33 !important;
|
|
25
|
+
color: #ffb64d !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-tag-danger {
|
|
29
|
+
background-color: #f53d3d33 !important;
|
|
30
|
+
color: #f53d3d !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.p-tag-icon {
|
|
34
|
+
margin-right: math.div($inlineSpacing, 2);
|
|
35
|
+
font-size: $badgeFontSize;
|
|
36
|
+
|
|
37
|
+
&.p-icon {
|
|
38
|
+
width: $badgeFontSize;
|
|
39
|
+
height: $badgeFontSize;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
// Custom TabView
|
|
2
|
+
.p-toast {
|
|
3
|
+
.p-toast-message {
|
|
4
|
+
.p-toast-message-content {
|
|
5
|
+
background: var(--surface-card) !important;
|
|
6
|
+
border-radius: $borderRadius !important;
|
|
7
|
+
.p-toast-message-text {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.p-toast-message-icon {
|
|
11
|
+
&.p-icon {
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-toast-summary {
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.p-toast-detail {
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.p-toast-icon-close {
|
|
23
|
+
border: 1px solid var(--surface-border) !important;
|
|
24
|
+
|
|
25
|
+
&:hover {
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&:focus-visible {
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.p-toast-message-info {
|
|
33
|
+
background: var(--surface-section) !important;
|
|
34
|
+
|
|
35
|
+
.p-toast-message-icon {
|
|
36
|
+
}
|
|
37
|
+
.p-toast-icon-close {
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&.p-toast-message-success {
|
|
42
|
+
background: var(--surface-section) !important;
|
|
43
|
+
|
|
44
|
+
.p-toast-message-icon {
|
|
45
|
+
}
|
|
46
|
+
.p-toast-icon-close {
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.p-toast-message-warn {
|
|
51
|
+
background: var(--surface-section) !important;
|
|
52
|
+
|
|
53
|
+
.p-toast-message-icon {
|
|
54
|
+
}
|
|
55
|
+
.p-toast-icon-close {
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.p-toast-message-error {
|
|
60
|
+
background: var(--surface-section) !important;
|
|
61
|
+
.p-toast-message-icon {
|
|
62
|
+
}
|
|
63
|
+
.p-toast-icon-close {
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
@if variable-exists(colors) {
|
|
3
|
+
@each $name, $color in $colors {
|
|
4
|
+
@for $i from 0 through 5 {
|
|
5
|
+
@if ($i == 0) {
|
|
6
|
+
--#{$name}-50:#{tint($color, (5 - $i) * 19%)};
|
|
7
|
+
}
|
|
8
|
+
@else {
|
|
9
|
+
--#{$name}-#{$i * 100}:#{tint($color, (5 - $i) * 19%)};
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@for $i from 1 through 4 {
|
|
14
|
+
--#{$name}-#{($i + 5) * 100}:#{shade($color, $i * 15%)};
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-component {
|
|
6
|
+
font-family: var(--font-family);
|
|
7
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
8
|
+
font-size: $fontSize;
|
|
9
|
+
font-weight: $fontWeight;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-component-overlay {
|
|
13
|
+
background-color: $maskBg;
|
|
14
|
+
transition-duration: $transitionDuration;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-disabled, .p-component:disabled {
|
|
18
|
+
opacity: $disabledOpacity;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-error {
|
|
22
|
+
color: $errorColor;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.p-text-secondary {
|
|
26
|
+
color: $textSecondaryColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.pi {
|
|
30
|
+
font-size: $primeIconFontSize;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.p-icon {
|
|
34
|
+
width: $primeIconFontSize;
|
|
35
|
+
height: $primeIconFontSize;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.p-link {
|
|
39
|
+
font-family: var(--font-family);
|
|
40
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
41
|
+
font-size: $fontSize;
|
|
42
|
+
border-radius: $borderRadius;
|
|
43
|
+
|
|
44
|
+
&:focus-visible {
|
|
45
|
+
@include focused();
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.p-component-overlay-enter {
|
|
50
|
+
animation: p-component-overlay-enter-animation 150ms forwards;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.p-component-overlay-leave {
|
|
54
|
+
animation: p-component-overlay-leave-animation 150ms forwards;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-component-overlay {
|
|
58
|
+
@keyframes p-component-overlay-enter-animation {
|
|
59
|
+
from {
|
|
60
|
+
background-color: transparent;
|
|
61
|
+
}
|
|
62
|
+
to {
|
|
63
|
+
background-color: var(--maskbg);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes p-component-overlay-leave-animation {
|
|
68
|
+
from {
|
|
69
|
+
background-color: var(--maskbg);
|
|
70
|
+
}
|
|
71
|
+
to {
|
|
72
|
+
background-color: transparent;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|