@mediusinc/mng-commons-layout 5.0.0-rc.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/README.md +13 -0
- package/assets/fonts/poppins-v20-latin-500.woff +0 -0
- package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
- package/assets/images/effect-ondark.png +0 -0
- package/assets/images/effect-ondark.svg +38 -0
- package/assets/images/effect-ondark@2x.png +0 -0
- package/assets/images/effect-onlight.png +0 -0
- package/assets/images/effect-onlight.svg +38 -0
- package/assets/images/effect-onlight@2x.png +0 -0
- package/assets/images/pages/exception-ondark.png +0 -0
- package/assets/images/pages/exception-onlight.png +0 -0
- package/assets/images/pages/login-ondark.png +0 -0
- package/assets/images/pages/login-onlight.png +0 -0
- package/esm2022/index.mjs +23 -0
- package/esm2022/lib/components/breadcrumb.component.mjs +30 -0
- package/esm2022/lib/components/footer.component.mjs +28 -0
- package/esm2022/lib/components/main-layout.component.mjs +99 -0
- package/esm2022/lib/components/menu-item.component.mjs +275 -0
- package/esm2022/lib/components/menu.component.mjs +40 -0
- package/esm2022/lib/components/sidebar.component.mjs +61 -0
- package/esm2022/lib/components/topbar-user.component.mjs +39 -0
- package/esm2022/lib/components/topbar.component.mjs +57 -0
- package/esm2022/lib/components/version.component.mjs +63 -0
- package/esm2022/lib/helpers/route-builder.mjs +11 -0
- package/esm2022/lib/models/layout-state.model.mjs +2 -0
- package/esm2022/lib/models/menu.model.mjs +2 -0
- package/esm2022/lib/provide.mjs +23 -0
- package/esm2022/lib/services/layout-feature-config.token.mjs +3 -0
- package/esm2022/lib/services/main-layout.component.service.mjs +71 -0
- package/esm2022/lib/services/menu.service.mjs +120 -0
- package/esm2022/lib/services/version.service.mjs +45 -0
- package/esm2022/mediusinc-mng-commons-layout.mjs +5 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs +878 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs.map +1 -0
- package/index.d.ts +17 -0
- package/lib/components/breadcrumb.component.d.ts +10 -0
- package/lib/components/footer.component.d.ts +12 -0
- package/lib/components/main-layout.component.d.ts +27 -0
- package/lib/components/menu-item.component.d.ts +40 -0
- package/lib/components/menu.component.d.ts +14 -0
- package/lib/components/sidebar.component.d.ts +19 -0
- package/lib/components/topbar-user.component.d.ts +15 -0
- package/lib/components/topbar.component.d.ts +22 -0
- package/lib/components/version.component.d.ts +18 -0
- package/lib/helpers/route-builder.d.ts +6 -0
- package/lib/models/layout-state.model.d.ts +10 -0
- package/lib/models/menu.model.d.ts +4 -0
- package/lib/provide.d.ts +8 -0
- package/lib/services/layout-feature-config.token.d.ts +18 -0
- package/lib/services/main-layout.component.service.d.ts +17 -0
- package/lib/services/menu.service.d.ts +22 -0
- package/lib/services/version.service.d.ts +14 -0
- package/package.json +35 -0
- package/scss/commons-dark.scss +9 -0
- package/scss/commons-light.scss +9 -0
- package/scss/layout/_animation.scss +53 -0
- package/scss/layout/_breadcrumb.scss +97 -0
- package/scss/layout/_config.scss +42 -0
- package/scss/layout/_content.scss +3 -0
- package/scss/layout/_fonts.scss +40 -0
- package/scss/layout/_layout_dark.scss +12 -0
- package/scss/layout/_layout_light.scss +12 -0
- package/scss/layout/_main.scss +54 -0
- package/scss/layout/_profile.scss +10 -0
- package/scss/layout/_responsive.scss +131 -0
- package/scss/layout/_sidebar_drawer.scss +285 -0
- package/scss/layout/_sidebar_horizontal.scss +168 -0
- package/scss/layout/_sidebar_reveal.scss +203 -0
- package/scss/layout/_sidebar_slim.scss +157 -0
- package/scss/layout/_sidebar_slim_plus.scss +166 -0
- package/scss/layout/_sidebar_vertical.scss +178 -0
- package/scss/layout/_topbar.scss +174 -0
- package/scss/layout/_typography.scss +67 -0
- package/scss/layout/_utils.scss +33 -0
- package/scss/layout/layout.scss +24 -0
- package/scss/layout/mng/_mng_layout_footer.scss +39 -0
- package/scss/layout/mng/_mng_layout_menu.scss +10 -0
- package/scss/layout/mng/_mng_layout_styles.scss +3 -0
- package/scss/layout/mng/_mng_layout_topbar.scss +18 -0
- package/scss/layout/preloading.scss +84 -0
- package/scss/theme/extensions/_fullcalendar.scss +328 -0
- package/scss/theme/theme-base/_colors.scss +17 -0
- package/scss/theme/theme-base/_common.scss +76 -0
- package/scss/theme/theme-base/_components.scss +110 -0
- package/scss/theme/theme-base/_mixins.scss +337 -0
- package/scss/theme/theme-base/components/button/_button.scss +576 -0
- package/scss/theme/theme-base/components/button/_speeddial.scss +96 -0
- package/scss/theme/theme-base/components/button/_splitbutton.scss +348 -0
- package/scss/theme/theme-base/components/data/_carousel.scss +37 -0
- package/scss/theme/theme-base/components/data/_datatable.scss +338 -0
- package/scss/theme/theme-base/components/data/_dataview.scss +46 -0
- package/scss/theme/theme-base/components/data/_filter.scss +137 -0
- package/scss/theme/theme-base/components/data/_orderlist.scss +114 -0
- package/scss/theme/theme-base/components/data/_organizationchart.scss +50 -0
- package/scss/theme/theme-base/components/data/_paginator.scss +92 -0
- package/scss/theme/theme-base/components/data/_picklist.scss +114 -0
- package/scss/theme/theme-base/components/data/_timeline.scss +35 -0
- package/scss/theme/theme-base/components/data/_tree.scss +150 -0
- package/scss/theme/theme-base/components/data/_treetable.scss +255 -0
- package/scss/theme/theme-base/components/data/_virtualscroller.scss +28 -0
- package/scss/theme/theme-base/components/file/_fileupload.scss +64 -0
- package/scss/theme/theme-base/components/input/_autocomplete.scss +136 -0
- package/scss/theme/theme-base/components/input/_calendar.scss +267 -0
- package/scss/theme/theme-base/components/input/_cascadeselect.scss +135 -0
- package/scss/theme/theme-base/components/input/_checkbox.scss +94 -0
- package/scss/theme/theme-base/components/input/_chips.scss +65 -0
- package/scss/theme/theme-base/components/input/_colorpicker.scss +19 -0
- package/scss/theme/theme-base/components/input/_dropdown.scss +151 -0
- package/scss/theme/theme-base/components/input/_editor.scss +122 -0
- package/scss/theme/theme-base/components/input/_inputgroup.scss +74 -0
- package/scss/theme/theme-base/components/input/_inputmask.scss +16 -0
- package/scss/theme/theme-base/components/input/_inputnumber.scss +28 -0
- package/scss/theme/theme-base/components/input/_inputswitch.scss +60 -0
- package/scss/theme/theme-base/components/input/_inputtext.scss +100 -0
- package/scss/theme/theme-base/components/input/_listbox.scss +97 -0
- package/scss/theme/theme-base/components/input/_multiselect.scss +177 -0
- package/scss/theme/theme-base/components/input/_password.scss +52 -0
- package/scss/theme/theme-base/components/input/_radiobutton.scss +78 -0
- package/scss/theme/theme-base/components/input/_rating.scss +60 -0
- package/scss/theme/theme-base/components/input/_selectbutton.scss +50 -0
- package/scss/theme/theme-base/components/input/_slider.scss +75 -0
- package/scss/theme/theme-base/components/input/_togglebutton.scss +48 -0
- package/scss/theme/theme-base/components/input/_treeselect.scss +139 -0
- package/scss/theme/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/scss/theme/theme-base/components/menu/_contextmenu.scss +39 -0
- package/scss/theme/theme-base/components/menu/_dock.scss +95 -0
- package/scss/theme/theme-base/components/menu/_megamenu.scss +55 -0
- package/scss/theme/theme-base/components/menu/_menu.scss +37 -0
- package/scss/theme/theme-base/components/menu/_menubar.scss +140 -0
- package/scss/theme/theme-base/components/menu/_panelmenu.scss +153 -0
- package/scss/theme/theme-base/components/menu/_slidemenu.scss +59 -0
- package/scss/theme/theme-base/components/menu/_steps.scss +56 -0
- package/scss/theme/theme-base/components/menu/_tabmenu.scss +73 -0
- package/scss/theme/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/scss/theme/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/scss/theme/theme-base/components/messages/_message.scss +107 -0
- package/scss/theme/theme-base/components/messages/_toast.scss +99 -0
- package/scss/theme/theme-base/components/misc/_avatar.scss +30 -0
- package/scss/theme/theme-base/components/misc/_badge.scss +48 -0
- package/scss/theme/theme-base/components/misc/_blockui.scss +0 -0
- package/scss/theme/theme-base/components/misc/_chip.scss +42 -0
- package/scss/theme/theme-base/components/misc/_inplace.scss +16 -0
- package/scss/theme/theme-base/components/misc/_progressbar.scss +17 -0
- package/scss/theme/theme-base/components/misc/_scrolltop.scss +25 -0
- package/scss/theme/theme-base/components/misc/_skeleton.scss +8 -0
- package/scss/theme/theme-base/components/misc/_tag.scss +40 -0
- package/scss/theme/theme-base/components/misc/_terminal.scss +12 -0
- package/scss/theme/theme-base/components/multimedia/_galleria.scss +155 -0
- package/scss/theme/theme-base/components/multimedia/_image.scss +49 -0
- package/scss/theme/theme-base/components/overlay/_confirmpopup.scss +70 -0
- package/scss/theme/theme-base/components/overlay/_dialog.scss +69 -0
- package/scss/theme/theme-base/components/overlay/_overlaypanel.scss +62 -0
- package/scss/theme/theme-base/components/overlay/_sidebar.scss +27 -0
- package/scss/theme/theme-base/components/overlay/_tooltip.scss +33 -0
- package/scss/theme/theme-base/components/panel/_accordion.scss +119 -0
- package/scss/theme/theme-base/components/panel/_card.scss +30 -0
- package/scss/theme/theme-base/components/panel/_divider.scss +31 -0
- package/scss/theme/theme-base/components/panel/_fieldset.scss +47 -0
- package/scss/theme/theme-base/components/panel/_panel.scss +63 -0
- package/scss/theme/theme-base/components/panel/_scrollpanel.scss +6 -0
- package/scss/theme/theme-base/components/panel/_splitter.scss +19 -0
- package/scss/theme/theme-base/components/panel/_tabview.scss +82 -0
- package/scss/theme/theme-base/components/panel/_toolbar.scss +11 -0
- package/scss/theme/theme-base/mng/_mng_mixins.scss +69 -0
- package/scss/theme/theme-base/mng/_mng_theme_autocomplete.scss +34 -0
- package/scss/theme/theme-base/mng/_mng_theme_button.scss +68 -0
- package/scss/theme/theme-base/mng/_mng_theme_datatable.scss +153 -0
- package/scss/theme/theme-base/mng/_mng_theme_datepicker.scss +21 -0
- package/scss/theme/theme-base/mng/_mng_theme_dialog.scss +206 -0
- package/scss/theme/theme-base/mng/_mng_theme_dropdown.scss +32 -0
- package/scss/theme/theme-base/mng/_mng_theme_fileupload.scss +24 -0
- package/scss/theme/theme-base/mng/_mng_theme_forms.scss +66 -0
- package/scss/theme/theme-base/mng/_mng_theme_image.scss +27 -0
- package/scss/theme/theme-base/mng/_mng_theme_input.scss +31 -0
- package/scss/theme/theme-base/mng/_mng_theme_menu.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_theme_multiselect.scss +20 -0
- package/scss/theme/theme-base/mng/_mng_theme_styles.scss +17 -0
- package/scss/theme/theme-base/mng/_mng_theme_tableview.scss +97 -0
- package/scss/theme/theme-base/mng/_mng_theme_tabview.scss +14 -0
- package/scss/theme/theme-base/mng/_mng_theme_toast.scss +3 -0
- package/scss/theme/theme-base/mng/_mng_theme_toolbar.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_variables.scss +15 -0
- package/scss/theme/theme-dark/_extensions.scss +109 -0
- package/scss/theme/theme-dark/_variables.scss +940 -0
- package/scss/theme/theme-dark/blue/theme.scss +14 -0
- package/scss/theme/theme-light/_extensions.scss +109 -0
- package/scss/theme/theme-light/_variables.scss +936 -0
- package/scss/theme/theme-light/blue/theme.scss +14 -0
|
@@ -0,0 +1,940 @@
|
|
|
1
|
+
$blue: #2196f3 !default;
|
|
2
|
+
$green: #4caf50 !default;
|
|
3
|
+
$yellow: #fbc02d !default;
|
|
4
|
+
$cyan: #00bcd4 !default;
|
|
5
|
+
$pink: #e91e63 !default;
|
|
6
|
+
$indigo: #3f51b5 !default;
|
|
7
|
+
$teal: #009688 !default;
|
|
8
|
+
$orange: #f57c00 !default;
|
|
9
|
+
$bluegray: #607d8b !default;
|
|
10
|
+
$purple: #9c27b0 !default;
|
|
11
|
+
$red: #ff3d32 !default;
|
|
12
|
+
|
|
13
|
+
$colors: (
|
|
14
|
+
'blue': $blue,
|
|
15
|
+
'green': $green,
|
|
16
|
+
'yellow': $yellow,
|
|
17
|
+
'cyan': $cyan,
|
|
18
|
+
'pink': $pink,
|
|
19
|
+
'indigo': $indigo,
|
|
20
|
+
'teal': $teal,
|
|
21
|
+
'orange': $orange,
|
|
22
|
+
'bluegray': $bluegray,
|
|
23
|
+
'purple': $purple,
|
|
24
|
+
'red': $red,
|
|
25
|
+
'primary': $primaryColor
|
|
26
|
+
) !default;
|
|
27
|
+
|
|
28
|
+
//shades
|
|
29
|
+
$shade000: #ffffff !default; //text color
|
|
30
|
+
$shade100: #c8ccd8 !default; //text secondary color
|
|
31
|
+
$shade200: #868c9b !default; //text third color
|
|
32
|
+
$shade500: rgba(255, 255, 255, 0.05) !default; //Alpha-01
|
|
33
|
+
$shade600: rgba(255, 255, 255, 0.1) !default; //Alpha-02
|
|
34
|
+
$shade700: rgba(255, 255, 255, 0.15) !default; //Alpha-03
|
|
35
|
+
$shade800: rgba(255, 255, 255, 0.2) !default; //Alpha-04
|
|
36
|
+
$shade900: rgba(255, 255, 255, 0.25) !default; //Alpha-05
|
|
37
|
+
|
|
38
|
+
$solidSurfaceColor: #0a061a !default;
|
|
39
|
+
$hoverBg: rgba(255, 255, 255, 0.03) !default;
|
|
40
|
+
|
|
41
|
+
//global
|
|
42
|
+
$fontFamily: 'Inter var', sans-serif !default;
|
|
43
|
+
$fontSize: 1rem !default;
|
|
44
|
+
$fontWeight: normal !default;
|
|
45
|
+
$textColor: $shade000 !default;
|
|
46
|
+
$textSecondaryColor: $shade100 !default;
|
|
47
|
+
$borderRadius: 6px !default;
|
|
48
|
+
$transitionDuration: 0.2s !default;
|
|
49
|
+
$formElementTransition:
|
|
50
|
+
background-color $transitionDuration,
|
|
51
|
+
color $transitionDuration,
|
|
52
|
+
border-color $transitionDuration,
|
|
53
|
+
box-shadow $transitionDuration !default;
|
|
54
|
+
$actionIconTransition:
|
|
55
|
+
background-color $transitionDuration,
|
|
56
|
+
color $transitionDuration,
|
|
57
|
+
box-shadow $transitionDuration !default;
|
|
58
|
+
$listItemTransition: box-shadow $transitionDuration !default;
|
|
59
|
+
$primeIconFontSize: 1rem !default;
|
|
60
|
+
$divider: 1px solid $shade500 !default;
|
|
61
|
+
$inlineSpacing: 0.5rem !default; //spacing between inline elements
|
|
62
|
+
$disabledOpacity: 0.4 !default; //opacity of a disabled item
|
|
63
|
+
$maskBg: rgba(0, 0, 0, 0.2) !default; //modal mask bg color
|
|
64
|
+
$loadingIconFontSize: 2rem !default;
|
|
65
|
+
$errorColor: #fc6161 !default;
|
|
66
|
+
|
|
67
|
+
//selected state
|
|
68
|
+
$highlightBg: rgba($primaryColor, 0.16) !default;
|
|
69
|
+
$highlightTextColor: $primaryLightColor !default;
|
|
70
|
+
$highlightFocusBg: rgba($primaryColor, 0.24) !default;
|
|
71
|
+
|
|
72
|
+
//scale
|
|
73
|
+
$scaleSM: 0.875 !default;
|
|
74
|
+
$scaleLG: 1.25 !default;
|
|
75
|
+
|
|
76
|
+
//focus
|
|
77
|
+
$focusOutlineColor: $primaryColor !default;
|
|
78
|
+
$focusOutline: 0 none !default;
|
|
79
|
+
$focusOutlineOffset: 0 !default;
|
|
80
|
+
$focusShadow: 0 none !default;
|
|
81
|
+
|
|
82
|
+
//action icons
|
|
83
|
+
$actionIconWidth: 2rem !default;
|
|
84
|
+
$actionIconHeight: 2rem !default;
|
|
85
|
+
$actionIconBg: transparent !default;
|
|
86
|
+
$actionIconBorder: 0 none !default;
|
|
87
|
+
$actionIconColor: $shade100 !default;
|
|
88
|
+
$actionIconHoverBg: $shade500 !default;
|
|
89
|
+
$actionIconHoverBorderColor: transparent !default;
|
|
90
|
+
$actionIconHoverColor: $shade000 !default;
|
|
91
|
+
$actionIconBorderRadius: 50% !default;
|
|
92
|
+
|
|
93
|
+
//input field (e.g. inputtext, spinner, inputmask)
|
|
94
|
+
$inputPadding: 0.429rem 0.571rem !default;
|
|
95
|
+
$inputTextFontSize: 1rem !default;
|
|
96
|
+
$inputBg: $shade500 !default;
|
|
97
|
+
$inputTextColor: $shade000 !default;
|
|
98
|
+
$inputIconColor: $shade100 !default;
|
|
99
|
+
$inputBorder: 1px solid transparent !default;
|
|
100
|
+
$inputHoverBorderColor: transparent !default;
|
|
101
|
+
$inputFocusBorderColor: $primaryColor !default;
|
|
102
|
+
$inputErrorBorderColor: $errorColor !default;
|
|
103
|
+
$inputPlaceholderTextColor: $shade200 !default;
|
|
104
|
+
$inputFilledBg: $shade500 !default;
|
|
105
|
+
$inputFilledHoverBg: $inputFilledBg !default;
|
|
106
|
+
$inputFilledFocusBg: $inputFilledBg !default;
|
|
107
|
+
|
|
108
|
+
//input groups
|
|
109
|
+
$inputGroupBg: $shade800 !default;
|
|
110
|
+
$inputGroupTextColor: $shade100 !default;
|
|
111
|
+
$inputGroupAddOnMinWidth: 2.357rem !default;
|
|
112
|
+
|
|
113
|
+
//input lists (e.g. dropdown, autocomplete, multiselect, orderlist)
|
|
114
|
+
$inputListBg: $shade500 !default;
|
|
115
|
+
$inputListTextColor: $shade000 !default;
|
|
116
|
+
$inputListBorder: $inputBorder !default;
|
|
117
|
+
$inputListPadding: 0.286rem !default;
|
|
118
|
+
$inputListItemPadding: 0.429rem 0.286rem !default;
|
|
119
|
+
$inputListItemBg: transparent !default;
|
|
120
|
+
$inputListItemTextColor: $shade000 !default;
|
|
121
|
+
$inputListItemHoverBg: $shade500 !default;
|
|
122
|
+
$inputListItemTextHoverColor: $shade000 !default;
|
|
123
|
+
$inputListItemFocusBg: $shade600 !default;
|
|
124
|
+
$inputListItemTextFocusColor: $shade000 !default;
|
|
125
|
+
$inputListItemBorder: 0 none !default;
|
|
126
|
+
$inputListItemBorderRadius: 4px !default;
|
|
127
|
+
$inputListItemMargin: 0 !default;
|
|
128
|
+
$inputListItemFocusShadow: 0 none !default;
|
|
129
|
+
$inputListHeaderPadding: 0.429rem 0.286rem !default;
|
|
130
|
+
$inputListHeaderMargin: 0 !default;
|
|
131
|
+
$inputListHeaderBg: $shade500 !default;
|
|
132
|
+
$inputListHeaderTextColor: $shade000 !default;
|
|
133
|
+
$inputListHeaderBorder: 0 none !default;
|
|
134
|
+
|
|
135
|
+
//inputs with overlays (e.g. autocomplete, dropdown, multiselect)
|
|
136
|
+
$inputOverlayBg: $solidSurfaceColor !default;
|
|
137
|
+
$inputOverlayHeaderBg: $inputListHeaderBg !default;
|
|
138
|
+
$inputOverlayBorder: 0 none !default;
|
|
139
|
+
$inputOverlayShadow:
|
|
140
|
+
0 2px 4px -1px rgba(0, 0, 0, 0.2),
|
|
141
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
|
142
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
|
|
143
|
+
|
|
144
|
+
//password
|
|
145
|
+
$passwordPanelBg: $solidSurfaceColor !default;
|
|
146
|
+
$passwordMeterBg: $shade600 !default;
|
|
147
|
+
$passwordWeakBg: #eb9a9c !default;
|
|
148
|
+
$passwordMediumBg: #ffcf91 !default;
|
|
149
|
+
$passwordStrongBg: #93deac !default;
|
|
150
|
+
|
|
151
|
+
//button
|
|
152
|
+
$buttonPadding: 0.429rem 0.571rem !default;
|
|
153
|
+
$buttonIconOnlyWidth: 2.286rem !default;
|
|
154
|
+
$buttonIconOnlyPadding: 0.429rem 0 !default;
|
|
155
|
+
$buttonBg: $primaryColor !default;
|
|
156
|
+
$buttonTextColor: $primaryTextColor !default;
|
|
157
|
+
$buttonBorder: 1px solid $primaryColor !default;
|
|
158
|
+
$buttonHoverBg: $primaryDarkColor !default;
|
|
159
|
+
$buttonTextHoverColor: $primaryTextColor !default;
|
|
160
|
+
$buttonHoverBorderColor: $primaryDarkColor !default;
|
|
161
|
+
$buttonActiveBg: $primaryDarkerColor !default;
|
|
162
|
+
$buttonTextActiveColor: $primaryTextColor !default;
|
|
163
|
+
$buttonActiveBorderColor: $primaryDarkerColor !default;
|
|
164
|
+
$raisedButtonShadow:
|
|
165
|
+
0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
166
|
+
0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
167
|
+
0px 1px 5px 0px rgba(0, 0, 0, 0.12) !default;
|
|
168
|
+
$roundedButtonBorderRadius: 2rem !default;
|
|
169
|
+
|
|
170
|
+
$textButtonHoverBgOpacity: 0.04 !default;
|
|
171
|
+
$textButtonActiveBgOpacity: 0.16 !default;
|
|
172
|
+
$outlinedButtonBorder: 1px solid !default;
|
|
173
|
+
$plainButtonTextColor: $textSecondaryColor !default;
|
|
174
|
+
$plainButtonHoverBgColor: $shade500 !default;
|
|
175
|
+
$plainButtonActiveBgColor: rgba(255, 255, 255, 0.16) !default;
|
|
176
|
+
|
|
177
|
+
$secondaryButtonBg: #a0a3ad !default;
|
|
178
|
+
$secondaryButtonTextColor: #ffffff !default;
|
|
179
|
+
$secondaryButtonBorder: 1px solid transparent !default;
|
|
180
|
+
$secondaryButtonHoverBg: $shade600 !default;
|
|
181
|
+
$secondaryButtonTextHoverColor: $secondaryButtonTextColor !default;
|
|
182
|
+
$secondaryButtonHoverBorderColor: transparent !default;
|
|
183
|
+
$secondaryButtonActiveBg: $shade700 !default;
|
|
184
|
+
$secondaryButtonTextActiveColor: $secondaryButtonTextColor !default;
|
|
185
|
+
$secondaryButtonActiveBorderColor: transparent !default;
|
|
186
|
+
$secondaryButtonShadow: none !default;
|
|
187
|
+
$secondaryButtonFocusShadow: none !default;
|
|
188
|
+
|
|
189
|
+
$infoButtonBg: #873efe !default;
|
|
190
|
+
$infoButtonTextColor: #ffffff !default;
|
|
191
|
+
$infoButtonBorder: 1px solid transparent !default;
|
|
192
|
+
$infoButtonHoverBg: #6c1af2 !default;
|
|
193
|
+
$infoButtonTextHoverColor: $infoButtonTextColor !default;
|
|
194
|
+
$infoButtonHoverBorderColor: transparent !default;
|
|
195
|
+
$infoButtonActiveBg: #5310c1 !default;
|
|
196
|
+
$infoButtonTextActiveColor: $infoButtonTextColor !default;
|
|
197
|
+
$infoButtonActiveBorderColor: transparent !default;
|
|
198
|
+
$infoButtonShadow: 0px 0px 10px rgba(135, 62, 254, 0.3) !default;
|
|
199
|
+
$infoButtonFocusShadow: none !default;
|
|
200
|
+
|
|
201
|
+
$successButtonBg: #0bd18a !default;
|
|
202
|
+
$successButtonTextColor: #ffffff !default;
|
|
203
|
+
$successButtonBorder: 1px solid transparent !default;
|
|
204
|
+
$successButtonHoverBg: #049b65 !default;
|
|
205
|
+
$successButtonTextHoverColor: $successButtonTextColor !default;
|
|
206
|
+
$successButtonHoverBorderColor: transparent !default;
|
|
207
|
+
$successButtonActiveBg: #017e52 !default;
|
|
208
|
+
$successButtonTextActiveColor: $successButtonTextColor !default;
|
|
209
|
+
$successButtonActiveBorderColor: transparent !default;
|
|
210
|
+
$successButtonShadow: 0px 0px 10px rgba(11, 209, 138, 0.3) !default;
|
|
211
|
+
$successButtonFocusShadow: none !default;
|
|
212
|
+
|
|
213
|
+
$warningButtonBg: #eee500 !default;
|
|
214
|
+
$warningButtonTextColor: #2e323f !default;
|
|
215
|
+
$warningButtonBorder: 1px solid transparent !default;
|
|
216
|
+
$warningButtonHoverBg: #d1c901 !default;
|
|
217
|
+
$warningButtonTextHoverColor: $warningButtonTextColor !default;
|
|
218
|
+
$warningButtonHoverBorderColor: transparent !default;
|
|
219
|
+
$warningButtonActiveBg: #bab302 !default;
|
|
220
|
+
$warningButtonTextActiveColor: $warningButtonTextColor !default;
|
|
221
|
+
$warningButtonActiveBorderColor: transparent !default;
|
|
222
|
+
$warningButtonShadow: 0px 0px 10px rgba(238, 229, 0, 0.3) !default;
|
|
223
|
+
$warningButtonFocusShadow: none !default;
|
|
224
|
+
|
|
225
|
+
$helpButtonBg: #ec4dbc !default;
|
|
226
|
+
$helpButtonTextColor: #ffffff !default;
|
|
227
|
+
$helpButtonBorder: 1px solid transparent !default;
|
|
228
|
+
$helpButtonHoverBg: #e80ea6 !default;
|
|
229
|
+
$helpButtonTextHoverColor: $helpButtonTextColor !default;
|
|
230
|
+
$helpButtonHoverBorderColor: transparent !default;
|
|
231
|
+
$helpButtonActiveBg: #b30c81 !default;
|
|
232
|
+
$helpButtonTextActiveColor: $helpButtonTextColor !default;
|
|
233
|
+
$helpButtonActiveBorderColor: transparent !default;
|
|
234
|
+
$helpButtonShadow: 0px 0px 10px rgba(236, 77, 188, 0.3) !default;
|
|
235
|
+
$helpButtonFocusShadow: none !default;
|
|
236
|
+
|
|
237
|
+
$dangerButtonBg: #fc6161 !default;
|
|
238
|
+
$dangerButtonTextColor: #ffffff !default;
|
|
239
|
+
$dangerButtonBorder: 1px solid transparent !default;
|
|
240
|
+
$dangerButtonHoverBg: #e73a3a !default;
|
|
241
|
+
$dangerButtonTextHoverColor: $dangerButtonTextColor !default;
|
|
242
|
+
$dangerButtonHoverBorderColor: transparent !default;
|
|
243
|
+
$dangerButtonActiveBg: #c42424 !default;
|
|
244
|
+
$dangerButtonTextActiveColor: $dangerButtonTextColor !default;
|
|
245
|
+
$dangerButtonActiveBorderColor: transparent !default;
|
|
246
|
+
$dangerButtonShadow: 0px 0px 10px rgba(252, 97, 97, 0.3) !default;
|
|
247
|
+
$dangerButtonFocusShadow: none !default;
|
|
248
|
+
|
|
249
|
+
$linkButtonColor: $primaryColor !default;
|
|
250
|
+
$linkButtonHoverColor: $primaryColor !default;
|
|
251
|
+
$linkButtonTextHoverDecoration: underline !default;
|
|
252
|
+
$linkButtonFocusShadow: none !default;
|
|
253
|
+
|
|
254
|
+
//checkbox
|
|
255
|
+
$checkboxWidth: 20px !default;
|
|
256
|
+
$checkboxHeight: 20px !default;
|
|
257
|
+
$checkboxBorder: 2px solid $shade800 !default;
|
|
258
|
+
$checkboxIconFontSize: 14px !default;
|
|
259
|
+
$checkboxActiveBorderColor: $shade900 !default;
|
|
260
|
+
$checkboxActiveBg: $primaryColor !default;
|
|
261
|
+
$checkboxIconActiveColor: $primaryTextColor !default;
|
|
262
|
+
$checkboxActiveHoverBg: $primaryDarkerColor !default;
|
|
263
|
+
$checkboxIconActiveHoverColor: $primaryTextColor !default;
|
|
264
|
+
$checkboxActiveHoverBorderColor: $primaryDarkerColor !default;
|
|
265
|
+
|
|
266
|
+
//radiobutton
|
|
267
|
+
$radiobuttonWidth: 20px !default;
|
|
268
|
+
$radiobuttonHeight: 20px !default;
|
|
269
|
+
$radiobuttonBorder: 2px solid #868c9b !default;
|
|
270
|
+
$radiobuttonIconSize: 12px !default;
|
|
271
|
+
$radiobuttonHoverBorderColor: #c8ccd8 !default;
|
|
272
|
+
$radiobuttonActiveBorderColor: $primaryColor !default;
|
|
273
|
+
$radiobuttonActiveBg: $primaryColor !default;
|
|
274
|
+
$radiobuttonIconActiveColor: $primaryTextColor !default;
|
|
275
|
+
$radiobuttonActiveHoverBg: $primaryDarkerColor !default;
|
|
276
|
+
$radiobuttonIconActiveHoverColor: $primaryTextColor !default;
|
|
277
|
+
$radiobuttonActiveHoverBorderColor: $primaryDarkerColor !default;
|
|
278
|
+
|
|
279
|
+
//colorpicker
|
|
280
|
+
$colorPickerPreviewWidth: 2rem !default;
|
|
281
|
+
$colorPickerPreviewHeight: 2rem !default;
|
|
282
|
+
$colorPickerBg: $shade800 !default;
|
|
283
|
+
$colorPickerBorder: 1px solid $shade600 !default;
|
|
284
|
+
$colorPickerHandleColor: $shade000 !default;
|
|
285
|
+
|
|
286
|
+
//togglebutton
|
|
287
|
+
$toggleButtonBg: $shade800 !default;
|
|
288
|
+
$toggleButtonBorder: 1px solid transparent !default;
|
|
289
|
+
$toggleButtonTextColor: $shade000 !default;
|
|
290
|
+
$toggleButtonIconColor: $shade100 !default;
|
|
291
|
+
$toggleButtonHoverBg: $shade600 !default;
|
|
292
|
+
$toggleButtonHoverBorderColor: transparent !default;
|
|
293
|
+
$toggleButtonTextHoverColor: $shade000 !default;
|
|
294
|
+
$toggleButtonIconHoverColor: $shade100 !default;
|
|
295
|
+
$toggleButtonActiveBg: $primaryColor !default;
|
|
296
|
+
$toggleButtonActiveBorderColor: $primaryColor !default;
|
|
297
|
+
$toggleButtonTextActiveColor: $primaryTextColor !default;
|
|
298
|
+
$toggleButtonIconActiveColor: $primaryTextColor !default;
|
|
299
|
+
$toggleButtonActiveHoverBg: $primaryDarkColor !default;
|
|
300
|
+
$toggleButtonActiveHoverBorderColor: $primaryDarkColor !default;
|
|
301
|
+
$toggleButtonTextActiveHoverColor: $primaryTextColor !default;
|
|
302
|
+
$toggleButtonIconActiveHoverColor: $primaryTextColor !default;
|
|
303
|
+
|
|
304
|
+
//inplace
|
|
305
|
+
$inplacePadding: $inputPadding !default;
|
|
306
|
+
$inplaceHoverBg: $shade500 !default;
|
|
307
|
+
$inplaceTextHoverColor: $shade000 !default;
|
|
308
|
+
|
|
309
|
+
//rating
|
|
310
|
+
$ratingIconFontSize: 1.286rem !default;
|
|
311
|
+
$ratingCancelIconColor: #fc6161 !default;
|
|
312
|
+
$ratingCancelIconHoverColor: #fc6161 !default;
|
|
313
|
+
$ratingStarIconOffColor: $shade000 !default;
|
|
314
|
+
$ratingStarIconOnColor: $primaryColor !default;
|
|
315
|
+
$ratingStarIconHoverColor: $primaryColor !default;
|
|
316
|
+
|
|
317
|
+
//slider
|
|
318
|
+
$sliderBg: $shade600 !default;
|
|
319
|
+
$sliderBorder: 0 none !default;
|
|
320
|
+
$sliderHorizontalHeight: 0.429rem !default;
|
|
321
|
+
$sliderVerticalWidth: 0.429rem !default;
|
|
322
|
+
$sliderHandleWidth: 1.143rem !default;
|
|
323
|
+
$sliderHandleHeight: 1.143rem !default;
|
|
324
|
+
$sliderHandleBg: #ffffff !default;
|
|
325
|
+
$sliderHandleBorder: 4px solid $primaryColor !default;
|
|
326
|
+
$sliderHandleBorderRadius: 50% !default;
|
|
327
|
+
$sliderHandleHoverBorderColor: $primaryColor !default;
|
|
328
|
+
$sliderHandleHoverBg: $primaryColor !default;
|
|
329
|
+
$sliderRangeBg: $primaryColor !default;
|
|
330
|
+
|
|
331
|
+
//calendar
|
|
332
|
+
$calendarTableMargin: 0.5rem 0 !default;
|
|
333
|
+
$calendarPadding: 0.857rem !default;
|
|
334
|
+
$calendarBg: $solidSurfaceColor !default;
|
|
335
|
+
$calendarInlineBg: transparent !default;
|
|
336
|
+
$calendarTextColor: $shade000 !default;
|
|
337
|
+
$calendarBorder: $inputListBorder !default;
|
|
338
|
+
$calendarOverlayBorder: $inputOverlayBorder !default;
|
|
339
|
+
|
|
340
|
+
$calendarHeaderPadding: 0 0 0.75rem 0 !default;
|
|
341
|
+
$calendarHeaderBg: transparent !default;
|
|
342
|
+
$calendarInlineHeaderBg: $calendarInlineBg !default;
|
|
343
|
+
$calendarHeaderBorder: 0 none !default;
|
|
344
|
+
$calendarHeaderTextColor: $shade000 !default;
|
|
345
|
+
$calendarHeaderFontWeight: 400 !default;
|
|
346
|
+
$calendarHeaderCellPadding: 0.357rem !default;
|
|
347
|
+
$calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
|
|
348
|
+
|
|
349
|
+
$calendarCellDatePadding: 0.357rem !default;
|
|
350
|
+
$calendarCellDateWidth: 2.571rem !default;
|
|
351
|
+
$calendarCellDateHeight: 2.571rem !default;
|
|
352
|
+
$calendarCellDateBorderRadius: $borderRadius !default;
|
|
353
|
+
$calendarCellDateBorder: 2px solid transparent !default;
|
|
354
|
+
$calendarCellDateHoverBg: $shade600 !default;
|
|
355
|
+
$calendarCellDateTodayBg: $shade500 !default;
|
|
356
|
+
$calendarCellDateTodayBorderColor: $shade900 !default;
|
|
357
|
+
$calendarCellDateTodayTextColor: $shade000 !default;
|
|
358
|
+
|
|
359
|
+
$calendarButtonBarPadding: 1rem 0 !default;
|
|
360
|
+
$calendarTimePickerPadding: 0.5rem !default;
|
|
361
|
+
$calendarTimePickerElementPadding: 0 0.5rem !default;
|
|
362
|
+
$calendarTimePickerTimeFontSize: 1.25rem !default;
|
|
363
|
+
|
|
364
|
+
$calendarBreakpoint: 769px !default;
|
|
365
|
+
$calendarCellDatePaddingSM: 0 !default;
|
|
366
|
+
|
|
367
|
+
//input switch
|
|
368
|
+
$inputSwitchWidth: 2.714rem !default;
|
|
369
|
+
$inputSwitchHeight: 1.429rem !default;
|
|
370
|
+
$inputSwitchBorderRadius: 12px !default;
|
|
371
|
+
$inputSwitchHandleWidth: 1.143rem !default;
|
|
372
|
+
$inputSwitchHandleHeight: 1.143rem !default;
|
|
373
|
+
$inputSwitchHandleBorderRadius: 8px !default;
|
|
374
|
+
$inputSwitchSliderPadding: 0.25rem !default;
|
|
375
|
+
$inputSwitchSliderOffBg: $shade500 !default;
|
|
376
|
+
$inputSwitchHandleOffBg: $shade100 !default;
|
|
377
|
+
$inputSwitchSliderOffHoverBg: $shade600 !default;
|
|
378
|
+
$inputSwitchSliderOnBg: $primaryColor !default;
|
|
379
|
+
$inputSwitchSliderOnHoverBg: $primaryDarkColor !default;
|
|
380
|
+
$inputSwitchHandleOnBg: $shade000 !default;
|
|
381
|
+
|
|
382
|
+
//panel
|
|
383
|
+
$panelHeaderBorderColor: $shade700 !default;
|
|
384
|
+
$panelHeaderBorder: 1px solid $shade700 !default;
|
|
385
|
+
$panelHeaderBg: transparent !default;
|
|
386
|
+
$panelHeaderTextColor: $shade000 !default;
|
|
387
|
+
$panelHeaderFontWeight: 500 !default;
|
|
388
|
+
$panelHeaderPadding: 0.714rem 1.143rem !default;
|
|
389
|
+
$panelToggleableHeaderPadding: 0.429rem 0.571rem !default;
|
|
390
|
+
|
|
391
|
+
$panelHeaderHoverBg: $shade500 !default;
|
|
392
|
+
$panelHeaderHoverBorderColor: $shade700 !default;
|
|
393
|
+
$panelHeaderTextHoverColor: $shade000 !default;
|
|
394
|
+
|
|
395
|
+
$panelContentBorderColor: $shade700 !default;
|
|
396
|
+
$panelContentBorder: 1px solid $shade700 !default;
|
|
397
|
+
$panelContentEvenRowBg: rgba(255, 255, 255, 0.01) !default;
|
|
398
|
+
$panelContentBg: transparent !default;
|
|
399
|
+
$panelContentTextColor: $shade000 !default;
|
|
400
|
+
$panelContentPadding: 1.143rem !default;
|
|
401
|
+
|
|
402
|
+
$panelFooterBorder: 1px solid $shade700 !default;
|
|
403
|
+
$panelFooterBg: transparent !default;
|
|
404
|
+
$panelFooterTextColor: $shade000 !default;
|
|
405
|
+
$panelFooterPadding: 0.714rem 1.143rem !default;
|
|
406
|
+
|
|
407
|
+
//accordion
|
|
408
|
+
$accordionSpacing: 0 !default;
|
|
409
|
+
$accordionHeaderBorder: $panelHeaderBorder !default;
|
|
410
|
+
$accordionHeaderBg: $panelHeaderBg !default;
|
|
411
|
+
$accordionHeaderTextColor: $panelHeaderTextColor !default;
|
|
412
|
+
$accordionHeaderFontWeight: $panelHeaderFontWeight !default;
|
|
413
|
+
$accordionHeaderPadding: $panelHeaderPadding !default;
|
|
414
|
+
|
|
415
|
+
$accordionHeaderHoverBg: $shade500 !default;
|
|
416
|
+
$accordionHeaderHoverBorderColor: $shade500 !default;
|
|
417
|
+
$accordionHeaderTextHoverColor: $shade000 !default;
|
|
418
|
+
|
|
419
|
+
$accordionHeaderActiveBg: $shade700 !default;
|
|
420
|
+
$accordionHeaderActiveBorderColor: $shade500 !default;
|
|
421
|
+
$accordionHeaderTextActiveColor: $shade000 !default;
|
|
422
|
+
|
|
423
|
+
$accordionHeaderActiveHoverBg: $shade700 !default;
|
|
424
|
+
$accordionHeaderActiveHoverBorderColor: $shade500 !default;
|
|
425
|
+
$accordionHeaderTextActiveHoverColor: $shade000 !default;
|
|
426
|
+
|
|
427
|
+
$accordionContentBorder: $panelContentBorder !default;
|
|
428
|
+
$accordionContentBg: $panelContentBg !default;
|
|
429
|
+
$accordionContentTextColor: $panelContentTextColor !default;
|
|
430
|
+
$accordionContentPadding: $panelContentPadding !default;
|
|
431
|
+
|
|
432
|
+
//tabview
|
|
433
|
+
$tabviewNavBorder: 1px solid $shade700 !default;
|
|
434
|
+
$tabviewNavBorderWidth: 0 0 2px 0 !default;
|
|
435
|
+
$tabviewNavBg: transparent !default;
|
|
436
|
+
|
|
437
|
+
$tabviewHeaderSpacing: 0.857rem !default;
|
|
438
|
+
$tabviewHeaderBorder: solid transparent !default;
|
|
439
|
+
$tabviewHeaderBorderWidth: 0 0 2px 0 !default;
|
|
440
|
+
$tabviewHeaderBorderColor: transparent transparent transparent transparent !default;
|
|
441
|
+
$tabviewHeaderBg: transparent !default;
|
|
442
|
+
$tabviewHeaderTextColor: $shade200 !default;
|
|
443
|
+
$tabviewHeaderFontWeight: $panelHeaderFontWeight !default;
|
|
444
|
+
$tabviewHeaderPadding: 0.571rem 0.429rem !default;
|
|
445
|
+
$tabviewHeaderMargin: 0 0 -2px 0 !default;
|
|
446
|
+
|
|
447
|
+
$tabviewHeaderHoverBg: transparent !default;
|
|
448
|
+
$tabviewHeaderHoverBorderColor: $shade000 !default;
|
|
449
|
+
$tabviewHeaderTextHoverColor: $shade000 !default;
|
|
450
|
+
|
|
451
|
+
$tabviewHeaderActiveBg: transparent !default;
|
|
452
|
+
$tabviewHeaderActiveBorderColor: $primaryColor !default;
|
|
453
|
+
$tabviewHeaderTextActiveColor: $primaryColor !default;
|
|
454
|
+
|
|
455
|
+
$tabviewContentBorder: 0 none !default;
|
|
456
|
+
$tabviewContentBg: transparent !default;
|
|
457
|
+
$tabviewContentTextColor: $shade000 !default;
|
|
458
|
+
$tabviewContentPadding: 1.143rem 0 !default;
|
|
459
|
+
|
|
460
|
+
//upload
|
|
461
|
+
$fileUploadProgressBarHeight: 0.25rem !default;
|
|
462
|
+
$fileUploadContentPadding: 2rem 1rem !default;
|
|
463
|
+
$fileUploadContentHoverBorder: 1px dashed $primaryColor !default;
|
|
464
|
+
$fileUploadFileBorder: 1px solid $shade600 !default;
|
|
465
|
+
$fileUploadFilePadding: 1rem !default;
|
|
466
|
+
|
|
467
|
+
//scrollpanel
|
|
468
|
+
$scrollPanelTrackBorder: 0 none !default;
|
|
469
|
+
$scrollPanelTrackBg: $shade600 !default;
|
|
470
|
+
|
|
471
|
+
//card
|
|
472
|
+
$cardBodyPadding: 0.857rem 1.143rem !default;
|
|
473
|
+
$cardTitleFontSize: 1.143rem !default;
|
|
474
|
+
$cardTitleFontWeight: 500 !default;
|
|
475
|
+
$cardSubTitleFontWeight: 500 !default;
|
|
476
|
+
$cardSubTitleColor: $shade200 !default;
|
|
477
|
+
$cardContentPadding: 1rem 0 !default;
|
|
478
|
+
$cardFooterPadding: 1rem 0 0 0 !default;
|
|
479
|
+
$cardShadow:
|
|
480
|
+
0 2px 1px -1px rgba(0, 0, 0, 0.2),
|
|
481
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
482
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.12) !default;
|
|
483
|
+
|
|
484
|
+
//editor
|
|
485
|
+
$editorToolbarBg: $panelHeaderBg !default;
|
|
486
|
+
$editorToolbarBorder: $panelHeaderBorder !default;
|
|
487
|
+
$editorToolbarPadding: $panelHeaderPadding !default;
|
|
488
|
+
$editorToolbarIconColor: $textSecondaryColor !default;
|
|
489
|
+
$editorToolbarIconHoverColor: $textColor !default;
|
|
490
|
+
$editorIconActiveColor: $primaryColor !default;
|
|
491
|
+
$editorContentBorder: $panelContentBorder !default;
|
|
492
|
+
$editorContentBg: $panelContentBg !default;
|
|
493
|
+
|
|
494
|
+
//paginator
|
|
495
|
+
$paginatorBg: transparent !default;
|
|
496
|
+
$paginatorTextColor: $shade000 !default;
|
|
497
|
+
$paginatorBorder: solid $shade700 !default;
|
|
498
|
+
$paginatorBorderWidth: 0 !default;
|
|
499
|
+
$paginatorPadding: 0.571rem 0.571rem !default;
|
|
500
|
+
$paginatorElementWidth: 1.429rem !default;
|
|
501
|
+
$paginatorElementHeight: 1.429rem !default;
|
|
502
|
+
$paginatorElementBg: transparent !default;
|
|
503
|
+
$paginatorElementBorder: 0 none !default;
|
|
504
|
+
$paginatorElementIconColor: $shade000 !default;
|
|
505
|
+
$paginatorElementHoverBg: $shade500 !default;
|
|
506
|
+
$paginatorElementHoverBorderColor: transparent !default;
|
|
507
|
+
$paginatorElementIconHoverColor: $shade000 !default;
|
|
508
|
+
$paginatorElementBorderRadius: 4px !default;
|
|
509
|
+
$paginatorElementMargin: 0.143rem !default;
|
|
510
|
+
$paginatorElementPadding: 0 !default;
|
|
511
|
+
|
|
512
|
+
//table
|
|
513
|
+
$tableHeaderBorder: 1px solid $shade700 !default;
|
|
514
|
+
$tableHeaderBorderWidth: 0 0 1px 0 !default;
|
|
515
|
+
$tableHeaderBg: var(--surface-section) !default;
|
|
516
|
+
$tableHeaderTextColor: $shade200 !default;
|
|
517
|
+
$tableHeaderFontWeight: 500 !default;
|
|
518
|
+
$tableHeaderPadding: 0.571rem 0.571rem !default;
|
|
519
|
+
|
|
520
|
+
$tableHeaderCellPadding: 0.571rem 0.571rem !default;
|
|
521
|
+
$tableHeaderCellBg: var(--surface-section) !default;
|
|
522
|
+
$tableHeaderCellTextColor: $shade200 !default;
|
|
523
|
+
$tableHeaderCellFontWeight: 500 !default;
|
|
524
|
+
$tableHeaderCellBorder: 1px solid $shade700 !default;
|
|
525
|
+
$tableHeaderCellBorderWidth: 0 0 1px 0 !default;
|
|
526
|
+
$tableHeaderCellHoverBg: $shade500 !default;
|
|
527
|
+
$tableHeaderCellTextHoverColor: $shade200 !default;
|
|
528
|
+
$tableHeaderCellIconColor: $shade200 !default;
|
|
529
|
+
$tableHeaderCellIconHoverColor: $shade200 !default;
|
|
530
|
+
$tableHeaderCellHighlightBg: $shade600 !default;
|
|
531
|
+
$tableHeaderCellHighlightTextColor: $shade200 !default;
|
|
532
|
+
$tableHeaderCellHighlightHoverBg: $shade600 !default;
|
|
533
|
+
$tableHeaderCellHighlightTextHoverColor: $shade200 !default;
|
|
534
|
+
$tableSortableColumnBadgeSize: 1.143rem !default;
|
|
535
|
+
|
|
536
|
+
$tableBodyRowBg: var(--surface-section) !default;
|
|
537
|
+
$tableBodyRowTextColor: $shade000 !default;
|
|
538
|
+
$tableBodyRowEvenBg: var(--surface-section) !default;
|
|
539
|
+
$tableBodyRowHoverBg: $shade500 !default;
|
|
540
|
+
$tableBodyRowTextHoverColor: $shade000 !default;
|
|
541
|
+
$tableBodyCellBorder: 1px solid $shade500 !default;
|
|
542
|
+
$tableBodyCellBorderWidth: 0 0 0 0 !default;
|
|
543
|
+
$tableBodyCellPadding: 0.429rem 0.571rem !default;
|
|
544
|
+
|
|
545
|
+
$tableFooterCellPadding: 0.571rem 0.571rem !default;
|
|
546
|
+
$tableFooterCellBg: var(--surface-section) !default;
|
|
547
|
+
$tableFooterCellTextColor: $shade200 !default;
|
|
548
|
+
$tableFooterCellFontWeight: 500 !default;
|
|
549
|
+
$tableFooterCellBorder: 1px solid $shade700 !default;
|
|
550
|
+
$tableFooterCellBorderWidth: 0 0 1px 0 !default;
|
|
551
|
+
$tableResizerHelperBg: $primaryColor !default;
|
|
552
|
+
|
|
553
|
+
$tableFooterBorder: 1px solid $shade700 !default;
|
|
554
|
+
$tableFooterBorderWidth: 0 0 1px 0 !default;
|
|
555
|
+
$tableFooterBg: var(--surface-section) !default;
|
|
556
|
+
$tableFooterTextColor: $shade200 !default;
|
|
557
|
+
$tableFooterFontWeight: 700 !default;
|
|
558
|
+
$tableFooterPadding: 0.571rem 0.571rem !default;
|
|
559
|
+
|
|
560
|
+
$tableCellContentAlignment: left !default;
|
|
561
|
+
$tableTopPaginatorBorderWidth: 1px 0 1px 0 !default;
|
|
562
|
+
$tableBottomPaginatorBorderWidth: 1px 0 1px 0 !default;
|
|
563
|
+
|
|
564
|
+
$tableScaleSM: 0.5 !default;
|
|
565
|
+
$tableScaleLG: 1.25 !default;
|
|
566
|
+
|
|
567
|
+
//dataview
|
|
568
|
+
$dataViewContentPadding: 0 !default;
|
|
569
|
+
$dataViewContentBorder: 0 none !default;
|
|
570
|
+
$dataViewListItemBorder: solid $shade500 !default;
|
|
571
|
+
$dataViewListItemBorderWidth: 0 0 0 0 !default;
|
|
572
|
+
|
|
573
|
+
//schedule
|
|
574
|
+
$fullCalendarEventBg: $primaryDarkColor !default;
|
|
575
|
+
$fullCalendarEventBorderColor: $primaryDarkColor !default;
|
|
576
|
+
$fullCalendarEventBorder: 1px solid $primaryDarkColor !default;
|
|
577
|
+
$fullCalendarEventTextColor: $primaryTextColor !default;
|
|
578
|
+
|
|
579
|
+
//tree
|
|
580
|
+
$treeContainerPadding: 0.286rem !default;
|
|
581
|
+
$treeNodePadding: 0.143rem !default;
|
|
582
|
+
$treeNodeContentPadding: 0.429rem 0.571rem !default;
|
|
583
|
+
$treeNodeChildrenPadding: 0 0 0 1rem !default;
|
|
584
|
+
$treeNodeIconColor: $shade000 !default;
|
|
585
|
+
|
|
586
|
+
//timeline
|
|
587
|
+
$timelineVerticalEventContentPadding: 0 1rem !default;
|
|
588
|
+
$timelineHorizontalEventContentPadding: 1rem 0 !default;
|
|
589
|
+
$timelineEventMarkerWidth: 1rem !default;
|
|
590
|
+
$timelineEventMarkerHeight: 1rem !default;
|
|
591
|
+
$timelineEventMarkerBorderRadius: 50% !default;
|
|
592
|
+
$timelineEventMarkerBorder: 2px solid $primaryColor !default;
|
|
593
|
+
$timelineEventMarkerBackground: $shade500 !default;
|
|
594
|
+
$timelineEventConnectorSize: 2px !default;
|
|
595
|
+
$timelineEventColor: $shade500 !default;
|
|
596
|
+
|
|
597
|
+
//org chart
|
|
598
|
+
$organizationChartConnectorColor: $shade100 !default;
|
|
599
|
+
|
|
600
|
+
//message
|
|
601
|
+
$messageMargin: 1rem 0 !default;
|
|
602
|
+
$messagePadding: 1.143rem 1.357rem !default;
|
|
603
|
+
$messageBorderWidth: 0 0 0 20px !default;
|
|
604
|
+
$messageIconFontSize: 1.286rem !default;
|
|
605
|
+
$messageTextFontSize: 1rem !default;
|
|
606
|
+
$messageTextFontWeight: 400 !default;
|
|
607
|
+
|
|
608
|
+
//inline message
|
|
609
|
+
$inlineMessagePadding: $inputPadding !default;
|
|
610
|
+
$inlineMessageMargin: 0 !default;
|
|
611
|
+
$inlineMessageIconFontSize: 1.286rem !default;
|
|
612
|
+
$inlineMessageTextFontSize: 1rem !default;
|
|
613
|
+
$inlineMessageBorderWidth: 0 0 0 20px !default;
|
|
614
|
+
|
|
615
|
+
//toast
|
|
616
|
+
$toastIconFontSize: 1.286rem !default;
|
|
617
|
+
$toastMessageTextMargin: 0 0 0 1rem !default;
|
|
618
|
+
$toastMargin: 0 0 1rem 0 !default;
|
|
619
|
+
$toastPadding: 1.143rem 1.357rem !default;
|
|
620
|
+
$toastBorderWidth: 0 0 0 20px !default;
|
|
621
|
+
$toastShadow: none !default;
|
|
622
|
+
$toastOpacity: 0.9 !default;
|
|
623
|
+
$toastTitleFontWeight: 400 !default;
|
|
624
|
+
$toastDetailMargin: $inlineSpacing 0 0 0 !default;
|
|
625
|
+
|
|
626
|
+
//severities
|
|
627
|
+
$infoMessageBg: $shade500 !default;
|
|
628
|
+
$infoMessageBorder: solid #873efe !default;
|
|
629
|
+
$infoMessageTextColor: $shade000 !default;
|
|
630
|
+
$infoMessageIconColor: $shade000 !default;
|
|
631
|
+
$successMessageBg: $shade500 !default;
|
|
632
|
+
$successMessageBorder: solid #0bd18a !default;
|
|
633
|
+
$successMessageTextColor: $shade000 !default;
|
|
634
|
+
$successMessageIconColor: $shade000 !default;
|
|
635
|
+
$warningMessageBg: $shade500 !default;
|
|
636
|
+
$warningMessageBorder: solid #eee500 !default;
|
|
637
|
+
$warningMessageTextColor: $shade000 !default;
|
|
638
|
+
$warningMessageIconColor: $shade000 !default;
|
|
639
|
+
$errorMessageBg: $shade500 !default;
|
|
640
|
+
$errorMessageBorder: solid #fc6161 !default;
|
|
641
|
+
$errorMessageTextColor: $shade000 !default;
|
|
642
|
+
$errorMessageIconColor: $shade000 !default;
|
|
643
|
+
|
|
644
|
+
//overlays
|
|
645
|
+
$overlayContentBorder: 0 none !default;
|
|
646
|
+
$overlayContentBg: #252636 !default;
|
|
647
|
+
$overlayContainerShadow: 0px 10px 30px rgba(0, 0, 0, 0.3) !default;
|
|
648
|
+
|
|
649
|
+
//dialog
|
|
650
|
+
$dialogBorderRadius: 20px;
|
|
651
|
+
$dialogHeaderBg: #252636 !default;
|
|
652
|
+
$dialogHeaderBorder: 0 none !default;
|
|
653
|
+
$dialogHeaderTextColor: $shade000 !default;
|
|
654
|
+
$dialogHeaderFontWeight: 500 !default;
|
|
655
|
+
$dialogHeaderFontSize: 1.143rem !default;
|
|
656
|
+
$dialogHeaderPadding: 1.286rem 1.714rem !default;
|
|
657
|
+
$dialogContentPadding: 0 1.714rem 1.714rem 1.714rem !default;
|
|
658
|
+
$dialogFooterBorder: 0 none !default;
|
|
659
|
+
$dialogFooterPadding: 0 1.714rem 1.714rem 1.714rem !default;
|
|
660
|
+
|
|
661
|
+
//confirmpopup
|
|
662
|
+
$confirmPopupContentPadding: $panelContentPadding !default;
|
|
663
|
+
$confirmPopupFooterPadding: 0 1.25rem 1.25rem 1.25rem !default;
|
|
664
|
+
|
|
665
|
+
//tooltip
|
|
666
|
+
$tooltipBg: $solidSurfaceColor !default;
|
|
667
|
+
$tooltipTextColor: $shade000 !default;
|
|
668
|
+
$tooltipPadding: $inputPadding !default;
|
|
669
|
+
|
|
670
|
+
//steps
|
|
671
|
+
$stepsItemBg: transparent !default;
|
|
672
|
+
$stepsItemBorder: 0 none !default;
|
|
673
|
+
$stepsItemTextColor: $shade200 !default;
|
|
674
|
+
$stepsItemNumberWidth: 1.714rem !default;
|
|
675
|
+
$stepsItemNumberHeight: 1.714rem !default;
|
|
676
|
+
$stepsItemNumberFontSize: 1.143rem !default;
|
|
677
|
+
$stepsItemNumberColor: $shade200 !default;
|
|
678
|
+
$stepsItemNumberBorderRadius: 12px !default;
|
|
679
|
+
$stepsItemActiveFontWeight: 400 !default;
|
|
680
|
+
|
|
681
|
+
//progressbar, progressspinner
|
|
682
|
+
$progressBarHeight: 0.571rem !default;
|
|
683
|
+
$progressBarBorder: 0 none !default;
|
|
684
|
+
$progressBarBg: $shade600 !default;
|
|
685
|
+
$progressBarValueBg: $primaryColor !default;
|
|
686
|
+
$progressBarValueTextColor: $primaryTextColor !default;
|
|
687
|
+
|
|
688
|
+
$progressSpinnerStrokeColor: $errorMessageTextColor !default;
|
|
689
|
+
$progressSpinnerColorOne: $errorMessageTextColor !default;
|
|
690
|
+
$progressSpinnerColorTwo: $infoMessageTextColor !default;
|
|
691
|
+
$progressSpinnerColorThree: $successMessageTextColor !default;
|
|
692
|
+
$progressSpinnerColorFour: $warningMessageTextColor !default;
|
|
693
|
+
|
|
694
|
+
//menu (e.g. menu, menubar, tieredmenu)
|
|
695
|
+
$menuWidth: 12.5rem !default;
|
|
696
|
+
$menuBg: transparent !default;
|
|
697
|
+
$menuBorder: 1px solid $shade700 !default;
|
|
698
|
+
$menuTextColor: $shade100 !default;
|
|
699
|
+
$menuitemPadding: 0.571rem 0.429rem !default;
|
|
700
|
+
$menuitemBorderRadius: $borderRadius !default;
|
|
701
|
+
$menuitemBorder: 1px solid transparent !default;
|
|
702
|
+
$menuitemTextColor: $shade100 !default;
|
|
703
|
+
$menuitemIconColor: $shade100 !default;
|
|
704
|
+
$menuitemTextHoverColor: $shade000 !default;
|
|
705
|
+
$menuitemIconHoverColor: $shade000 !default;
|
|
706
|
+
$menuitemHoverBg: $shade500 !default;
|
|
707
|
+
$menuitemTextFocusColor: $shade000 !default;
|
|
708
|
+
$menuitemIconFocusColor: $shade000 !default;
|
|
709
|
+
$menuitemFocusBg: $shade600 !default;
|
|
710
|
+
$menuitemTextActiveColor: $highlightTextColor !default;
|
|
711
|
+
$menuitemIconActiveColor: $highlightTextColor !default;
|
|
712
|
+
$menuitemActiveBg: $highlightBg !default;
|
|
713
|
+
$menuitemActiveFocusBg: $highlightFocusBg !default;
|
|
714
|
+
$menuitemSubmenuIconFontSize: 0.875rem !default;
|
|
715
|
+
$submenuHeaderMargin: 0 !default;
|
|
716
|
+
$submenuHeaderPadding: 0.571rem 0.429rem !default;
|
|
717
|
+
$submenuHeaderBg: transparent !default;
|
|
718
|
+
$submenuHeaderTextColor: $shade200 !default;
|
|
719
|
+
$submenuHeaderBorderRadius: $borderRadius !default;
|
|
720
|
+
$submenuHeaderFontWeight: 500 !default;
|
|
721
|
+
$overlayMenuBg: $solidSurfaceColor !default;
|
|
722
|
+
$overlayMenuBorder: 1px solid transparent !default;
|
|
723
|
+
$overlayMenuShadow: none !default;
|
|
724
|
+
$verticalMenuPadding: 0.429rem !default;
|
|
725
|
+
$menuSeparatorMargin: 0.25rem 0 !default;
|
|
726
|
+
|
|
727
|
+
$breadcrumbPadding: 0.857rem !default;
|
|
728
|
+
$breadcrumbBg: $menuBg !default;
|
|
729
|
+
$breadcrumbBorder: $menuBorder !default;
|
|
730
|
+
$breadcrumbItemTextColor: $menuitemTextColor !default;
|
|
731
|
+
$breadcrumbItemIconColor: $menuitemIconColor !default;
|
|
732
|
+
$breadcrumbLastItemTextColor: $menuitemTextColor !default;
|
|
733
|
+
$breadcrumbLastItemIconColor: $menuitemIconColor !default;
|
|
734
|
+
$breadcrumbSeparatorColor: $menuitemTextColor !default;
|
|
735
|
+
|
|
736
|
+
$horizontalMenuPadding: 0.857rem !default;
|
|
737
|
+
$horizontalMenuBg: $menuBg !default;
|
|
738
|
+
$horizontalMenuBorder: $menuBorder !default;
|
|
739
|
+
$horizontalMenuTextColor: $menuTextColor !default;
|
|
740
|
+
$horizontalMenuRootMenuitemPadding: $menuitemPadding !default;
|
|
741
|
+
$horizontalMenuRootMenuitemBorderRadius: $borderRadius !default;
|
|
742
|
+
$horizontalMenuRootMenuitemTextColor: $menuitemTextColor !default;
|
|
743
|
+
$horizontalMenuRootMenuitemIconColor: $menuitemIconColor !default;
|
|
744
|
+
$horizontalMenuRootMenuitemTextHoverColor: $menuitemTextHoverColor !default;
|
|
745
|
+
$horizontalMenuRootMenuitemIconHoverColor: $menuitemIconHoverColor !default;
|
|
746
|
+
$horizontalMenuRootMenuitemHoverBg: $menuitemHoverBg !default;
|
|
747
|
+
$horizontalMenuRootMenuitemTextActiveColor: $menuitemTextActiveColor !default;
|
|
748
|
+
$horizontalMenuRootMenuitemIconActiveColor: $menuitemIconActiveColor !default;
|
|
749
|
+
$horizontalMenuRootMenuitemActiveBg: $menuitemActiveBg !default;
|
|
750
|
+
|
|
751
|
+
//badge and tag
|
|
752
|
+
$badgeBg: $primaryColor !default;
|
|
753
|
+
$badgeTextColor: $primaryTextColor !default;
|
|
754
|
+
$badgeMinWidth: 1.429rem !default;
|
|
755
|
+
$badgeHeight: 1.429rem !default;
|
|
756
|
+
$badgeFontWeight: 500 !default;
|
|
757
|
+
$badgeFontSize: 1rem !default;
|
|
758
|
+
|
|
759
|
+
$tagPadding: 0 0.429rem !default;
|
|
760
|
+
|
|
761
|
+
//carousel
|
|
762
|
+
$carouselIndicatorsPadding: 1rem !default;
|
|
763
|
+
$carouselIndicatorBg: $shade600 !default;
|
|
764
|
+
$carouselIndicatorHoverBg: $shade800 !default;
|
|
765
|
+
$carouselIndicatorBorderRadius: 3px !default;
|
|
766
|
+
$carouselIndicatorWidth: 1.429rem !default;
|
|
767
|
+
$carouselIndicatorHeight: 0.572rem !default;
|
|
768
|
+
|
|
769
|
+
//galleria
|
|
770
|
+
$galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
771
|
+
$galleriaCloseIconMargin: 0.5rem !default;
|
|
772
|
+
$galleriaCloseIconFontSize: 2rem !default;
|
|
773
|
+
$galleriaCloseIconBg: transparent !default;
|
|
774
|
+
$galleriaCloseIconColor: #f8f9fa !default;
|
|
775
|
+
$galleriaCloseIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
776
|
+
$galleriaCloseIconHoverColor: #f8f9fa !default;
|
|
777
|
+
$galleriaCloseIconWidth: 4rem !default;
|
|
778
|
+
$galleriaCloseIconHeight: 4rem !default;
|
|
779
|
+
$galleriaCloseIconBorderRadius: 50% !default;
|
|
780
|
+
|
|
781
|
+
$galleriaItemNavigatorBg: transparent !default;
|
|
782
|
+
$galleriaItemNavigatorColor: #f8f9fa !default;
|
|
783
|
+
$galleriaItemNavigatorMargin: 0 0.5rem !default;
|
|
784
|
+
$galleriaItemNavigatorFontSize: 2rem !default;
|
|
785
|
+
$galleriaItemNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
786
|
+
$galleriaItemNavigatorHoverColor: #f8f9fa !default;
|
|
787
|
+
$galleriaItemNavigatorWidth: 4rem !default;
|
|
788
|
+
$galleriaItemNavigatorHeight: 4rem !default;
|
|
789
|
+
$galleriaItemNavigatorBorderRadius: $borderRadius !default;
|
|
790
|
+
|
|
791
|
+
$galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
|
|
792
|
+
$galleriaCaptionTextColor: #f8f9fa !default;
|
|
793
|
+
$galleriaCaptionPadding: 1rem !default;
|
|
794
|
+
|
|
795
|
+
$galleriaIndicatorsPadding: 1rem !default;
|
|
796
|
+
$galleriaIndicatorBg: $shade600 !default;
|
|
797
|
+
$galleriaIndicatorHoverBg: $shade800 !default;
|
|
798
|
+
$galleriaIndicatorBorderRadius: 3px !default;
|
|
799
|
+
$galleriaIndicatorWidth: 1.429rem !default;
|
|
800
|
+
$galleriaIndicatorHeight: 0.286rem !default;
|
|
801
|
+
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
|
|
802
|
+
$galleriaIndicatorBgOnItem: $shade100 !default;
|
|
803
|
+
$galleriaIndicatorHoverBgOnItem: $shade000 !default;
|
|
804
|
+
|
|
805
|
+
$galleriaThumbnailContainerBg: rgba(0, 0, 0, 0.9) !default;
|
|
806
|
+
$galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
|
|
807
|
+
$galleriaThumbnailNavigatorBg: transparent !default;
|
|
808
|
+
$galleriaThumbnailNavigatorColor: #f8f9fa !default;
|
|
809
|
+
$galleriaThumbnailNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
810
|
+
$galleriaThumbnailNavigatorHoverColor: #f8f9fa !default;
|
|
811
|
+
$galleriaThumbnailNavigatorBorderRadius: 50% !default;
|
|
812
|
+
$galleriaThumbnailNavigatorWidth: 2rem !default;
|
|
813
|
+
$galleriaThumbnailNavigatorHeight: 2rem !default;
|
|
814
|
+
|
|
815
|
+
//divider
|
|
816
|
+
$dividerHorizontalMargin: 1rem 0 !default;
|
|
817
|
+
$dividerHorizontalPadding: 0 1rem !default;
|
|
818
|
+
$dividerVerticalMargin: 0 1rem !default;
|
|
819
|
+
$dividerVerticalPadding: 1rem 0 !default;
|
|
820
|
+
$dividerSize: 1px !default;
|
|
821
|
+
$dividerColor: $shade600 !default;
|
|
822
|
+
|
|
823
|
+
//avatar
|
|
824
|
+
$avatarBg: $shade500 !default;
|
|
825
|
+
$avatarTextColor: $textColor !default;
|
|
826
|
+
|
|
827
|
+
//chip
|
|
828
|
+
$chipBg: $shade500 !default;
|
|
829
|
+
$chipTextColor: $textColor !default;
|
|
830
|
+
$chipBorderRadius: 16px !default;
|
|
831
|
+
$chipFocusBg: $shade500 !default;
|
|
832
|
+
$chipFocusTextColor: $textColor !default;
|
|
833
|
+
|
|
834
|
+
//scrollTop
|
|
835
|
+
$scrollTopBg: $highlightBg !default;
|
|
836
|
+
$scrollTopHoverBg: scale-color($highlightBg, $alpha: 24%) !default;
|
|
837
|
+
$scrollTopWidth: 3rem !default;
|
|
838
|
+
$scrollTopHeight: 3rem !default;
|
|
839
|
+
$scrollTopBorderRadius: 50% !default;
|
|
840
|
+
$scrollTopFontSize: 1.5rem !default;
|
|
841
|
+
$scrollTopTextColor: $highlightTextColor !default;
|
|
842
|
+
|
|
843
|
+
//skeleton
|
|
844
|
+
$skeletonBg: rgba(255, 255, 255, 0.06) !default;
|
|
845
|
+
$skeletonAnimationBg: rgba(255, 255, 255, 0.04) !default;
|
|
846
|
+
|
|
847
|
+
//splitter
|
|
848
|
+
$splitterGutterBg: $shade700 !default;
|
|
849
|
+
$splitterGutterHandleBg: $shade700 !default;
|
|
850
|
+
|
|
851
|
+
//speeddial
|
|
852
|
+
$speedDialButtonWidth: 4rem !default;
|
|
853
|
+
$speedDialButtonHeight: 4rem !default;
|
|
854
|
+
$speedDialButtonIconFontSize: 1.3rem !default;
|
|
855
|
+
$speedDialActionWidth: 3rem !default;
|
|
856
|
+
$speedDialActionHeight: 3rem !default;
|
|
857
|
+
$speedDialActionBg: $shade000 !default;
|
|
858
|
+
$speedDialActionHoverBg: $shade100 !default;
|
|
859
|
+
$speedDialActionTextColor: $shade900 !default;
|
|
860
|
+
$speedDialActionTextHoverColor: $shade900 !default;
|
|
861
|
+
|
|
862
|
+
//dock
|
|
863
|
+
$dockActionWidth: 4rem !default;
|
|
864
|
+
$dockActionHeight: 4rem !default;
|
|
865
|
+
$dockItemPadding: 0.5rem !default;
|
|
866
|
+
$dockItemBorderRadius: $borderRadius !default;
|
|
867
|
+
$dockCurrentItemMargin: 1.5rem !default;
|
|
868
|
+
$dockFirstItemsMargin: 1.3rem !default;
|
|
869
|
+
$dockSecondItemsMargin: 0.9rem !default;
|
|
870
|
+
$dockBg: rgba(255, 255, 255, 0.1) !default;
|
|
871
|
+
$dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
|
|
872
|
+
$dockPadding: 0.5rem 0.5rem !default;
|
|
873
|
+
$dockBorderRadius: 0.5rem !default;
|
|
874
|
+
|
|
875
|
+
//image
|
|
876
|
+
$imageMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
877
|
+
$imagePreviewToolbarPadding: 1rem !default;
|
|
878
|
+
$imagePreviewIndicatorColor: #f8f9fa !default;
|
|
879
|
+
$imagePreviewIndicatorBg: rgba(0, 0, 0, 0.5) !default;
|
|
880
|
+
$imagePreviewActionIconBg: transparent !default;
|
|
881
|
+
$imagePreviewActionIconColor: #f8f9fa !default;
|
|
882
|
+
$imagePreviewActionIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
883
|
+
$imagePreviewActionIconHoverColor: #f8f9fa !default;
|
|
884
|
+
$imagePreviewActionIconWidth: 3rem !default;
|
|
885
|
+
$imagePreviewActionIconHeight: 3rem !default;
|
|
886
|
+
$imagePreviewActionIconFontSize: 1.5rem !default;
|
|
887
|
+
$imagePreviewActionIconBorderRadius: 50% !default;
|
|
888
|
+
|
|
889
|
+
:root {
|
|
890
|
+
font-family: 'Inter var', sans-serif;
|
|
891
|
+
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
892
|
+
font-variation-settings: normal;
|
|
893
|
+
--font-family: 'Inter var', sans-serif;
|
|
894
|
+
--font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
|
|
895
|
+
--surface-a: #{$shade800};
|
|
896
|
+
--surface-b: #{$shade900};
|
|
897
|
+
--surface-c: #{$hoverBg};
|
|
898
|
+
--surface-d: #{$shade600};
|
|
899
|
+
--surface-e: #{$shade800};
|
|
900
|
+
--surface-f: #{$shade800};
|
|
901
|
+
--text-color: #{$shade000};
|
|
902
|
+
--text-color-secondary: #{$shade100};
|
|
903
|
+
--primary-color: #{$primaryColor};
|
|
904
|
+
--primary-color-text: #{$primaryTextColor};
|
|
905
|
+
--surface-0: #0a061a;
|
|
906
|
+
--surface-50: #231f31;
|
|
907
|
+
--surface-100: #3b3848;
|
|
908
|
+
--surface-200: #54515f;
|
|
909
|
+
--surface-300: #6c6a76;
|
|
910
|
+
--surface-400: #85838d;
|
|
911
|
+
--surface-500: #9d9ba3;
|
|
912
|
+
--surface-600: #b6b4ba;
|
|
913
|
+
--surface-700: #cecdd1;
|
|
914
|
+
--surface-800: #e7e6e8;
|
|
915
|
+
--surface-900: #ffffff;
|
|
916
|
+
--gray-50: #e7e6e8;
|
|
917
|
+
--gray-100: #cecdd1;
|
|
918
|
+
--gray-200: #b6b4ba;
|
|
919
|
+
--gray-300: #9d9ba3;
|
|
920
|
+
--gray-400: #85838d;
|
|
921
|
+
--gray-500: #6c6a76;
|
|
922
|
+
--gray-600: #54515f;
|
|
923
|
+
--gray-700: #3b3848;
|
|
924
|
+
--gray-800: #231f31;
|
|
925
|
+
--gray-900: #0a061a;
|
|
926
|
+
--content-padding: #{$panelContentPadding};
|
|
927
|
+
--inline-spacing: #{$inlineSpacing};
|
|
928
|
+
--border-radius: #{$borderRadius};
|
|
929
|
+
--surface-ground: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
|
930
|
+
--surface-section: #2e323f;
|
|
931
|
+
--surface-card: rgba(255, 255, 255, 0.05);
|
|
932
|
+
--surface-overlay: linear-gradient(180deg, #2e323f 0%, #0a061a 100%);
|
|
933
|
+
--surface-border: rgba(255, 255, 255, 0.15);
|
|
934
|
+
--surface-hover: rgba(255, 255, 255, 0.05);
|
|
935
|
+
--focus-ring: #{$focusShadow};
|
|
936
|
+
--maskbg: #{$maskBg};
|
|
937
|
+
--highlight-bg: #{$highlightBg};
|
|
938
|
+
--highlight-text-color: #{$highlightTextColor};
|
|
939
|
+
color-scheme: dark;
|
|
940
|
+
}
|