@aziontech/theme 0.1.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/LICENSE +21 -0
- package/README.md +466 -0
- package/package.json +52 -0
- package/src/azion/_custom.scss +3 -0
- package/src/azion/_extensions.scss +37 -0
- package/src/azion/_fonts.scss +153 -0
- package/src/azion/_variables-widget.scss +400 -0
- package/src/azion/_variables.scss +407 -0
- package/src/azion/custom/_code.scss +11 -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/custom/_special-button.scss +57 -0
- package/src/azion/extended-components/_autocomplete.scss +13 -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 +134 -0
- package/src/azion/extended-components/_calendar.scss +310 -0
- package/src/azion/extended-components/_carousel.scss +9 -0
- package/src/azion/extended-components/_checkbox.scss +33 -0
- package/src/azion/extended-components/_datatable.scss +130 -0
- package/src/azion/extended-components/_dialog.scss +45 -0
- package/src/azion/extended-components/_divider.scss +37 -0
- package/src/azion/extended-components/_dropdown.scss +10 -0
- package/src/azion/extended-components/_dropdownitem.scss +13 -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 +35 -0
- package/src/azion/extended-components/_markdown.scss +135 -0
- package/src/azion/extended-components/_menuitem.scss +22 -0
- package/src/azion/extended-components/_multiselect.scss +167 -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 +28 -0
- package/src/azion/extended-components/_splitbutton.scss +22 -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 +47 -0
- package/src/azion/extended-components/_toast.scss +9 -0
- package/src/azion/extended-components/_tooltip.scss +7 -0
- package/src/azion/extended-components/_treeselect.scss +10 -0
- package/src/azion/extended-components/jsonform/_inputcheckbox.scss +41 -0
- package/src/azion/extended-components/jsonform/_inputtext.scss +26 -0
- package/src/azion/extended-components/jsonform/_label.scss +185 -0
- package/src/azion/extended-components/jsonform/_select.scss +34 -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 +567 -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 +38 -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 +40 -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-widget.scss +9 -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
- package/src/tokens/README.md +345 -0
- package/src/tokens/build/css-vars.js +41 -0
- package/src/tokens/build/preset.js +69 -0
- package/src/tokens/build/refs.js +7 -0
- package/src/tokens/build/resolve.js +102 -0
- package/src/tokens/build/tailwind-helper.js +12 -0
- package/src/tokens/build/tailwind-plugin.js +175 -0
- package/src/tokens/colors-brand.js +24 -0
- package/src/tokens/index.js +16 -0
- package/src/tokens/primitives/brand.js +69 -0
- package/src/tokens/primitives/colors.js +133 -0
- package/src/tokens/semantic/backgrounds.js +48 -0
- package/src/tokens/semantic/borders.js +46 -0
- package/src/tokens/semantic/text.js +78 -0
|
@@ -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(--highlight-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: var(--highlight-tabview-nav-link) !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,47 @@
|
|
|
1
|
+
// Custom Tag
|
|
2
|
+
@use "sass:math";
|
|
3
|
+
|
|
4
|
+
.p-tag {
|
|
5
|
+
background: var(--p-tag-background) !important;
|
|
6
|
+
color: var(--p-tag-color) !important;
|
|
7
|
+
font-size: 0.75rem !important;
|
|
8
|
+
font-weight: 500 !important;
|
|
9
|
+
letter-spacing: 0.01rem;
|
|
10
|
+
padding: $tagPadding;
|
|
11
|
+
|
|
12
|
+
.p-tag-icon {
|
|
13
|
+
margin-right: math.div($inlineSpacing, 2);
|
|
14
|
+
font-size: $badgeFontSize;
|
|
15
|
+
|
|
16
|
+
&.p-icon {
|
|
17
|
+
width: $badgeFontSize;
|
|
18
|
+
height: $badgeFontSize;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.p-tag-info {
|
|
23
|
+
background-color: var(--surface-section) !important;
|
|
24
|
+
color: $textColor !important;
|
|
25
|
+
box-shadow: 0px 0px 0px 1px var(--surface-border) !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-tag-success {
|
|
29
|
+
background-color: var(--p-tag-success-background) !important;
|
|
30
|
+
color: var(--p-tag-success-color) !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&.p-tag-warning {
|
|
34
|
+
background-color: var(--p-tag-warning-background) !important;
|
|
35
|
+
color: var(--p-tag-warning-color) !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.p-tag-danger {
|
|
39
|
+
background-color: var(--p-tag-danger-background) !important;
|
|
40
|
+
color: var(--p-tag-danger-color) !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.tag-close {
|
|
44
|
+
background-color: var(--p-tag-close-background) !important;
|
|
45
|
+
color: var(--p-tag-close-color) !important;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.azion-json-form {
|
|
2
|
+
.wrapper {
|
|
3
|
+
input.input[type="checkbox"] {
|
|
4
|
+
min-width: 20px !important;
|
|
5
|
+
max-width: 20px !important;
|
|
6
|
+
font-family: var(--font-family);
|
|
7
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
8
|
+
font-size: $inputTextFontSize;
|
|
9
|
+
color: $inputTextColor;
|
|
10
|
+
background: $inputBg;
|
|
11
|
+
padding: 9px;
|
|
12
|
+
border: $inputBorder;
|
|
13
|
+
transition: $formElementTransition;
|
|
14
|
+
appearance: none;
|
|
15
|
+
border-radius: $borderRadius;
|
|
16
|
+
position: relative !important;
|
|
17
|
+
|
|
18
|
+
&:enabled:hover {
|
|
19
|
+
border-color: $inputHoverBorderColor;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:enabled:focus {
|
|
23
|
+
@include focused-input();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:checked {
|
|
27
|
+
background-color: $inputHoverBorderColor;
|
|
28
|
+
|
|
29
|
+
&::before {
|
|
30
|
+
font-family: "primeicons";
|
|
31
|
+
content: "\f1f1";
|
|
32
|
+
display: block;
|
|
33
|
+
position: absolute;
|
|
34
|
+
top: -1px;
|
|
35
|
+
left: 2px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.azion-json-form {
|
|
2
|
+
.wrapper {
|
|
3
|
+
.input {
|
|
4
|
+
min-width: 100%;
|
|
5
|
+
max-width: 320px;
|
|
6
|
+
font-family: var(--font-family);
|
|
7
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
8
|
+
font-size: $inputTextFontSize;
|
|
9
|
+
color: $inputTextColor;
|
|
10
|
+
background: $inputBg;
|
|
11
|
+
padding: $inputPadding;
|
|
12
|
+
border: $inputBorder;
|
|
13
|
+
transition: $formElementTransition;
|
|
14
|
+
appearance: none;
|
|
15
|
+
border-radius: $borderRadius;
|
|
16
|
+
|
|
17
|
+
&:enabled:hover {
|
|
18
|
+
border-color: $inputHoverBorderColor;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&:enabled:focus {
|
|
22
|
+
@include focused-input();
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
.azion-json-form {
|
|
2
|
+
.control {
|
|
3
|
+
margin-bottom: 1rem;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
gap: .5rem;
|
|
7
|
+
|
|
8
|
+
.wrapper:has(+ .error) .input {
|
|
9
|
+
border: 1px solid var(--error-color) !important;
|
|
10
|
+
border-color: var(--error-color) !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.error {
|
|
14
|
+
font-size: 0.75rem !important;
|
|
15
|
+
line-height: 1.25 !important;
|
|
16
|
+
font-weight: 400 !important;
|
|
17
|
+
color: var(--error-color) !important;
|
|
18
|
+
min-height: 20px !important;
|
|
19
|
+
|
|
20
|
+
&::first-letter {
|
|
21
|
+
text-transform: uppercase;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.label {
|
|
26
|
+
font-size: 1rem !important;
|
|
27
|
+
line-height: 1.25rem !important;
|
|
28
|
+
font-weight: 500 !important;
|
|
29
|
+
|
|
30
|
+
&::first-letter {
|
|
31
|
+
text-transform: uppercase;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.asterisk {
|
|
35
|
+
color: #f57c00;
|
|
36
|
+
font-size: 0.875rem !important;
|
|
37
|
+
line-height: 1.25rem !important;
|
|
38
|
+
display: inline-block;
|
|
39
|
+
position: relative;
|
|
40
|
+
|
|
41
|
+
&:after {
|
|
42
|
+
content: "(Required)";
|
|
43
|
+
color: var(--text-color-secondary) !important;
|
|
44
|
+
font-size: 0.625rem !important;
|
|
45
|
+
line-height: 1.25rem !important;
|
|
46
|
+
display: inline-block;
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 0;
|
|
49
|
+
left: 100%;
|
|
50
|
+
margin-left: 0.2rem;
|
|
51
|
+
font-weight: 500;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.description {
|
|
57
|
+
min-height: 20px !important;
|
|
58
|
+
line-height: 1.25rem !important;
|
|
59
|
+
font-size: 0.75rem !important;
|
|
60
|
+
font-weight: 400 !important;
|
|
61
|
+
color: var(--text-color-secondary) !important;
|
|
62
|
+
|
|
63
|
+
&::first-letter {
|
|
64
|
+
text-transform: uppercase;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.array-list {
|
|
70
|
+
max-width: 320px;
|
|
71
|
+
margin-top: 2rem !important;
|
|
72
|
+
display: block !important;
|
|
73
|
+
|
|
74
|
+
.array-list-legend {
|
|
75
|
+
width: 100%;
|
|
76
|
+
line-height: 1.25rem !important;
|
|
77
|
+
font-size: 0.75rem !important;
|
|
78
|
+
font-weight: 400 !important;
|
|
79
|
+
color: var(--text-color-secondary) !important;
|
|
80
|
+
display: flex !important;
|
|
81
|
+
gap: 0.5rem !important;
|
|
82
|
+
align-items: center !important;
|
|
83
|
+
border-top: 1px solid var(--surface-border) !important;
|
|
84
|
+
padding: 1rem 0 !important;
|
|
85
|
+
|
|
86
|
+
&::first-letter {
|
|
87
|
+
text-transform: uppercase;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
button {
|
|
91
|
+
cursor: pointer;
|
|
92
|
+
position: relative;
|
|
93
|
+
font-size: 0.875rem;
|
|
94
|
+
padding: 0.301rem 0.65625rem;
|
|
95
|
+
width: 32px;
|
|
96
|
+
height: 32px;
|
|
97
|
+
border: 1px solid var(--surface-border);
|
|
98
|
+
border-radius: 6px;
|
|
99
|
+
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
100
|
+
|
|
101
|
+
&.array-list-add {
|
|
102
|
+
color: transparent !important;
|
|
103
|
+
|
|
104
|
+
&:hover {
|
|
105
|
+
background-color: var(--surface-hover) !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&::before {
|
|
109
|
+
content: '\f16e';
|
|
110
|
+
display: block;
|
|
111
|
+
position: absolute;
|
|
112
|
+
font-family: "primeicons";
|
|
113
|
+
color: var(--text-color) !important;
|
|
114
|
+
left: 7px;
|
|
115
|
+
top: 6px;
|
|
116
|
+
width: 16px;
|
|
117
|
+
height: 16px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.array-list-item-wrapper {
|
|
124
|
+
.array-list-item {
|
|
125
|
+
.array-list-item-toolbar {
|
|
126
|
+
display: flex;
|
|
127
|
+
gap: 0.5rem;
|
|
128
|
+
align-items: center;
|
|
129
|
+
justify-content: flex-end;
|
|
130
|
+
max-width: 320px;
|
|
131
|
+
line-height: 1.25rem !important;
|
|
132
|
+
font-size: 0.75rem !important;
|
|
133
|
+
font-weight: 400 !important;
|
|
134
|
+
color: var(--text-color-secondary) !important;
|
|
135
|
+
margin-bottom: 1rem !important;
|
|
136
|
+
border-top: 1px solid var(--surface-border);
|
|
137
|
+
padding-top: 1rem !important;
|
|
138
|
+
|
|
139
|
+
.array-list-item-move-up,
|
|
140
|
+
.array-list-item-move-down,
|
|
141
|
+
.array-list-item-delete {
|
|
142
|
+
color: transparent !important;
|
|
143
|
+
position: relative;
|
|
144
|
+
cursor: pointer;
|
|
145
|
+
font-size: 0.875rem;
|
|
146
|
+
padding: 0.301rem 0.65625rem;
|
|
147
|
+
width: 32px;
|
|
148
|
+
height: 32px;
|
|
149
|
+
color: transparent !important;
|
|
150
|
+
border: 1px solid var(--surface-border);
|
|
151
|
+
border-radius: 6px;
|
|
152
|
+
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
|
153
|
+
|
|
154
|
+
&::before {
|
|
155
|
+
display: block;
|
|
156
|
+
position: absolute;
|
|
157
|
+
font-family: "primeicons";
|
|
158
|
+
color: var(--text-color) !important;
|
|
159
|
+
left: 7px;
|
|
160
|
+
top: 6px;
|
|
161
|
+
width: 16px;
|
|
162
|
+
height: 16px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
&:hover{
|
|
166
|
+
background-color: var(--surface-hover) !important;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.array-list-item-move-up::before {
|
|
171
|
+
content: '\f21c';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.array-list-item-move-down::before {
|
|
175
|
+
content: '\f223';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.array-list-item-delete::before {
|
|
179
|
+
content: '\f11e';
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.azion-json-form {
|
|
2
|
+
.wrapper {
|
|
3
|
+
.select::picker(select) {
|
|
4
|
+
background-color: #fff;
|
|
5
|
+
border: 1px solid #ccc;
|
|
6
|
+
border-radius: 5px;
|
|
7
|
+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.select {
|
|
11
|
+
min-width: 100%;
|
|
12
|
+
max-width: 320px;
|
|
13
|
+
height: 34px;
|
|
14
|
+
font-family: var(--font-family);
|
|
15
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
16
|
+
font-size: $inputTextFontSize;
|
|
17
|
+
color: $inputTextColor;
|
|
18
|
+
background: $inputBg;
|
|
19
|
+
padding: $inputPadding;
|
|
20
|
+
border: $inputBorder;
|
|
21
|
+
transition: $formElementTransition;
|
|
22
|
+
border-radius: $borderRadius;
|
|
23
|
+
position: relative !important;
|
|
24
|
+
|
|
25
|
+
&:enabled:hover {
|
|
26
|
+
border-color: $inputHoverBorderColor;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&:enabled:focus {
|
|
30
|
+
@include focused-input();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
@import '_mixins';
|
|
2
|
+
@import '_colors';
|
|
3
|
+
|
|
4
|
+
@import './components/input/_editor';
|
|
5
|
+
|
|
6
|
+
@layer primevue {
|
|
7
|
+
@import '_common';
|
|
8
|
+
|
|
9
|
+
//Input
|
|
10
|
+
@import './components/input/_autocomplete';
|
|
11
|
+
@import './components/input/_calendar';
|
|
12
|
+
@import './components/input/_cascadeselect';
|
|
13
|
+
@import './components/input/_checkbox';
|
|
14
|
+
@import './components/input/_chips';
|
|
15
|
+
@import './components/input/_colorpicker';
|
|
16
|
+
@import './components/input/_dropdown';
|
|
17
|
+
@import './components/input/_inputgroup';
|
|
18
|
+
@import './components/input/_inputnumber';
|
|
19
|
+
@import './components/input/_inputswitch';
|
|
20
|
+
@import './components/input/_inputtext';
|
|
21
|
+
@import './components/input/_listbox';
|
|
22
|
+
@import './components/input/_multiselect';
|
|
23
|
+
@import './components/input/_password';
|
|
24
|
+
@import './components/input/_radiobutton';
|
|
25
|
+
@import './components/input/_rating';
|
|
26
|
+
@import './components/input/_selectbutton';
|
|
27
|
+
@import './components/input/_slider';
|
|
28
|
+
@import './components/input/_treeselect';
|
|
29
|
+
@import './components/input/_togglebutton';
|
|
30
|
+
|
|
31
|
+
//Button
|
|
32
|
+
@import './components/button/_button';
|
|
33
|
+
@import './components/button/_speeddial';
|
|
34
|
+
@import './components/button/_splitbutton';
|
|
35
|
+
|
|
36
|
+
//Data
|
|
37
|
+
@import './components/data/_carousel';
|
|
38
|
+
@import './components/data/_datatable';
|
|
39
|
+
@import './components/data/_dataview';
|
|
40
|
+
@import './components/data/_filter';
|
|
41
|
+
@import './components/data/_orderlist';
|
|
42
|
+
@import './components/data/_organizationchart';
|
|
43
|
+
@import './components/data/_paginator';
|
|
44
|
+
@import './components/data/_picklist';
|
|
45
|
+
@import './components/data/_timeline';
|
|
46
|
+
@import './components/data/_tree';
|
|
47
|
+
@import './components/data/_treetable';
|
|
48
|
+
|
|
49
|
+
//Panel
|
|
50
|
+
@import './components/panel/_accordion';
|
|
51
|
+
@import './components/panel/_card';
|
|
52
|
+
@import './components/panel/_fieldset';
|
|
53
|
+
@import './components/panel/_divider';
|
|
54
|
+
@import './components/panel/_panel';
|
|
55
|
+
@import './components/panel/_scrollpanel';
|
|
56
|
+
@import './components/panel/_splitter';
|
|
57
|
+
@import './components/panel/_tabview';
|
|
58
|
+
@import './components/panel/_toolbar';
|
|
59
|
+
|
|
60
|
+
//Overlay
|
|
61
|
+
@import './components/overlay/_confirmpopup';
|
|
62
|
+
@import './components/overlay/_dialog';
|
|
63
|
+
@import './components/overlay/_overlaypanel';
|
|
64
|
+
@import './components/overlay/_sidebar';
|
|
65
|
+
@import './components/overlay/_tooltip';
|
|
66
|
+
|
|
67
|
+
//File
|
|
68
|
+
@import './components/file/_fileupload';
|
|
69
|
+
|
|
70
|
+
//Menu
|
|
71
|
+
@import './components/menu/_breadcrumb';
|
|
72
|
+
@import './components/menu/_contextmenu';
|
|
73
|
+
@import './components/menu/_dock';
|
|
74
|
+
@import './components/menu/_megamenu';
|
|
75
|
+
@import './components/menu/_menu';
|
|
76
|
+
@import './components/menu/_menubar';
|
|
77
|
+
@import './components/menu/_panelmenu';
|
|
78
|
+
@import './components/menu/_steps';
|
|
79
|
+
@import './components/menu/_tabmenu';
|
|
80
|
+
@import './components/menu/_tieredmenu';
|
|
81
|
+
|
|
82
|
+
//Messages
|
|
83
|
+
@import './components/messages/_inlinemessage';
|
|
84
|
+
@import './components/messages/_message';
|
|
85
|
+
@import './components/messages/toast';
|
|
86
|
+
|
|
87
|
+
//MultiMedia
|
|
88
|
+
@import './components/multimedia/_galleria';
|
|
89
|
+
@import './components/multimedia/_image';
|
|
90
|
+
|
|
91
|
+
//Misc
|
|
92
|
+
@import './components/misc/_avatar';
|
|
93
|
+
@import './components/misc/_badge';
|
|
94
|
+
@import './components/misc/_blockui';
|
|
95
|
+
@import './components/misc/_chip';
|
|
96
|
+
@import './components/misc/_inplace';
|
|
97
|
+
@import './components/misc/_progressbar';
|
|
98
|
+
@import './components/misc/_progressspinner';
|
|
99
|
+
@import './components/misc/_scrolltop';
|
|
100
|
+
@import './components/misc/_skeleton';
|
|
101
|
+
@import './components/misc/_tag';
|
|
102
|
+
@import './components/misc/_terminal';
|
|
103
|
+
}
|