@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,143 @@
|
|
|
1
|
+
/// Padding of an inplace element
|
|
2
|
+
/// @group misc
|
|
3
|
+
$inplacePadding: $inputPadding;
|
|
4
|
+
|
|
5
|
+
/// Background of an inplace element in hover state
|
|
6
|
+
/// @group misc
|
|
7
|
+
$inplaceHoverBg: #e9ecef;
|
|
8
|
+
|
|
9
|
+
/// Text color of an inplace element in hover state
|
|
10
|
+
/// @group misc
|
|
11
|
+
$inplaceTextHoverColor: $textColor;
|
|
12
|
+
|
|
13
|
+
/// Background of a badge
|
|
14
|
+
/// @group misc
|
|
15
|
+
$badgeBg: var(--surface-section);
|
|
16
|
+
|
|
17
|
+
/// Text color of a badge
|
|
18
|
+
/// @group misc
|
|
19
|
+
$badgeTextColor: $textColor;
|
|
20
|
+
|
|
21
|
+
/// Minimum width of a badge
|
|
22
|
+
/// @group misc
|
|
23
|
+
$badgeMinWidth: 1.5rem;
|
|
24
|
+
|
|
25
|
+
/// Height of a badge
|
|
26
|
+
/// @group misc
|
|
27
|
+
$badgeHeight: 1.25rem;
|
|
28
|
+
|
|
29
|
+
/// Font weight of a badge
|
|
30
|
+
/// @group misc
|
|
31
|
+
$badgeFontWeight: 500;
|
|
32
|
+
|
|
33
|
+
/// Font size of a badge
|
|
34
|
+
/// @group misc
|
|
35
|
+
$badgeFontSize: 0.75rem;
|
|
36
|
+
|
|
37
|
+
/// Padding of a badge
|
|
38
|
+
/// @group misc
|
|
39
|
+
$tagPadding: 0.25rem 0.4rem;
|
|
40
|
+
|
|
41
|
+
/// Height of a progress bar
|
|
42
|
+
/// @group misc
|
|
43
|
+
$progressBarHeight: 1.5rem;
|
|
44
|
+
|
|
45
|
+
/// Border of a progress bar
|
|
46
|
+
/// @group misc
|
|
47
|
+
$progressBarBorder: 0 none;
|
|
48
|
+
|
|
49
|
+
/// Background of a progress bar
|
|
50
|
+
/// @group misc
|
|
51
|
+
$progressBarBg: var(--surface-600);
|
|
52
|
+
|
|
53
|
+
/// Background of a progress bar value
|
|
54
|
+
/// @group misc
|
|
55
|
+
$progressBarValueBg: var(--progress-bar-value-bg);
|
|
56
|
+
|
|
57
|
+
/// Text color of a progress bar value
|
|
58
|
+
/// @group misc
|
|
59
|
+
$progressBarValueTextColor: var(--primary-text-color);
|
|
60
|
+
|
|
61
|
+
/// Stroke color of a progress spinner
|
|
62
|
+
/// @group misc
|
|
63
|
+
$progressSpinnerStrokeColor: var(--progress-spinner-stroke-color);
|
|
64
|
+
|
|
65
|
+
/// First spinner color of a progress spinner
|
|
66
|
+
/// @group misc
|
|
67
|
+
$progressSpinnerColorOne: $errorMessageTextColor !default;
|
|
68
|
+
|
|
69
|
+
/// Second spinner color of a progress spinner
|
|
70
|
+
/// @group misc
|
|
71
|
+
$progressSpinnerColorTwo: $infoMessageTextColor !default;
|
|
72
|
+
|
|
73
|
+
/// Third spinner color of a progress spinner
|
|
74
|
+
/// @group misc
|
|
75
|
+
$progressSpinnerColorThree: $successMessageTextColor !default;
|
|
76
|
+
|
|
77
|
+
/// Fourth spinner color of a progress spinner
|
|
78
|
+
/// @group misc
|
|
79
|
+
$progressSpinnerColorFour: $warningMessageTextColor !default;
|
|
80
|
+
|
|
81
|
+
/// Background of an avatar
|
|
82
|
+
/// @group misc
|
|
83
|
+
$avatarBg: var(--avatar-bg);
|
|
84
|
+
|
|
85
|
+
/// Text color of an avatar
|
|
86
|
+
/// @group misc
|
|
87
|
+
$avatarTextColor: $textColor;
|
|
88
|
+
|
|
89
|
+
/// Background of a chip
|
|
90
|
+
/// @group misc
|
|
91
|
+
$chipBg: var(--chip-bg);
|
|
92
|
+
|
|
93
|
+
/// Text color of a chip
|
|
94
|
+
/// @group misc
|
|
95
|
+
$chipTextColor: $textColor;
|
|
96
|
+
|
|
97
|
+
/// Border radius of a chip
|
|
98
|
+
/// @group misc
|
|
99
|
+
$chipBorderRadius: $borderRadius;
|
|
100
|
+
|
|
101
|
+
/// Background of a chip in focus state
|
|
102
|
+
/// @group misc
|
|
103
|
+
$chipFocusBg: var(--chip-focus-bg);
|
|
104
|
+
|
|
105
|
+
/// Color of a chip in focus state
|
|
106
|
+
/// @group misc
|
|
107
|
+
$chipFocusTextColor: $textColor !default;
|
|
108
|
+
|
|
109
|
+
/// Background of a scrollTop
|
|
110
|
+
/// @group misc
|
|
111
|
+
$scrollTopBg: rgba(0, 0, 0, 0.7);
|
|
112
|
+
|
|
113
|
+
/// Background of a scrollTop in hover state
|
|
114
|
+
/// @group misc
|
|
115
|
+
$scrollTopHoverBg: rgba(0, 0, 0, 0.8);
|
|
116
|
+
|
|
117
|
+
/// Width of a scrollTop
|
|
118
|
+
/// @group misc
|
|
119
|
+
$scrollTopWidth: 3rem;
|
|
120
|
+
|
|
121
|
+
/// Height of a scrollTop
|
|
122
|
+
/// @group misc
|
|
123
|
+
$scrollTopHeight: 3rem;
|
|
124
|
+
|
|
125
|
+
/// Border radius of a scrollTop
|
|
126
|
+
/// @group misc
|
|
127
|
+
$scrollTopBorderRadius: 50%;
|
|
128
|
+
|
|
129
|
+
/// Font size of a scrollTop
|
|
130
|
+
/// @group misc
|
|
131
|
+
$scrollTopFontSize: 1.5rem;
|
|
132
|
+
|
|
133
|
+
/// Text color of a scrollTop
|
|
134
|
+
/// @group misc
|
|
135
|
+
$scrollTopTextColor: #f8f9fa;
|
|
136
|
+
|
|
137
|
+
/// Background of a skeleton
|
|
138
|
+
/// @group misc
|
|
139
|
+
$skeletonBg: var(--skeleton-bg);
|
|
140
|
+
|
|
141
|
+
/// Background of a skeleton animation
|
|
142
|
+
/// @group misc
|
|
143
|
+
$skeletonAnimationBg: var(--skeleton-animation-bg);
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/// Border of an overlay container element such as dialog or overlaypanel
|
|
2
|
+
/// @group overlay
|
|
3
|
+
$overlayContentBorder: 0 none;
|
|
4
|
+
|
|
5
|
+
/// Background of an overlay container element such as dialog or overlaypanel
|
|
6
|
+
/// @group overlay
|
|
7
|
+
$overlayContentBg: var(--overlay-content-bg);
|
|
8
|
+
|
|
9
|
+
/// Box shadow of an overlay container element such as dialog or overlaypanel
|
|
10
|
+
/// @group overlay
|
|
11
|
+
$overlayContainerShadow: var(--overlay-container-shadow);
|
|
12
|
+
|
|
13
|
+
/// Background of a dialog header
|
|
14
|
+
/// @group overlay
|
|
15
|
+
$dialogHeaderBg: var(--dialog-header-bg);
|
|
16
|
+
|
|
17
|
+
/// Border of a dialog header
|
|
18
|
+
/// @group overlay
|
|
19
|
+
$dialogHeaderBorder: 1px solid var(--surface-border);
|
|
20
|
+
|
|
21
|
+
/// Text color of a dialog header
|
|
22
|
+
/// @group overlay
|
|
23
|
+
$dialogHeaderTextColor: $panelHeaderTextColor;
|
|
24
|
+
|
|
25
|
+
/// Font weight of a dialog header
|
|
26
|
+
/// @group overlay
|
|
27
|
+
$dialogHeaderFontWeight: 500;
|
|
28
|
+
|
|
29
|
+
/// Font size of a dialog header
|
|
30
|
+
/// @group overlay
|
|
31
|
+
$dialogHeaderFontSize: 1.125rem;
|
|
32
|
+
|
|
33
|
+
/// Padding of a dialog header
|
|
34
|
+
/// @group overlay
|
|
35
|
+
$dialogHeaderPadding: 0 2rem;
|
|
36
|
+
|
|
37
|
+
/// Padding of a dialog content
|
|
38
|
+
/// @group overlay
|
|
39
|
+
$dialogContentPadding: 1.25rem 2rem;
|
|
40
|
+
|
|
41
|
+
/// Border of a dialog footer
|
|
42
|
+
/// @group overlay
|
|
43
|
+
$dialogFooterBorder: 1px solid var(--surface-border);
|
|
44
|
+
|
|
45
|
+
/// Padding of a dialog footer
|
|
46
|
+
/// @group overlay
|
|
47
|
+
$dialogFooterPadding: 0 2rem;
|
|
48
|
+
|
|
49
|
+
/// Padding of a confirmpopup content
|
|
50
|
+
/// @group overlay
|
|
51
|
+
$confirmPopupContentPadding: $panelContentPadding;
|
|
52
|
+
|
|
53
|
+
/// Padding of a confirmpopup footer
|
|
54
|
+
/// @group overlay
|
|
55
|
+
$confirmPopupFooterPadding: 0 1rem 1rem 1rem;
|
|
56
|
+
|
|
57
|
+
/// Background of a tooltip
|
|
58
|
+
/// @group overlay
|
|
59
|
+
$tooltipBg: $textColor;
|
|
60
|
+
|
|
61
|
+
/// Text color of a tooltip
|
|
62
|
+
/// @group overlay
|
|
63
|
+
$tooltipTextColor: var(--tooltip-text-color);
|
|
64
|
+
|
|
65
|
+
/// Padding of a tooltip
|
|
66
|
+
/// @group overlay
|
|
67
|
+
$tooltipPadding: $inputPadding;
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
/// Border color of a panel header
|
|
2
|
+
/// @group panel
|
|
3
|
+
$panelHeaderBorderColor: var(--surface-border);
|
|
4
|
+
|
|
5
|
+
/// Border of a panel header
|
|
6
|
+
/// @group panel
|
|
7
|
+
$panelHeaderBorder: 1px solid var(--surface-border);
|
|
8
|
+
|
|
9
|
+
/// Background of a panel header
|
|
10
|
+
/// @group panel
|
|
11
|
+
$panelHeaderBg: var(--surface-section);
|
|
12
|
+
|
|
13
|
+
/// Text color of a panel header
|
|
14
|
+
/// @group panel
|
|
15
|
+
$panelHeaderTextColor: $textColor;
|
|
16
|
+
|
|
17
|
+
/// Font weight of a panel header
|
|
18
|
+
/// @group panel
|
|
19
|
+
$panelHeaderFontWeight: 500;
|
|
20
|
+
|
|
21
|
+
/// Padding of a panel header
|
|
22
|
+
/// @group panel
|
|
23
|
+
$panelHeaderPadding: 1rem;
|
|
24
|
+
|
|
25
|
+
/// Font weight of a toggleable panel header
|
|
26
|
+
/// @group panel
|
|
27
|
+
$panelToggleableHeaderPadding: 0.5rem 1rem;
|
|
28
|
+
|
|
29
|
+
/// Background of a panel header in hover state e.g. toggleable state
|
|
30
|
+
/// @group panel
|
|
31
|
+
$panelHeaderHoverBg: var(--surface-hover);
|
|
32
|
+
|
|
33
|
+
/// Border color of a panel header in hover state e.g. toggleable state
|
|
34
|
+
/// @group panel
|
|
35
|
+
$panelHeaderHoverBorderColor: var(--surface-border);
|
|
36
|
+
|
|
37
|
+
/// Text color of a panel header in hover state e.g. toggleable state
|
|
38
|
+
/// @group panel
|
|
39
|
+
$panelHeaderTextHoverColor: $textColor;
|
|
40
|
+
|
|
41
|
+
/// Border color for the content section of a panel
|
|
42
|
+
/// @group panel
|
|
43
|
+
$panelContentBorderColor: var(--surface-border);
|
|
44
|
+
|
|
45
|
+
/// Border for the content section of a panel
|
|
46
|
+
/// @group panel
|
|
47
|
+
$panelContentBorder: 1px solid var(--surface-border);
|
|
48
|
+
|
|
49
|
+
/// Background for the content section of a panel
|
|
50
|
+
/// @group panel
|
|
51
|
+
$panelContentBg: var(--panel-content-bg);
|
|
52
|
+
|
|
53
|
+
/// Background for the striped row.
|
|
54
|
+
/// @group panel
|
|
55
|
+
$panelContentEvenRowBg: #e9ecef;
|
|
56
|
+
|
|
57
|
+
/// Text color for the content section of a panel
|
|
58
|
+
/// @group panel
|
|
59
|
+
$panelContentTextColor: $textColor;
|
|
60
|
+
|
|
61
|
+
/// Padding for the content section of a panel
|
|
62
|
+
/// @group panel
|
|
63
|
+
$panelContentPadding: 1.25rem;
|
|
64
|
+
|
|
65
|
+
/// Border for the footer section of a panel
|
|
66
|
+
/// @group panel
|
|
67
|
+
$panelFooterBorder: 1px solid var(--surface-border);
|
|
68
|
+
|
|
69
|
+
/// Background for the footer section of a panel
|
|
70
|
+
/// @group panel
|
|
71
|
+
$panelFooterBg: var(--surface-section);
|
|
72
|
+
|
|
73
|
+
/// Text color for the footer section of a panel
|
|
74
|
+
/// @group panel
|
|
75
|
+
$panelFooterTextColor: $textColor;
|
|
76
|
+
|
|
77
|
+
/// Padding for the footer section of a panel
|
|
78
|
+
/// @group panel
|
|
79
|
+
$panelFooterPadding: 0.5rem 1rem;
|
|
80
|
+
|
|
81
|
+
/// Spacing between to accordion panels
|
|
82
|
+
/// @group panel
|
|
83
|
+
$accordionSpacing: 0.5rem;
|
|
84
|
+
|
|
85
|
+
/// Border of an accordion panel header
|
|
86
|
+
/// @group panel
|
|
87
|
+
$accordionHeaderBorder: $panelHeaderBorder;
|
|
88
|
+
|
|
89
|
+
/// Background of an accordion panel header
|
|
90
|
+
/// @group panel
|
|
91
|
+
$accordionHeaderBg: $panelHeaderBg;
|
|
92
|
+
|
|
93
|
+
/// Text color of an accordion panel header
|
|
94
|
+
/// @group panel
|
|
95
|
+
$accordionHeaderTextColor: $panelHeaderTextColor;
|
|
96
|
+
|
|
97
|
+
/// Font weight of an accordion panel header
|
|
98
|
+
/// @group panel
|
|
99
|
+
$accordionHeaderFontWeight: $panelHeaderFontWeight;
|
|
100
|
+
|
|
101
|
+
/// Padding of an accordion panel header
|
|
102
|
+
/// @group panel
|
|
103
|
+
$accordionHeaderPadding: $panelHeaderPadding;
|
|
104
|
+
|
|
105
|
+
/// Background of an accordion panel header in hover state
|
|
106
|
+
/// @group panel
|
|
107
|
+
$accordionHeaderHoverBg: var(--surface-hover);
|
|
108
|
+
|
|
109
|
+
/// Border of an accordion panel header in hover state
|
|
110
|
+
/// @group panel
|
|
111
|
+
$accordionHeaderHoverBorderColor: var(--surface-border);
|
|
112
|
+
|
|
113
|
+
/// Text color of an accordion panel header in hover state
|
|
114
|
+
/// @group panel
|
|
115
|
+
$accordionHeaderTextHoverColor: $textColor;
|
|
116
|
+
|
|
117
|
+
/// Background of an accordion panel header in expanded state
|
|
118
|
+
/// @group panel
|
|
119
|
+
$accordionHeaderActiveBg: $panelHeaderBg;
|
|
120
|
+
|
|
121
|
+
/// Border of an accordion panel header in expanded state
|
|
122
|
+
/// @group panel
|
|
123
|
+
$accordionHeaderActiveBorderColor: var(--surface-border);
|
|
124
|
+
|
|
125
|
+
/// Text color of an accordion panel header in expanded state
|
|
126
|
+
/// @group panel
|
|
127
|
+
$accordionHeaderTextActiveColor: $textColor;
|
|
128
|
+
|
|
129
|
+
/// Hover background of an accordion panel header in expanded state
|
|
130
|
+
/// @group panel
|
|
131
|
+
$accordionHeaderActiveHoverBg: var(--surface-hover);
|
|
132
|
+
|
|
133
|
+
/// Hover border of an accordion panel header in expanded state
|
|
134
|
+
/// @group panel
|
|
135
|
+
$accordionHeaderActiveHoverBorderColor: var(--surface-border);
|
|
136
|
+
|
|
137
|
+
/// Text color of an accordion panel header in expanded state
|
|
138
|
+
/// @group panel
|
|
139
|
+
$accordionHeaderTextActiveHoverColor: $textColor;
|
|
140
|
+
|
|
141
|
+
/// Border for a content section of an accordion panel
|
|
142
|
+
/// @group panel
|
|
143
|
+
$accordionContentBorder: $panelContentBorder;
|
|
144
|
+
|
|
145
|
+
/// Background for a content section of an accordion panel
|
|
146
|
+
/// @group panel
|
|
147
|
+
$accordionContentBg: $panelContentBg;
|
|
148
|
+
|
|
149
|
+
/// Text color for a content section of an accordion panel
|
|
150
|
+
/// @group panel
|
|
151
|
+
$accordionContentTextColor: $panelContentTextColor;
|
|
152
|
+
|
|
153
|
+
/// Padding for a content section of an accordion panel
|
|
154
|
+
/// @group panel
|
|
155
|
+
$accordionContentPadding: $panelContentPadding;
|
|
156
|
+
|
|
157
|
+
/// Border for a parent element containing all the headers of a tabview
|
|
158
|
+
/// @group panel
|
|
159
|
+
$tabviewNavBorder: none;
|
|
160
|
+
|
|
161
|
+
/// Border width for a parent element containing all the headers of a tabview
|
|
162
|
+
/// @group panel
|
|
163
|
+
$tabviewNavBorderWidth: none;
|
|
164
|
+
|
|
165
|
+
/// Background for a parent element containing all the headers of a tabview
|
|
166
|
+
/// @group panel
|
|
167
|
+
$tabviewNavBg: none;
|
|
168
|
+
|
|
169
|
+
/// Spacing between tabview headers
|
|
170
|
+
/// @group panel
|
|
171
|
+
$tabviewHeaderSpacing: 0;
|
|
172
|
+
|
|
173
|
+
/// Border of a tabview header
|
|
174
|
+
/// @group panel
|
|
175
|
+
$tabviewHeaderBorder: none;
|
|
176
|
+
|
|
177
|
+
/// Border width of a tabview header
|
|
178
|
+
/// @group panel
|
|
179
|
+
$tabviewHeaderBorderWidth: none;
|
|
180
|
+
|
|
181
|
+
/// Border color of a tabview header
|
|
182
|
+
/// @group panel
|
|
183
|
+
$tabviewHeaderBorderColor: none;
|
|
184
|
+
|
|
185
|
+
/// Background of a tabview header
|
|
186
|
+
/// @group panel
|
|
187
|
+
$tabviewHeaderBg: none;
|
|
188
|
+
|
|
189
|
+
/// Text color of a tabview header
|
|
190
|
+
/// @group panel
|
|
191
|
+
$tabviewHeaderTextColor: $textSecondaryColor;
|
|
192
|
+
|
|
193
|
+
/// Font weight of a tabview header
|
|
194
|
+
/// @group panel
|
|
195
|
+
$tabviewHeaderFontWeight: 600;
|
|
196
|
+
|
|
197
|
+
/// Padding of a tabview header
|
|
198
|
+
/// @group panel
|
|
199
|
+
$tabviewHeaderPadding: 0.375px 0.75rem;
|
|
200
|
+
|
|
201
|
+
/// Margin of a tabview header
|
|
202
|
+
/// @group panel
|
|
203
|
+
$tabviewHeaderMargin: 0;
|
|
204
|
+
|
|
205
|
+
/// Background of a tabview header in hover state
|
|
206
|
+
/// @group panel
|
|
207
|
+
$tabviewHeaderHoverBg: var(--surface-hover);
|
|
208
|
+
|
|
209
|
+
/// Border of a tabview header in hover state
|
|
210
|
+
/// @group panel
|
|
211
|
+
$tabviewHeaderHoverBorderColor: none;
|
|
212
|
+
|
|
213
|
+
/// Text color of a tabview header in hover state
|
|
214
|
+
/// @group panel
|
|
215
|
+
$tabviewHeaderTextHoverColor: $textColor;
|
|
216
|
+
|
|
217
|
+
/// Background of a tabview header in selected state
|
|
218
|
+
/// @group panel
|
|
219
|
+
$tabviewHeaderActiveBg: var(--tabview-header-active-bg);
|
|
220
|
+
|
|
221
|
+
/// Border of a tabview header in selected state
|
|
222
|
+
/// @group panel
|
|
223
|
+
$tabviewHeaderActiveBorderColor: var(--primary-color);
|
|
224
|
+
|
|
225
|
+
/// Text color of a tabview header in selected state
|
|
226
|
+
/// @group panel
|
|
227
|
+
$tabviewHeaderTextActiveColor: var(--primary-text-color);
|
|
228
|
+
|
|
229
|
+
/// Border for content section of a tabview tab
|
|
230
|
+
/// @group panel
|
|
231
|
+
$tabviewContentBorder: 0 none;
|
|
232
|
+
|
|
233
|
+
/// Background for content section of a tabview tab
|
|
234
|
+
/// @group panel
|
|
235
|
+
$tabviewContentBg: $panelContentBg;
|
|
236
|
+
|
|
237
|
+
/// Text color for a content section of a tabview tab
|
|
238
|
+
/// @group panel
|
|
239
|
+
$tabviewContentTextColor: $panelContentTextColor;
|
|
240
|
+
|
|
241
|
+
/// Padding for a content section of a tabview tab
|
|
242
|
+
/// @group panel
|
|
243
|
+
$tabviewContentPadding: $panelContentPadding;
|
|
244
|
+
|
|
245
|
+
/// Background of a fieldset header in hover state
|
|
246
|
+
/// @group panel
|
|
247
|
+
$panelHeaderHoverBg: #e9ecef;
|
|
248
|
+
|
|
249
|
+
/// Border of a fieldset header in hover state
|
|
250
|
+
/// @group panel
|
|
251
|
+
$panelHeaderHoverBorderColor: var(--panel-header-hover-border-color);
|
|
252
|
+
|
|
253
|
+
/// Text color of a fieldset header in hover state
|
|
254
|
+
/// @group panel
|
|
255
|
+
$panelHeaderTextHoverColor: var(--panel-header-text-hover-color);
|
|
256
|
+
|
|
257
|
+
/// Border for a track bar of a scroll panel
|
|
258
|
+
/// @group panel
|
|
259
|
+
$scrollPanelTrackBorder: 0 none;
|
|
260
|
+
|
|
261
|
+
/// Background for a track bar of a scroll panel
|
|
262
|
+
/// @group panel
|
|
263
|
+
$scrollPanelTrackBg: #f8f9fa;
|
|
264
|
+
|
|
265
|
+
/// Padding of a card body
|
|
266
|
+
/// @group panel
|
|
267
|
+
$cardBodyPadding: none;
|
|
268
|
+
|
|
269
|
+
/// Font size of a card title
|
|
270
|
+
/// @group panel
|
|
271
|
+
$cardTitleFontSize: 1.5rem;
|
|
272
|
+
|
|
273
|
+
/// Font weight of a card title
|
|
274
|
+
/// @group panel
|
|
275
|
+
$cardTitleFontWeight: 700;
|
|
276
|
+
|
|
277
|
+
/// Font size of a card subtitle
|
|
278
|
+
/// @group panel
|
|
279
|
+
$cardSubTitleFontWeight: 700;
|
|
280
|
+
|
|
281
|
+
/// Text color of a card subtitle
|
|
282
|
+
/// @group panel
|
|
283
|
+
$cardSubTitleColor: $textSecondaryColor;
|
|
284
|
+
|
|
285
|
+
/// Padding of a card content
|
|
286
|
+
/// @group panel
|
|
287
|
+
$cardContentPadding: none;
|
|
288
|
+
|
|
289
|
+
/// Padding of a card footer
|
|
290
|
+
/// @group panel
|
|
291
|
+
$cardFooterPadding: 0 0 0 0;
|
|
292
|
+
|
|
293
|
+
/// Box shadow of a card
|
|
294
|
+
/// @group panel
|
|
295
|
+
$cardShadow: var(--card-shadow);
|
|
296
|
+
|
|
297
|
+
/// Margin of divider in horizontal layout
|
|
298
|
+
/// @group panel
|
|
299
|
+
$dividerHorizontalMargin: 0;
|
|
300
|
+
|
|
301
|
+
/// Padding of divider in horizontal layout
|
|
302
|
+
/// @group panel
|
|
303
|
+
$dividerHorizontalPadding: 0;
|
|
304
|
+
|
|
305
|
+
/// Margin of divider in vertical layout
|
|
306
|
+
/// @group panel
|
|
307
|
+
$dividerVerticalMargin: 0;
|
|
308
|
+
|
|
309
|
+
/// Padding of divider in vertical layout
|
|
310
|
+
/// @group panel
|
|
311
|
+
$dividerVerticalPadding: 0;
|
|
312
|
+
|
|
313
|
+
/// Border width of the divider
|
|
314
|
+
/// @group panel
|
|
315
|
+
$dividerSize: 1px;
|
|
316
|
+
|
|
317
|
+
/// Color of the divider border
|
|
318
|
+
/// @group panel
|
|
319
|
+
$dividerColor: var(--surface-border);
|
|
320
|
+
|
|
321
|
+
/// Background of the splitter gutter
|
|
322
|
+
/// @group panel
|
|
323
|
+
$splitterGutterBg: #f8f9fa;
|
|
324
|
+
|
|
325
|
+
/// Background of the splitter gutter handle
|
|
326
|
+
/// @group panel
|
|
327
|
+
$splitterGutterHandleBg: var(--splitter-gutter-handle-bg);
|