spiderly 19.5.1 → 19.5.3
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 +6 -1
- package/fesm2022/spiderly.mjs +2580 -2414
- package/fesm2022/spiderly.mjs.map +1 -1
- package/lib/components/auth/partials/auth.component.d.ts +3 -3
- package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +2 -2
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +2 -2
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +6 -6
- package/lib/components/spiderly-data-view/spiderly-data-view.component.d.ts +1 -1
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +1 -1
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +10 -2
- package/lib/entities/codebook.d.ts +1 -1
- package/lib/entities/filter-rule.d.ts +1 -1
- package/lib/entities/filter.d.ts +3 -3
- package/lib/entities/image-dimensions-validation-result.d.ts +4 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +1 -1
- package/lib/entities/init-top-bar-data.d.ts +2 -2
- package/lib/entities/is-authorized-for-save-event.d.ts +1 -1
- package/lib/entities/last-menu-icon-index-clicked.d.ts +1 -1
- package/lib/entities/lazy-load-selected-ids-result.d.ts +1 -1
- package/lib/entities/namebook.d.ts +1 -1
- package/lib/entities/primeng-option.d.ts +1 -1
- package/lib/entities/security-entities.d.ts +9 -9
- package/lib/entities/simple-save-result.d.ts +1 -1
- package/lib/interceptors/http-loading.interceptor.d.ts +1 -1
- package/lib/services/config.service.base.d.ts +1 -1
- package/lib/services/helper-functions.d.ts +8 -8
- package/lib/services/validator-abstract.service.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +26 -25
- package/styles/components/info-card/info-card.component.scss +7 -7
- package/styles/components/layout/profile-avatar/profile-avatar.component.scss +5 -5
- package/styles/components/layout/topbar/topbar.component.scss +8 -8
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +39 -39
- package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +45 -47
- package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +6 -6
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +15 -15
- package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +59 -59
- package/styles/controls/base-controls.scss +12 -12
- package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +18 -18
- package/styles/styles/layout/_content.scss +8 -8
- package/styles/styles/layout/_footer.scss +8 -8
- package/styles/styles/layout/_main.scss +18 -18
- package/styles/styles/layout/_menu.scss +116 -109
- package/styles/styles/layout/_mixins.scss +8 -8
- package/styles/styles/layout/_preloading.scss +38 -37
- package/styles/styles/layout/_responsive.scss +78 -78
- package/styles/styles/layout/_spiderly-controls.scss +1 -1
- package/styles/styles/layout/_topbar.scss +211 -206
- package/styles/styles/layout/_typography.scss +35 -30
- package/styles/styles/layout/_utils.scss +15 -15
- package/styles/styles/layout/_variables.scss +796 -705
- package/styles/styles/layout/layout.scss +2 -2
- package/styles/styles/styles.scss +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* General */
|
|
2
|
-
$scale:14px;
|
|
3
|
-
$borderRadius:6px;
|
|
4
|
-
$transitionDuration
|
|
2
|
+
$scale: 14px; /* main font size */
|
|
3
|
+
$borderRadius: 6px; /* border radius of layout element e.g. card, sidebar */
|
|
4
|
+
$transitionDuration: 0.2s; /* transition duration of layout elements e.g. sidebar, overlay menus */
|
|
5
5
|
$errorColorLight: rgb(255, 225, 225);
|
|
6
6
|
$errorColor: rgb(255, 59, 59);
|
|
7
7
|
$disabled: #f8f9fa;
|
|
@@ -13,801 +13,892 @@ $primaryDarkColor: scale-color($primaryColor, $lightness: -10%) !default;
|
|
|
13
13
|
$primaryDarkerColor: scale-color($primaryColor, $lightness: -20%) !default;
|
|
14
14
|
$primaryTextColor: #ffffff !default;
|
|
15
15
|
|
|
16
|
-
$highlightBg: #
|
|
16
|
+
$highlightBg: #e3f2fd !default;
|
|
17
17
|
$highlightTextColor: #495057 !default;
|
|
18
|
-
$highlightFocusBg: rgba($primaryColor, .24) !default;
|
|
18
|
+
$highlightFocusBg: rgba($primaryColor, 0.24) !default;
|
|
19
19
|
|
|
20
20
|
$colors: (
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
21
|
+
"blue": #111b2c,
|
|
22
|
+
"green": #4caf50,
|
|
23
|
+
"yellow": #fbc02d,
|
|
24
|
+
"cyan": #00bcd4,
|
|
25
|
+
"pink": #e91e63,
|
|
26
|
+
"indigo": #3f51b5,
|
|
27
|
+
"teal": #009688,
|
|
28
|
+
"orange": #f57c00,
|
|
29
|
+
"bluegray": #607d8b,
|
|
30
|
+
"purple": #9c27b0,
|
|
31
|
+
"red": #ff4032,
|
|
32
|
+
"primary": $primaryColor,
|
|
33
33
|
) !default;
|
|
34
34
|
|
|
35
35
|
//reused color variables
|
|
36
|
-
$shade000
|
|
37
|
-
$shade100
|
|
38
|
-
$shade200
|
|
39
|
-
$shade300
|
|
40
|
-
$shade400
|
|
41
|
-
$shade500
|
|
42
|
-
$shade600
|
|
43
|
-
$shade700
|
|
44
|
-
$shade800
|
|
45
|
-
$shade900
|
|
36
|
+
$shade000: #ffffff !default; //surface
|
|
37
|
+
$shade100: #f8f9fa !default; //header background
|
|
38
|
+
$shade200: #e9ecef !default; //hover background
|
|
39
|
+
$shade300: #dee2e6 !default; //border, divider
|
|
40
|
+
$shade400: #ced4da !default; //input border
|
|
41
|
+
$shade500: #adb5bd !default; //input icon
|
|
42
|
+
$shade600: #6c757d !default; //text secondary color
|
|
43
|
+
$shade700: #495057 !default; //text color
|
|
44
|
+
$shade800: #343a40 !default; //unused
|
|
45
|
+
$shade900: #212529 !default; //unused
|
|
46
46
|
|
|
47
47
|
//global
|
|
48
|
-
$fontFamily
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
$
|
|
52
|
-
$
|
|
53
|
-
$
|
|
54
|
-
$
|
|
55
|
-
$
|
|
56
|
-
$
|
|
57
|
-
$
|
|
58
|
-
$
|
|
59
|
-
|
|
60
|
-
$
|
|
61
|
-
$
|
|
62
|
-
$
|
|
63
|
-
$
|
|
64
|
-
$
|
|
48
|
+
$fontFamily:
|
|
49
|
+
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
|
|
50
|
+
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
|
51
|
+
$fontSize: 1rem !default;
|
|
52
|
+
$fontWeight: normal !default;
|
|
53
|
+
$textColor: $shade700 !default;
|
|
54
|
+
$textSecondaryColor: $shade600 !default;
|
|
55
|
+
$borderRadius: 3px !default;
|
|
56
|
+
$transitionDuration: 0.2s !default;
|
|
57
|
+
$formElementTransition:
|
|
58
|
+
background-color $transitionDuration,
|
|
59
|
+
color $transitionDuration,
|
|
60
|
+
border-color $transitionDuration,
|
|
61
|
+
box-shadow $transitionDuration !default;
|
|
62
|
+
$actionIconTransition:
|
|
63
|
+
background-color $transitionDuration,
|
|
64
|
+
color $transitionDuration,
|
|
65
|
+
box-shadow $transitionDuration !default;
|
|
66
|
+
$listItemTransition: box-shadow $transitionDuration !default;
|
|
67
|
+
$primeIconFontSize: 1rem !default;
|
|
68
|
+
$divider: 1px solid $shade300 !default;
|
|
69
|
+
$inlineSpacing: 0.5rem !default;
|
|
70
|
+
$disabledOpacity: 0.6 !default;
|
|
71
|
+
$maskBg: rgba(0, 0, 0, 0.4) !default;
|
|
72
|
+
$loadingIconFontSize: 2rem !default;
|
|
73
|
+
$errorColor: #f44336 !default;
|
|
65
74
|
|
|
66
75
|
//scale
|
|
67
|
-
$scaleSM:0.875 !default;
|
|
68
|
-
$scaleLG:1.25 !default;
|
|
76
|
+
$scaleSM: 0.875 !default;
|
|
77
|
+
$scaleLG: 1.25 !default;
|
|
69
78
|
|
|
70
79
|
//focus
|
|
71
80
|
// $focusOutlineColor:$primaryLightColor !default;
|
|
72
|
-
$focusOutline:0 none !default;
|
|
73
|
-
$focusOutlineOffset:0 !default;
|
|
81
|
+
$focusOutline: 0 none !default;
|
|
82
|
+
$focusOutlineOffset: 0 !default;
|
|
74
83
|
// $focusShadow:0 0 0 0.2rem $focusOutlineColor !default;
|
|
75
84
|
|
|
76
85
|
//action icons
|
|
77
|
-
$actionIconWidth:2rem !default;
|
|
78
|
-
$actionIconHeight:2rem !default;
|
|
79
|
-
$actionIconBg:transparent !default;
|
|
80
|
-
$actionIconBorder:0 none !default;
|
|
81
|
-
$actionIconColor
|
|
82
|
-
$actionIconHoverBg
|
|
83
|
-
$actionIconHoverBorderColor:transparent !default;
|
|
84
|
-
$actionIconHoverColor
|
|
85
|
-
$actionIconBorderRadius:50% !default;
|
|
86
|
+
$actionIconWidth: 2rem !default;
|
|
87
|
+
$actionIconHeight: 2rem !default;
|
|
88
|
+
$actionIconBg: transparent !default;
|
|
89
|
+
$actionIconBorder: 0 none !default;
|
|
90
|
+
$actionIconColor: $shade600 !default;
|
|
91
|
+
$actionIconHoverBg: $shade200 !default;
|
|
92
|
+
$actionIconHoverBorderColor: transparent !default;
|
|
93
|
+
$actionIconHoverColor: $shade700 !default;
|
|
94
|
+
$actionIconBorderRadius: 50% !default;
|
|
86
95
|
|
|
87
96
|
//input field (e.g. inputtext, spinner, inputmask)
|
|
88
|
-
$inputPadding
|
|
89
|
-
$inputTextFontSize:1rem !default;
|
|
97
|
+
$inputPadding: 0.5rem 0.5rem !default;
|
|
98
|
+
$inputTextFontSize: 1rem !default;
|
|
90
99
|
|
|
91
|
-
$inputBg
|
|
92
|
-
$inputTextColor
|
|
93
|
-
$inputIconColor
|
|
94
|
-
$inputBorder:1px solid $shade400 !default;
|
|
100
|
+
$inputBg: $shade000 !default;
|
|
101
|
+
$inputTextColor: $shade700 !default;
|
|
102
|
+
$inputIconColor: $shade600 !default;
|
|
103
|
+
$inputBorder: 1px solid $shade400 !default;
|
|
95
104
|
// $inputHoverBorderColor:$primaryColor !default;
|
|
96
105
|
// $inputFocusBorderColor:$primaryColor !default;
|
|
97
|
-
$inputErrorBorderColor
|
|
98
|
-
$inputPlaceholderTextColor
|
|
99
|
-
$inputFilledBg
|
|
100
|
-
$inputFilledHoverBg
|
|
101
|
-
$inputFilledFocusBg
|
|
106
|
+
$inputErrorBorderColor: $errorColor !default;
|
|
107
|
+
$inputPlaceholderTextColor: $shade600 !default;
|
|
108
|
+
$inputFilledBg: $shade100 !default;
|
|
109
|
+
$inputFilledHoverBg: $inputFilledBg !default;
|
|
110
|
+
$inputFilledFocusBg: $shade000 !default;
|
|
102
111
|
|
|
103
112
|
//input groups
|
|
104
|
-
$inputGroupBg
|
|
105
|
-
$inputGroupTextColor
|
|
106
|
-
$inputGroupAddOnMinWidth:2.357rem !default;
|
|
113
|
+
$inputGroupBg: $shade200 !default;
|
|
114
|
+
$inputGroupTextColor: $shade600 !default;
|
|
115
|
+
$inputGroupAddOnMinWidth: 2.357rem !default;
|
|
107
116
|
|
|
108
117
|
//input lists (e.g. dropdown, autocomplete, multiselect, orderlist)
|
|
109
|
-
$inputListBg
|
|
110
|
-
$inputListTextColor
|
|
111
|
-
$inputListBorder
|
|
112
|
-
$inputListPadding
|
|
113
|
-
$inputListItemPadding
|
|
114
|
-
$inputListItemBg:transparent !default;
|
|
115
|
-
$inputListItemTextColor
|
|
116
|
-
$inputListItemHoverBg
|
|
117
|
-
$inputListItemTextHoverColor
|
|
118
|
-
$inputListItemFocusBg
|
|
119
|
-
$inputListItemTextFocusColor
|
|
120
|
-
$inputListItemBorder:0 none !default;
|
|
121
|
-
$inputListItemBorderRadius:0 !default;
|
|
122
|
-
$inputListItemMargin:0 !default;
|
|
118
|
+
$inputListBg: $shade000 !default;
|
|
119
|
+
$inputListTextColor: $shade700 !default;
|
|
120
|
+
$inputListBorder: $inputBorder !default;
|
|
121
|
+
$inputListPadding: 0.5rem 0 !default;
|
|
122
|
+
$inputListItemPadding: 0.5rem 1rem !default;
|
|
123
|
+
$inputListItemBg: transparent !default;
|
|
124
|
+
$inputListItemTextColor: $shade700 !default;
|
|
125
|
+
$inputListItemHoverBg: $shade200 !default;
|
|
126
|
+
$inputListItemTextHoverColor: $shade700 !default;
|
|
127
|
+
$inputListItemFocusBg: $shade300 !default;
|
|
128
|
+
$inputListItemTextFocusColor: $shade700 !default;
|
|
129
|
+
$inputListItemBorder: 0 none !default;
|
|
130
|
+
$inputListItemBorderRadius: 0 !default;
|
|
131
|
+
$inputListItemMargin: 0 !default;
|
|
123
132
|
// $inputListItemFocusShadow:inset 0 0 0 0.15rem $focusOutlineColor !default;
|
|
124
|
-
$inputListHeaderPadding
|
|
125
|
-
$inputListHeaderMargin:0 !default;
|
|
126
|
-
$inputListHeaderBg
|
|
127
|
-
$inputListHeaderTextColor
|
|
128
|
-
$inputListHeaderBorder:0 none !default;
|
|
133
|
+
$inputListHeaderPadding: 0.5rem 1rem !default;
|
|
134
|
+
$inputListHeaderMargin: 0 !default;
|
|
135
|
+
$inputListHeaderBg: $shade100 !default;
|
|
136
|
+
$inputListHeaderTextColor: $shade700 !default;
|
|
137
|
+
$inputListHeaderBorder: 0 none !default;
|
|
129
138
|
|
|
130
139
|
//inputs with overlays (e.g. autocomplete, dropdown, multiselect)
|
|
131
|
-
$inputOverlayBg
|
|
132
|
-
$inputOverlayHeaderBg
|
|
133
|
-
$inputOverlayBorder:0 none !default;
|
|
134
|
-
$inputOverlayShadow:
|
|
140
|
+
$inputOverlayBg: $inputListBg !default;
|
|
141
|
+
$inputOverlayHeaderBg: $inputListHeaderBg !default;
|
|
142
|
+
$inputOverlayBorder: 0 none !default;
|
|
143
|
+
$inputOverlayShadow:
|
|
144
|
+
0 2px 4px -1px rgba(0, 0, 0, 0.2),
|
|
145
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
|
146
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
|
|
135
147
|
|
|
136
148
|
//password
|
|
137
|
-
$passwordMeterBg
|
|
138
|
-
$passwordWeakBg
|
|
139
|
-
$passwordMediumBg
|
|
140
|
-
$passwordStrongBg
|
|
149
|
+
$passwordMeterBg: $shade300 !default;
|
|
150
|
+
$passwordWeakBg: #d32f2f !default;
|
|
151
|
+
$passwordMediumBg: #fbc02d !default;
|
|
152
|
+
$passwordStrongBg: #689f38 !default;
|
|
141
153
|
|
|
142
154
|
//button
|
|
143
|
-
$buttonPadding
|
|
144
|
-
$buttonIconOnlyWidth:2.357rem !default;
|
|
145
|
-
$buttonIconOnlyPadding
|
|
155
|
+
$buttonPadding: 0.5rem 1rem !default;
|
|
156
|
+
$buttonIconOnlyWidth: 2.357rem !default;
|
|
157
|
+
$buttonIconOnlyPadding: 0.5rem 0 !default;
|
|
146
158
|
// $buttonBg:$primaryColor !default;
|
|
147
|
-
$buttonTextColor
|
|
159
|
+
$buttonTextColor: $primaryTextColor !default;
|
|
148
160
|
// $buttonBorder:1px solid $primaryColor !default;
|
|
149
161
|
// $buttonHoverBg:$primaryDarkColor !default;
|
|
150
|
-
$buttonTextHoverColor
|
|
162
|
+
$buttonTextHoverColor: $primaryTextColor !default;
|
|
151
163
|
// $buttonHoverBorderColor:$primaryDarkColor !default;
|
|
152
164
|
// $buttonActiveBg:$primaryDarkerColor !default;
|
|
153
|
-
$buttonTextActiveColor
|
|
165
|
+
$buttonTextActiveColor: $primaryTextColor !default;
|
|
154
166
|
// $buttonActiveBorderColor:$primaryDarkerColor !default;
|
|
155
|
-
$raisedButtonShadow:
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
$
|
|
160
|
-
|
|
161
|
-
$
|
|
162
|
-
$
|
|
163
|
-
$
|
|
164
|
-
|
|
165
|
-
$
|
|
166
|
-
$
|
|
167
|
-
|
|
168
|
-
$
|
|
169
|
-
$
|
|
170
|
-
$
|
|
171
|
-
$
|
|
172
|
-
$
|
|
173
|
-
$
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
$
|
|
177
|
-
$
|
|
178
|
-
$
|
|
179
|
-
|
|
180
|
-
$
|
|
181
|
-
$
|
|
182
|
-
$
|
|
183
|
-
|
|
184
|
-
$
|
|
185
|
-
$
|
|
186
|
-
|
|
187
|
-
$
|
|
188
|
-
|
|
189
|
-
$
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
$
|
|
193
|
-
$
|
|
194
|
-
$
|
|
195
|
-
$
|
|
196
|
-
$
|
|
197
|
-
|
|
198
|
-
$
|
|
199
|
-
$
|
|
200
|
-
|
|
201
|
-
$
|
|
202
|
-
$
|
|
203
|
-
$
|
|
204
|
-
$
|
|
205
|
-
$
|
|
206
|
-
|
|
207
|
-
$
|
|
208
|
-
|
|
209
|
-
$
|
|
210
|
-
$
|
|
211
|
-
$
|
|
212
|
-
$
|
|
213
|
-
$
|
|
214
|
-
$
|
|
215
|
-
$
|
|
216
|
-
$
|
|
217
|
-
|
|
218
|
-
$
|
|
219
|
-
|
|
220
|
-
$
|
|
221
|
-
|
|
222
|
-
$
|
|
223
|
-
$
|
|
224
|
-
$
|
|
225
|
-
$
|
|
226
|
-
|
|
227
|
-
$
|
|
228
|
-
|
|
229
|
-
|
|
167
|
+
$raisedButtonShadow:
|
|
168
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
169
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
170
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12) !default;
|
|
171
|
+
$roundedButtonBorderRadius: 2rem !default;
|
|
172
|
+
|
|
173
|
+
$textButtonHoverBgOpacity: 0.04 !default;
|
|
174
|
+
$textButtonActiveBgOpacity: 0.16 !default;
|
|
175
|
+
$outlinedButtonBorder: 1px solid !default;
|
|
176
|
+
$plainButtonTextColor: $textSecondaryColor !default;
|
|
177
|
+
$plainButtonHoverBgColor: $shade200 !default;
|
|
178
|
+
$plainButtonActiveBgColor: $shade300 !default;
|
|
179
|
+
|
|
180
|
+
$secondaryButtonBg: #607d8b !default;
|
|
181
|
+
$secondaryButtonTextColor: #ffffff !default;
|
|
182
|
+
$secondaryButtonBorder: 1px solid $secondaryButtonBg !default;
|
|
183
|
+
$secondaryButtonHoverBg: scale-color(
|
|
184
|
+
$secondaryButtonBg,
|
|
185
|
+
$lightness: -10%
|
|
186
|
+
) !default;
|
|
187
|
+
$secondaryButtonTextHoverColor: $secondaryButtonTextColor !default;
|
|
188
|
+
$secondaryButtonHoverBorderColor: scale-color(
|
|
189
|
+
$secondaryButtonBg,
|
|
190
|
+
$lightness: -10%
|
|
191
|
+
) !default;
|
|
192
|
+
$secondaryButtonActiveBg: scale-color(
|
|
193
|
+
$secondaryButtonBg,
|
|
194
|
+
$lightness: -20%
|
|
195
|
+
) !default;
|
|
196
|
+
$secondaryButtonTextActiveColor: $secondaryButtonTextColor !default;
|
|
197
|
+
$secondaryButtonActiveBorderColor: scale-color(
|
|
198
|
+
$secondaryButtonBg,
|
|
199
|
+
$lightness: -20%
|
|
200
|
+
) !default;
|
|
201
|
+
$secondaryButtonFocusShadow: 0 0 0 0.2rem
|
|
202
|
+
scale-color($secondaryButtonBg, $lightness: 60%) !default;
|
|
203
|
+
|
|
204
|
+
$infoButtonBg: #0288d1 !default;
|
|
205
|
+
$infoButtonTextColor: #ffffff !default;
|
|
206
|
+
$infoButtonBorder: 1px solid $infoButtonBg !default;
|
|
207
|
+
$infoButtonHoverBg: scale-color($infoButtonBg, $lightness: -10%) !default;
|
|
208
|
+
$infoButtonTextHoverColor: $infoButtonTextColor !default;
|
|
209
|
+
$infoButtonHoverBorderColor: scale-color(
|
|
210
|
+
$infoButtonBg,
|
|
211
|
+
$lightness: -10%
|
|
212
|
+
) !default;
|
|
213
|
+
$infoButtonActiveBg: scale-color($infoButtonBg, $lightness: -20%) !default;
|
|
214
|
+
$infoButtonTextActiveColor: $infoButtonTextColor !default;
|
|
215
|
+
$infoButtonActiveBorderColor: scale-color(
|
|
216
|
+
$infoButtonBg,
|
|
217
|
+
$lightness: -20%
|
|
218
|
+
) !default;
|
|
219
|
+
$infoButtonFocusShadow: 0 0 0 0.2rem scale-color($infoButtonBg, $lightness: 60%) !default;
|
|
220
|
+
|
|
221
|
+
$successButtonBg: #689f38 !default;
|
|
222
|
+
$successButtonTextColor: #ffffff !default;
|
|
223
|
+
$successButtonBorder: 1px solid $successButtonBg !default;
|
|
224
|
+
$successButtonHoverBg: scale-color($successButtonBg, $lightness: -10%) !default;
|
|
225
|
+
$successButtonTextHoverColor: $successButtonTextColor !default;
|
|
226
|
+
$successButtonHoverBorderColor: scale-color(
|
|
227
|
+
$successButtonBg,
|
|
228
|
+
$lightness: -10%
|
|
229
|
+
) !default;
|
|
230
|
+
$successButtonActiveBg: scale-color(
|
|
231
|
+
$successButtonBg,
|
|
232
|
+
$lightness: -20%
|
|
233
|
+
) !default;
|
|
234
|
+
$successButtonTextActiveColor: $successButtonTextColor !default;
|
|
235
|
+
$successButtonActiveBorderColor: scale-color(
|
|
236
|
+
$successButtonBg,
|
|
237
|
+
$lightness: -20%
|
|
238
|
+
) !default;
|
|
239
|
+
$successButtonFocusShadow: 0 0 0 0.2rem
|
|
240
|
+
scale-color($successButtonBg, $lightness: 60%) !default;
|
|
241
|
+
|
|
242
|
+
$warningButtonBg: #fbc02d !default;
|
|
243
|
+
$warningButtonTextColor: #212529 !default;
|
|
244
|
+
$warningButtonBorder: 1px solid $warningButtonBg !default;
|
|
245
|
+
$warningButtonHoverBg: scale-color($warningButtonBg, $lightness: -10%) !default;
|
|
246
|
+
$warningButtonTextHoverColor: $warningButtonTextColor !default;
|
|
247
|
+
$warningButtonHoverBorderColor: scale-color(
|
|
248
|
+
$warningButtonBg,
|
|
249
|
+
$lightness: -10%
|
|
250
|
+
) !default;
|
|
251
|
+
$warningButtonActiveBg: scale-color(
|
|
252
|
+
$warningButtonBg,
|
|
253
|
+
$lightness: -20%
|
|
254
|
+
) !default;
|
|
255
|
+
$warningButtonTextActiveColor: $warningButtonTextColor !default;
|
|
256
|
+
$warningButtonActiveBorderColor: scale-color(
|
|
257
|
+
$warningButtonBg,
|
|
258
|
+
$lightness: -20%
|
|
259
|
+
) !default;
|
|
260
|
+
$warningButtonFocusShadow: 0 0 0 0.2rem
|
|
261
|
+
scale-color($warningButtonBg, $lightness: 60%) !default;
|
|
262
|
+
|
|
263
|
+
$helpButtonBg: #9c27b0 !default;
|
|
264
|
+
$helpButtonTextColor: #ffffff !default;
|
|
265
|
+
$helpButtonBorder: 1px solid $helpButtonBg !default;
|
|
266
|
+
$helpButtonHoverBg: scale-color($helpButtonBg, $lightness: -10%) !default;
|
|
267
|
+
$helpButtonTextHoverColor: $helpButtonTextColor !default;
|
|
268
|
+
$helpButtonHoverBorderColor: scale-color(
|
|
269
|
+
$helpButtonBg,
|
|
270
|
+
$lightness: -10%
|
|
271
|
+
) !default;
|
|
272
|
+
$helpButtonActiveBg: scale-color($helpButtonBg, $lightness: -20%) !default;
|
|
273
|
+
$helpButtonTextActiveColor: $helpButtonTextColor !default;
|
|
274
|
+
$helpButtonActiveBorderColor: scale-color(
|
|
275
|
+
$helpButtonBg,
|
|
276
|
+
$lightness: -20%
|
|
277
|
+
) !default;
|
|
278
|
+
$helpButtonFocusShadow: 0 0 0 0.2rem scale-color($helpButtonBg, $lightness: 60%) !default;
|
|
279
|
+
|
|
280
|
+
$dangerButtonBg: #d32f2f !default;
|
|
281
|
+
$dangerButtonTextColor: #ffffff !default;
|
|
282
|
+
$dangerButtonBorder: 1px solid $dangerButtonBg !default;
|
|
283
|
+
$dangerButtonHoverBg: scale-color($dangerButtonBg, $lightness: -10%) !default;
|
|
284
|
+
$dangerButtonTextHoverColor: $dangerButtonTextColor !default;
|
|
285
|
+
$dangerButtonHoverBorderColor: scale-color(
|
|
286
|
+
$dangerButtonBg,
|
|
287
|
+
$lightness: -10%
|
|
288
|
+
) !default;
|
|
289
|
+
$dangerButtonActiveBg: scale-color($dangerButtonBg, $lightness: -20%) !default;
|
|
290
|
+
$dangerButtonTextActiveColor: $dangerButtonTextColor !default;
|
|
291
|
+
$dangerButtonActiveBorderColor: scale-color(
|
|
292
|
+
$dangerButtonBg,
|
|
293
|
+
$lightness: -20%
|
|
294
|
+
) !default;
|
|
295
|
+
$dangerButtonFocusShadow: 0 0 0 0.2rem
|
|
296
|
+
scale-color($dangerButtonBg, $lightness: 60%) !default;
|
|
230
297
|
|
|
231
298
|
// $linkButtonColor:$primaryDarkerColor !default;
|
|
232
299
|
// $linkButtonHoverColor:$primaryDarkerColor !default;
|
|
233
|
-
$linkButtonTextHoverDecoration:underline !default;
|
|
300
|
+
$linkButtonTextHoverDecoration: underline !default;
|
|
234
301
|
// $linkButtonFocusShadow:0 0 0 0.2rem $focusOutlineColor !default;
|
|
235
302
|
|
|
236
303
|
//checkbox
|
|
237
|
-
$checkboxWidth:20px !default;
|
|
238
|
-
$checkboxHeight:20px !default;
|
|
239
|
-
$checkboxBorder:2px solid $shade400 !default;
|
|
240
|
-
$checkboxIconFontSize:14px !default;
|
|
304
|
+
$checkboxWidth: 20px !default;
|
|
305
|
+
$checkboxHeight: 20px !default;
|
|
306
|
+
$checkboxBorder: 2px solid $shade400 !default;
|
|
307
|
+
$checkboxIconFontSize: 14px !default;
|
|
241
308
|
// $checkboxActiveBorderColor:$primaryColor !default;
|
|
242
309
|
// $checkboxActiveBg:$primaryColor !default;
|
|
243
|
-
$checkboxIconActiveColor
|
|
310
|
+
$checkboxIconActiveColor: $primaryTextColor !default;
|
|
244
311
|
// $checkboxActiveHoverBg:$primaryDarkerColor !default;
|
|
245
|
-
$checkboxIconActiveHoverColor
|
|
312
|
+
$checkboxIconActiveHoverColor: $primaryTextColor !default;
|
|
246
313
|
// $checkboxActiveHoverBorderColor:$primaryDarkerColor !default;
|
|
247
314
|
|
|
248
315
|
//radiobutton
|
|
249
|
-
$radiobuttonWidth:20px !default;
|
|
250
|
-
$radiobuttonHeight:20px !default;
|
|
251
|
-
$radiobuttonBorder:2px solid $shade400 !default;
|
|
252
|
-
$radiobuttonIconSize:12px !default;
|
|
316
|
+
$radiobuttonWidth: 20px !default;
|
|
317
|
+
$radiobuttonHeight: 20px !default;
|
|
318
|
+
$radiobuttonBorder: 2px solid $shade400 !default;
|
|
319
|
+
$radiobuttonIconSize: 12px !default;
|
|
253
320
|
// $radiobuttonActiveBorderColor:$primaryColor !default;
|
|
254
321
|
// $radiobuttonActiveBg:$primaryColor !default;
|
|
255
|
-
$radiobuttonIconActiveColor
|
|
322
|
+
$radiobuttonIconActiveColor: $primaryTextColor !default;
|
|
256
323
|
// $radiobuttonActiveHoverBg:$primaryDarkerColor !default;
|
|
257
|
-
$radiobuttonIconActiveHoverColor
|
|
324
|
+
$radiobuttonIconActiveHoverColor: $primaryTextColor !default;
|
|
258
325
|
// $radiobuttonActiveHoverBorderColor:$primaryDarkerColor !default;
|
|
259
326
|
|
|
260
327
|
//colorpicker
|
|
261
|
-
$colorPickerPreviewWidth:2rem !default;
|
|
262
|
-
$colorPickerPreviewHeight:2rem !default;
|
|
263
|
-
$colorPickerBg
|
|
264
|
-
$colorPickerBorder:1px solid #191919 !default;
|
|
265
|
-
$colorPickerHandleColor
|
|
328
|
+
$colorPickerPreviewWidth: 2rem !default;
|
|
329
|
+
$colorPickerPreviewHeight: 2rem !default;
|
|
330
|
+
$colorPickerBg: #323232 !default;
|
|
331
|
+
$colorPickerBorder: 1px solid #191919 !default;
|
|
332
|
+
$colorPickerHandleColor: $shade000 !default;
|
|
266
333
|
|
|
267
334
|
//togglebutton
|
|
268
|
-
$toggleButtonBg
|
|
269
|
-
$toggleButtonBorder:1px solid $shade400 !default;
|
|
270
|
-
$toggleButtonTextColor
|
|
271
|
-
$toggleButtonIconColor
|
|
272
|
-
$toggleButtonHoverBg
|
|
273
|
-
$toggleButtonHoverBorderColor
|
|
274
|
-
$toggleButtonTextHoverColor
|
|
275
|
-
$toggleButtonIconHoverColor
|
|
335
|
+
$toggleButtonBg: $inputBg !default;
|
|
336
|
+
$toggleButtonBorder: 1px solid $shade400 !default;
|
|
337
|
+
$toggleButtonTextColor: $shade700 !default;
|
|
338
|
+
$toggleButtonIconColor: $shade600 !default;
|
|
339
|
+
$toggleButtonHoverBg: $shade200 !default;
|
|
340
|
+
$toggleButtonHoverBorderColor: $shade400 !default;
|
|
341
|
+
$toggleButtonTextHoverColor: $shade700 !default;
|
|
342
|
+
$toggleButtonIconHoverColor: $shade600 !default;
|
|
276
343
|
// $toggleButtonActiveBg:$primaryColor !default;
|
|
277
344
|
// $toggleButtonActiveBorderColor:$primaryColor !default;
|
|
278
|
-
$toggleButtonTextActiveColor
|
|
279
|
-
$toggleButtonIconActiveColor
|
|
345
|
+
$toggleButtonTextActiveColor: $primaryTextColor !default;
|
|
346
|
+
$toggleButtonIconActiveColor: $primaryTextColor !default;
|
|
280
347
|
// $toggleButtonActiveHoverBg:$primaryDarkColor !default;
|
|
281
348
|
// $toggleButtonActiveHoverBorderColor:$primaryDarkColor !default;
|
|
282
|
-
$toggleButtonTextActiveHoverColor
|
|
283
|
-
$toggleButtonIconActiveHoverColor
|
|
349
|
+
$toggleButtonTextActiveHoverColor: $primaryTextColor !default;
|
|
350
|
+
$toggleButtonIconActiveHoverColor: $primaryTextColor !default;
|
|
284
351
|
|
|
285
352
|
//inplace
|
|
286
|
-
$inplacePadding
|
|
287
|
-
$inplaceHoverBg
|
|
288
|
-
$inplaceTextHoverColor
|
|
353
|
+
$inplacePadding: $inputPadding !default;
|
|
354
|
+
$inplaceHoverBg: $shade200 !default;
|
|
355
|
+
$inplaceTextHoverColor: $shade700 !default;
|
|
289
356
|
|
|
290
357
|
//rating
|
|
291
|
-
$ratingIconFontSize:1.143rem !default;
|
|
292
|
-
$ratingCancelIconColor
|
|
293
|
-
$ratingCancelIconHoverColor
|
|
294
|
-
$ratingStarIconOffColor
|
|
358
|
+
$ratingIconFontSize: 1.143rem !default;
|
|
359
|
+
$ratingCancelIconColor: #e74c3c !default;
|
|
360
|
+
$ratingCancelIconHoverColor: #c0392b !default;
|
|
361
|
+
$ratingStarIconOffColor: $shade700 !default;
|
|
295
362
|
// $ratingStarIconOnColor:$primaryColor !default;
|
|
296
363
|
// $ratingStarIconHoverColor:$primaryColor !default;
|
|
297
364
|
|
|
298
365
|
//slider
|
|
299
|
-
$sliderBg
|
|
300
|
-
$sliderBorder:0 none !default;
|
|
301
|
-
$sliderHorizontalHeight
|
|
302
|
-
$sliderVerticalWidth:0.286rem !default;
|
|
303
|
-
$sliderHandleWidth:1.143rem !default;
|
|
304
|
-
$sliderHandleHeight:1.143rem !default;
|
|
305
|
-
$sliderHandleBg
|
|
366
|
+
$sliderBg: $shade300 !default;
|
|
367
|
+
$sliderBorder: 0 none !default;
|
|
368
|
+
$sliderHorizontalHeight: 0.286rem !default;
|
|
369
|
+
$sliderVerticalWidth: 0.286rem !default;
|
|
370
|
+
$sliderHandleWidth: 1.143rem !default;
|
|
371
|
+
$sliderHandleHeight: 1.143rem !default;
|
|
372
|
+
$sliderHandleBg: $shade000 !default;
|
|
306
373
|
// $sliderHandleBorder:2px solid $primaryColor !default;
|
|
307
|
-
$sliderHandleBorderRadius:50% !default;
|
|
374
|
+
$sliderHandleBorderRadius: 50% !default;
|
|
308
375
|
// $sliderHandleHoverBorderColor:$primaryColor !default;
|
|
309
376
|
// $sliderHandleHoverBg:$primaryColor !default;
|
|
310
377
|
// $sliderRangeBg:$primaryColor !default;
|
|
311
378
|
|
|
312
379
|
//calendar
|
|
313
|
-
$calendarTableMargin
|
|
314
|
-
$calendarPadding
|
|
315
|
-
$calendarBg
|
|
316
|
-
$calendarInlineBg
|
|
317
|
-
$calendarTextColor
|
|
318
|
-
$calendarBorder
|
|
319
|
-
$calendarOverlayBorder
|
|
320
|
-
|
|
321
|
-
$calendarHeaderPadding
|
|
322
|
-
$calendarHeaderBg
|
|
323
|
-
$calendarInlineHeaderBg
|
|
324
|
-
$calendarHeaderBorder:1px solid $shade300 !default;
|
|
325
|
-
$calendarHeaderTextColor
|
|
326
|
-
$calendarHeaderFontWeight:600 !default;
|
|
327
|
-
$calendarHeaderCellPadding
|
|
380
|
+
$calendarTableMargin: 0.5rem 0 !default;
|
|
381
|
+
$calendarPadding: 0.5rem !default;
|
|
382
|
+
$calendarBg: $shade000 !default;
|
|
383
|
+
$calendarInlineBg: $calendarBg !default;
|
|
384
|
+
$calendarTextColor: $shade700 !default;
|
|
385
|
+
$calendarBorder: $inputListBorder !default;
|
|
386
|
+
$calendarOverlayBorder: $inputOverlayBorder !default;
|
|
387
|
+
|
|
388
|
+
$calendarHeaderPadding: 0.5rem !default;
|
|
389
|
+
$calendarHeaderBg: $shade000 !default;
|
|
390
|
+
$calendarInlineHeaderBg: $calendarBg !default;
|
|
391
|
+
$calendarHeaderBorder: 1px solid $shade300 !default;
|
|
392
|
+
$calendarHeaderTextColor: $shade700 !default;
|
|
393
|
+
$calendarHeaderFontWeight: 600 !default;
|
|
394
|
+
$calendarHeaderCellPadding: 0.5rem !default;
|
|
328
395
|
// $calendarMonthYearHeaderHoverTextColor: $primaryColor !default;
|
|
329
396
|
|
|
330
|
-
$calendarCellDatePadding
|
|
331
|
-
$calendarCellDateWidth:2.5rem !default;
|
|
332
|
-
$calendarCellDateHeight:2.5rem !default;
|
|
333
|
-
$calendarCellDateBorderRadius:50% !default;
|
|
334
|
-
$calendarCellDateBorder:1px solid transparent !default;
|
|
335
|
-
$calendarCellDateHoverBg
|
|
336
|
-
$calendarCellDateTodayBg
|
|
337
|
-
$calendarCellDateTodayBorderColor:transparent !default;
|
|
338
|
-
$calendarCellDateTodayTextColor
|
|
397
|
+
$calendarCellDatePadding: 0.5rem !default;
|
|
398
|
+
$calendarCellDateWidth: 2.5rem !default;
|
|
399
|
+
$calendarCellDateHeight: 2.5rem !default;
|
|
400
|
+
$calendarCellDateBorderRadius: 50% !default;
|
|
401
|
+
$calendarCellDateBorder: 1px solid transparent !default;
|
|
402
|
+
$calendarCellDateHoverBg: $shade200 !default;
|
|
403
|
+
$calendarCellDateTodayBg: $shade400 !default;
|
|
404
|
+
$calendarCellDateTodayBorderColor: transparent !default;
|
|
405
|
+
$calendarCellDateTodayTextColor: $shade700 !default;
|
|
339
406
|
|
|
340
|
-
$calendarButtonBarPadding:1rem 0 !default;
|
|
341
|
-
$calendarTimePickerPadding
|
|
342
|
-
$calendarTimePickerElementPadding:0 .5rem !default;
|
|
343
|
-
$calendarTimePickerTimeFontSize:1.25rem !default;
|
|
407
|
+
$calendarButtonBarPadding: 1rem 0 !default;
|
|
408
|
+
$calendarTimePickerPadding: 0.5rem !default;
|
|
409
|
+
$calendarTimePickerElementPadding: 0 0.5rem !default;
|
|
410
|
+
$calendarTimePickerTimeFontSize: 1.25rem !default;
|
|
344
411
|
|
|
345
|
-
$calendarBreakpoint:769px !default;
|
|
346
|
-
$calendarCellDatePaddingSM:0 !default;
|
|
412
|
+
$calendarBreakpoint: 769px !default;
|
|
413
|
+
$calendarCellDatePaddingSM: 0 !default;
|
|
347
414
|
|
|
348
415
|
//input switch
|
|
349
|
-
$inputSwitchWidth:3rem !default;
|
|
350
|
-
$inputSwitchHeight:1.75rem !default;
|
|
351
|
-
$inputSwitchBorderRadius:30px !default;
|
|
352
|
-
$inputSwitchHandleWidth:1.
|
|
353
|
-
$inputSwitchHandleHeight:1.
|
|
354
|
-
$inputSwitchHandleBorderRadius:50% !default;
|
|
355
|
-
$inputSwitchSliderPadding
|
|
356
|
-
$inputSwitchSliderOffBg
|
|
357
|
-
$inputSwitchHandleOffBg
|
|
358
|
-
$inputSwitchSliderOffHoverBg:scale-color($shade400, $lightness: -10%) !default;
|
|
416
|
+
$inputSwitchWidth: 3rem !default;
|
|
417
|
+
$inputSwitchHeight: 1.75rem !default;
|
|
418
|
+
$inputSwitchBorderRadius: 30px !default;
|
|
419
|
+
$inputSwitchHandleWidth: 1.25rem !default;
|
|
420
|
+
$inputSwitchHandleHeight: 1.25rem !default;
|
|
421
|
+
$inputSwitchHandleBorderRadius: 50% !default;
|
|
422
|
+
$inputSwitchSliderPadding: 0.25rem !default;
|
|
423
|
+
$inputSwitchSliderOffBg: $shade400 !default;
|
|
424
|
+
$inputSwitchHandleOffBg: $shade000 !default;
|
|
425
|
+
$inputSwitchSliderOffHoverBg: scale-color($shade400, $lightness: -10%) !default;
|
|
359
426
|
// $inputSwitchSliderOnBg:$primaryColor !default;
|
|
360
427
|
// $inputSwitchSliderOnHoverBg:$primaryDarkColor !default;
|
|
361
|
-
$inputSwitchHandleOnBg
|
|
428
|
+
$inputSwitchHandleOnBg: $shade000 !default;
|
|
362
429
|
|
|
363
430
|
//panel
|
|
364
|
-
$panelHeaderBorderColor
|
|
365
|
-
$panelHeaderBorder:1px solid $shade300 !default;
|
|
366
|
-
$panelHeaderBg
|
|
367
|
-
$panelHeaderTextColor
|
|
368
|
-
$panelHeaderFontWeight:600 !default;
|
|
369
|
-
$panelHeaderPadding:1rem !default;
|
|
370
|
-
$panelToggleableHeaderPadding
|
|
371
|
-
|
|
372
|
-
$panelHeaderHoverBg
|
|
373
|
-
$panelHeaderHoverBorderColor
|
|
374
|
-
$panelHeaderTextHoverColor
|
|
431
|
+
$panelHeaderBorderColor: $shade300 !default;
|
|
432
|
+
$panelHeaderBorder: 1px solid $shade300 !default;
|
|
433
|
+
$panelHeaderBg: $shade100 !default;
|
|
434
|
+
$panelHeaderTextColor: $shade700 !default;
|
|
435
|
+
$panelHeaderFontWeight: 600 !default;
|
|
436
|
+
$panelHeaderPadding: 1rem !default;
|
|
437
|
+
$panelToggleableHeaderPadding: 0.5rem 1rem !default;
|
|
438
|
+
|
|
439
|
+
$panelHeaderHoverBg: $shade200 !default;
|
|
440
|
+
$panelHeaderHoverBorderColor: $shade300 !default;
|
|
441
|
+
$panelHeaderTextHoverColor: $shade700 !default;
|
|
375
442
|
|
|
376
443
|
$panelContentBorderColor: $shade300 !default;
|
|
377
|
-
$panelContentBorder:1px solid $shade300 !default;
|
|
378
|
-
$panelContentBg
|
|
444
|
+
$panelContentBorder: 1px solid $shade300 !default;
|
|
445
|
+
$panelContentBg: $shade000 !default;
|
|
379
446
|
$panelContentEvenRowBg: $shade200 !default;
|
|
380
|
-
$panelContentTextColor
|
|
381
|
-
$panelContentPadding:1rem !default;
|
|
447
|
+
$panelContentTextColor: $shade700 !default;
|
|
448
|
+
$panelContentPadding: 1rem !default;
|
|
382
449
|
|
|
383
|
-
$panelFooterBorder:1px solid $shade300 !default;
|
|
384
|
-
$panelFooterBg
|
|
385
|
-
$panelFooterTextColor
|
|
386
|
-
$panelFooterPadding:0.5rem 1rem !default;
|
|
450
|
+
$panelFooterBorder: 1px solid $shade300 !default;
|
|
451
|
+
$panelFooterBg: $shade000 !default;
|
|
452
|
+
$panelFooterTextColor: $shade700 !default;
|
|
453
|
+
$panelFooterPadding: 0.5rem 1rem !default;
|
|
387
454
|
|
|
388
455
|
//accordion
|
|
389
|
-
$accordionSpacing:0 !default;
|
|
390
|
-
$accordionHeaderBorder
|
|
391
|
-
$accordionHeaderBg
|
|
392
|
-
$accordionHeaderTextColor
|
|
393
|
-
$accordionHeaderFontWeight
|
|
394
|
-
$accordionHeaderPadding
|
|
395
|
-
|
|
396
|
-
$accordionHeaderHoverBg
|
|
397
|
-
$accordionHeaderHoverBorderColor
|
|
398
|
-
$accordionHeaderTextHoverColor
|
|
399
|
-
|
|
400
|
-
$accordionHeaderActiveBg
|
|
401
|
-
$accordionHeaderActiveBorderColor
|
|
402
|
-
$accordionHeaderTextActiveColor
|
|
403
|
-
|
|
404
|
-
$accordionHeaderActiveHoverBg
|
|
405
|
-
$accordionHeaderActiveHoverBorderColor
|
|
406
|
-
$accordionHeaderTextActiveHoverColor
|
|
407
|
-
|
|
408
|
-
$accordionContentBorder
|
|
409
|
-
$accordionContentBg
|
|
410
|
-
$accordionContentTextColor
|
|
411
|
-
$accordionContentPadding
|
|
456
|
+
$accordionSpacing: 0 !default;
|
|
457
|
+
$accordionHeaderBorder: $panelHeaderBorder !default;
|
|
458
|
+
$accordionHeaderBg: $panelHeaderBg !default;
|
|
459
|
+
$accordionHeaderTextColor: $panelHeaderTextColor !default;
|
|
460
|
+
$accordionHeaderFontWeight: $panelHeaderFontWeight !default;
|
|
461
|
+
$accordionHeaderPadding: $panelHeaderPadding !default;
|
|
462
|
+
|
|
463
|
+
$accordionHeaderHoverBg: $shade200 !default;
|
|
464
|
+
$accordionHeaderHoverBorderColor: $shade300 !default;
|
|
465
|
+
$accordionHeaderTextHoverColor: $shade700 !default;
|
|
466
|
+
|
|
467
|
+
$accordionHeaderActiveBg: $panelHeaderBg !default;
|
|
468
|
+
$accordionHeaderActiveBorderColor: $shade300 !default;
|
|
469
|
+
$accordionHeaderTextActiveColor: $shade700 !default;
|
|
470
|
+
|
|
471
|
+
$accordionHeaderActiveHoverBg: $shade200 !default;
|
|
472
|
+
$accordionHeaderActiveHoverBorderColor: $shade300 !default;
|
|
473
|
+
$accordionHeaderTextActiveHoverColor: $shade700 !default;
|
|
474
|
+
|
|
475
|
+
$accordionContentBorder: $panelContentBorder !default;
|
|
476
|
+
$accordionContentBg: $panelContentBg !default;
|
|
477
|
+
$accordionContentTextColor: $panelContentTextColor !default;
|
|
478
|
+
$accordionContentPadding: $panelContentPadding !default;
|
|
412
479
|
|
|
413
480
|
//tabview
|
|
414
|
-
$tabviewNavBorder:1px solid $shade300 !default;
|
|
415
|
-
$tabviewNavBorderWidth:0 0 2px 0 !default;
|
|
416
|
-
$tabviewNavBg
|
|
417
|
-
|
|
418
|
-
$tabviewHeaderSpacing:0 !default;
|
|
419
|
-
$tabviewHeaderBorder:solid $shade300 !default;
|
|
420
|
-
$tabviewHeaderBorderWidth:0 0 2px 0 !default;
|
|
421
|
-
$tabviewHeaderBorderColor:transparent transparent $shade300 transparent !default;
|
|
422
|
-
$tabviewHeaderBg
|
|
423
|
-
$tabviewHeaderTextColor
|
|
424
|
-
$tabviewHeaderFontWeight
|
|
425
|
-
$tabviewHeaderPadding
|
|
426
|
-
$tabviewHeaderMargin:0 0 -2px 0 !default;
|
|
427
|
-
|
|
428
|
-
$tabviewHeaderHoverBg
|
|
429
|
-
$tabviewHeaderHoverBorderColor
|
|
430
|
-
$tabviewHeaderTextHoverColor
|
|
431
|
-
|
|
432
|
-
$tabviewHeaderActiveBg
|
|
481
|
+
$tabviewNavBorder: 1px solid $shade300 !default;
|
|
482
|
+
$tabviewNavBorderWidth: 0 0 2px 0 !default;
|
|
483
|
+
$tabviewNavBg: $shade000 !default;
|
|
484
|
+
|
|
485
|
+
$tabviewHeaderSpacing: 0 !default;
|
|
486
|
+
$tabviewHeaderBorder: solid $shade300 !default;
|
|
487
|
+
$tabviewHeaderBorderWidth: 0 0 2px 0 !default;
|
|
488
|
+
$tabviewHeaderBorderColor: transparent transparent $shade300 transparent !default;
|
|
489
|
+
$tabviewHeaderBg: $shade000 !default;
|
|
490
|
+
$tabviewHeaderTextColor: $shade600 !default;
|
|
491
|
+
$tabviewHeaderFontWeight: $panelHeaderFontWeight !default;
|
|
492
|
+
$tabviewHeaderPadding: $panelHeaderPadding !default;
|
|
493
|
+
$tabviewHeaderMargin: 0 0 -2px 0 !default;
|
|
494
|
+
|
|
495
|
+
$tabviewHeaderHoverBg: $shade000 !default;
|
|
496
|
+
$tabviewHeaderHoverBorderColor: $shade600 !default;
|
|
497
|
+
$tabviewHeaderTextHoverColor: $shade600 !default;
|
|
498
|
+
|
|
499
|
+
$tabviewHeaderActiveBg: $shade000 !default;
|
|
433
500
|
// $tabviewHeaderActiveBorderColor:$primaryColor !default;
|
|
434
501
|
// $tabviewHeaderTextActiveColor:$primaryColor !default;
|
|
435
502
|
|
|
436
|
-
$tabviewContentBorder:0 none !default;
|
|
437
|
-
$tabviewContentBg
|
|
438
|
-
$tabviewContentTextColor
|
|
439
|
-
$tabviewContentPadding
|
|
503
|
+
$tabviewContentBorder: 0 none !default;
|
|
504
|
+
$tabviewContentBg: $panelContentBg !default;
|
|
505
|
+
$tabviewContentTextColor: $panelContentTextColor !default;
|
|
506
|
+
$tabviewContentPadding: $panelContentPadding !default;
|
|
440
507
|
|
|
441
508
|
//upload
|
|
442
|
-
$fileUploadProgressBarHeight
|
|
443
|
-
$fileUploadContentPadding:2rem 1rem !default;
|
|
509
|
+
$fileUploadProgressBarHeight: 0.25rem !default;
|
|
510
|
+
$fileUploadContentPadding: 2rem 1rem !default;
|
|
444
511
|
// $fileUploadContentHoverBorder: 1px dashed $primaryColor !default;
|
|
445
512
|
|
|
446
513
|
//scrollpanel
|
|
447
|
-
$scrollPanelTrackBorder:0 none !default;
|
|
448
|
-
$scrollPanelTrackBg
|
|
514
|
+
$scrollPanelTrackBorder: 0 none !default;
|
|
515
|
+
$scrollPanelTrackBg: $shade100 !default;
|
|
449
516
|
|
|
450
517
|
//card
|
|
451
|
-
$cardBodyPadding:1rem !default;
|
|
452
|
-
$cardTitleFontSize:1.5rem !default;
|
|
453
|
-
$cardTitleFontWeight:700 !default;
|
|
454
|
-
$cardSubTitleFontWeight:400 !default;
|
|
455
|
-
$cardSubTitleColor
|
|
456
|
-
$cardContentPadding:1rem 0 !default;
|
|
457
|
-
$cardFooterPadding:1rem 0 0 0 !default;
|
|
458
|
-
$cardShadow:
|
|
518
|
+
$cardBodyPadding: 1rem !default;
|
|
519
|
+
$cardTitleFontSize: 1.5rem !default;
|
|
520
|
+
$cardTitleFontWeight: 700 !default;
|
|
521
|
+
$cardSubTitleFontWeight: 400 !default;
|
|
522
|
+
$cardSubTitleColor: $shade600 !default;
|
|
523
|
+
$cardContentPadding: 1rem 0 !default;
|
|
524
|
+
$cardFooterPadding: 1rem 0 0 0 !default;
|
|
525
|
+
$cardShadow:
|
|
526
|
+
0 2px 1px -1px rgba(0, 0, 0, 0.2),
|
|
527
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.14),
|
|
528
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.12) !default;
|
|
459
529
|
|
|
460
530
|
//editor
|
|
461
|
-
$editorToolbarBg
|
|
462
|
-
$editorToolbarBorder
|
|
463
|
-
$editorToolbarPadding
|
|
464
|
-
$editorToolbarIconColor
|
|
465
|
-
$editorToolbarIconHoverColor
|
|
531
|
+
$editorToolbarBg: $panelHeaderBg !default;
|
|
532
|
+
$editorToolbarBorder: $panelHeaderBorder !default;
|
|
533
|
+
$editorToolbarPadding: $panelHeaderPadding !default;
|
|
534
|
+
$editorToolbarIconColor: $textSecondaryColor !default;
|
|
535
|
+
$editorToolbarIconHoverColor: $textColor !default;
|
|
466
536
|
// $editorIconActiveColor:$primaryColor !default;
|
|
467
|
-
$editorContentBorder
|
|
468
|
-
$editorContentBg
|
|
537
|
+
$editorContentBorder: $panelContentBorder !default;
|
|
538
|
+
$editorContentBg: $panelContentBg !default;
|
|
469
539
|
|
|
470
540
|
//paginator
|
|
471
|
-
$paginatorBg
|
|
472
|
-
$paginatorTextColor
|
|
473
|
-
$paginatorBorder:solid $shade200 !default;
|
|
474
|
-
$paginatorBorderWidth:0 !default;
|
|
475
|
-
$paginatorPadding
|
|
476
|
-
$paginatorElementWidth
|
|
477
|
-
$paginatorElementHeight
|
|
478
|
-
$paginatorElementBg:transparent !default;
|
|
479
|
-
$paginatorElementBorder:0 none !default;
|
|
480
|
-
$paginatorElementIconColor
|
|
481
|
-
$paginatorElementHoverBg
|
|
482
|
-
$paginatorElementHoverBorderColor:transparent !default;
|
|
483
|
-
$paginatorElementIconHoverColor
|
|
484
|
-
$paginatorElementBorderRadius
|
|
485
|
-
$paginatorElementMargin
|
|
486
|
-
$paginatorElementPadding:0 !default;
|
|
541
|
+
$paginatorBg: $shade000 !default;
|
|
542
|
+
$paginatorTextColor: $shade600 !default;
|
|
543
|
+
$paginatorBorder: solid $shade200 !default;
|
|
544
|
+
$paginatorBorderWidth: 0 !default;
|
|
545
|
+
$paginatorPadding: 0.5rem 1rem !default;
|
|
546
|
+
$paginatorElementWidth: $buttonIconOnlyWidth !default;
|
|
547
|
+
$paginatorElementHeight: $buttonIconOnlyWidth !default;
|
|
548
|
+
$paginatorElementBg: transparent !default;
|
|
549
|
+
$paginatorElementBorder: 0 none !default;
|
|
550
|
+
$paginatorElementIconColor: $shade600 !default;
|
|
551
|
+
$paginatorElementHoverBg: $shade200 !default;
|
|
552
|
+
$paginatorElementHoverBorderColor: transparent !default;
|
|
553
|
+
$paginatorElementIconHoverColor: $shade700 !default;
|
|
554
|
+
$paginatorElementBorderRadius: $borderRadius !default;
|
|
555
|
+
$paginatorElementMargin: 0.143rem !default;
|
|
556
|
+
$paginatorElementPadding: 0 !default;
|
|
487
557
|
|
|
488
558
|
//table
|
|
489
|
-
$tableHeaderBorder:1px solid $shade200 !default;
|
|
490
|
-
$tableHeaderBorderWidth:1px 0 1px 0 !default;
|
|
491
|
-
$tableHeaderBg
|
|
492
|
-
$tableHeaderTextColor
|
|
493
|
-
$tableHeaderFontWeight:600 !default;
|
|
494
|
-
$tableHeaderPadding:1rem 1rem !default;
|
|
495
|
-
|
|
496
|
-
$tableHeaderCellPadding:1rem 1rem !default;
|
|
497
|
-
$tableHeaderCellBg
|
|
498
|
-
$tableHeaderCellTextColor
|
|
499
|
-
$tableHeaderCellFontWeight:600 !default;
|
|
500
|
-
$tableHeaderCellBorder:1px solid $shade200 !default;
|
|
501
|
-
$tableHeaderCellBorderWidth:0 0 1px 0 !default;
|
|
502
|
-
$tableHeaderCellHoverBg
|
|
503
|
-
$tableHeaderCellTextHoverColor
|
|
504
|
-
$tableHeaderCellIconColor
|
|
505
|
-
$tableHeaderCellIconHoverColor
|
|
506
|
-
$tableHeaderCellHighlightBg
|
|
559
|
+
$tableHeaderBorder: 1px solid $shade200 !default;
|
|
560
|
+
$tableHeaderBorderWidth: 1px 0 1px 0 !default;
|
|
561
|
+
$tableHeaderBg: $shade100 !default;
|
|
562
|
+
$tableHeaderTextColor: $shade700 !default;
|
|
563
|
+
$tableHeaderFontWeight: 600 !default;
|
|
564
|
+
$tableHeaderPadding: 1rem 1rem !default;
|
|
565
|
+
|
|
566
|
+
$tableHeaderCellPadding: 1rem 1rem !default;
|
|
567
|
+
$tableHeaderCellBg: $shade100 !default;
|
|
568
|
+
$tableHeaderCellTextColor: $shade700 !default;
|
|
569
|
+
$tableHeaderCellFontWeight: 600 !default;
|
|
570
|
+
$tableHeaderCellBorder: 1px solid $shade200 !default;
|
|
571
|
+
$tableHeaderCellBorderWidth: 0 0 1px 0 !default;
|
|
572
|
+
$tableHeaderCellHoverBg: $shade200 !default;
|
|
573
|
+
$tableHeaderCellTextHoverColor: $shade700 !default;
|
|
574
|
+
$tableHeaderCellIconColor: $shade600 !default;
|
|
575
|
+
$tableHeaderCellIconHoverColor: $shade600 !default;
|
|
576
|
+
$tableHeaderCellHighlightBg: $shade100 !default;
|
|
507
577
|
// $tableHeaderCellHighlightTextColor:$primaryColor !default;
|
|
508
|
-
$tableHeaderCellHighlightHoverBg
|
|
578
|
+
$tableHeaderCellHighlightHoverBg: $shade200 !default;
|
|
509
579
|
// $tableHeaderCellHighlightTextHoverColor:$primaryColor !default;
|
|
510
|
-
$tableSortableColumnBadgeSize:1.143rem !default;
|
|
511
|
-
|
|
512
|
-
$tableBodyRowBg
|
|
513
|
-
$tableBodyRowTextColor
|
|
514
|
-
$tableBodyRowEvenBg:scale-color($tableBodyRowBg, $lightness: -1%) !default;
|
|
515
|
-
$tableBodyRowHoverBg
|
|
516
|
-
$tableBodyRowTextHoverColor
|
|
517
|
-
$tableBodyCellBorder:1px solid $shade200 !default;
|
|
518
|
-
$tableBodyCellBorderWidth:0 0 1px 0 !default;
|
|
519
|
-
$tableBodyCellPadding:1rem 1rem !default;
|
|
520
|
-
|
|
521
|
-
$tableFooterCellPadding:1rem 1rem !default;
|
|
522
|
-
$tableFooterCellBg
|
|
523
|
-
$tableFooterCellTextColor
|
|
524
|
-
$tableFooterCellFontWeight:600 !default;
|
|
525
|
-
$tableFooterCellBorder:1px solid $shade200 !default;
|
|
526
|
-
$tableFooterCellBorderWidth:0 0 1px 0 !default;
|
|
580
|
+
$tableSortableColumnBadgeSize: 1.143rem !default;
|
|
581
|
+
|
|
582
|
+
$tableBodyRowBg: $shade000 !default;
|
|
583
|
+
$tableBodyRowTextColor: $shade700 !default;
|
|
584
|
+
$tableBodyRowEvenBg: scale-color($tableBodyRowBg, $lightness: -1%) !default;
|
|
585
|
+
$tableBodyRowHoverBg: $shade200 !default;
|
|
586
|
+
$tableBodyRowTextHoverColor: $shade700 !default;
|
|
587
|
+
$tableBodyCellBorder: 1px solid $shade200 !default;
|
|
588
|
+
$tableBodyCellBorderWidth: 0 0 1px 0 !default;
|
|
589
|
+
$tableBodyCellPadding: 1rem 1rem !default;
|
|
590
|
+
|
|
591
|
+
$tableFooterCellPadding: 1rem 1rem !default;
|
|
592
|
+
$tableFooterCellBg: $shade100 !default;
|
|
593
|
+
$tableFooterCellTextColor: $shade700 !default;
|
|
594
|
+
$tableFooterCellFontWeight: 600 !default;
|
|
595
|
+
$tableFooterCellBorder: 1px solid $shade200 !default;
|
|
596
|
+
$tableFooterCellBorderWidth: 0 0 1px 0 !default;
|
|
527
597
|
// $tableResizerHelperBg:$primaryColor !default;
|
|
528
598
|
|
|
529
|
-
$tableFooterBorder:1px solid $shade200 !default;
|
|
530
|
-
$tableFooterBorderWidth:0 0 1px 0 !default;
|
|
531
|
-
$tableFooterBg
|
|
532
|
-
$tableFooterTextColor
|
|
533
|
-
$tableFooterFontWeight:600 !default;
|
|
534
|
-
$tableFooterPadding:1rem 1rem !default;
|
|
599
|
+
$tableFooterBorder: 1px solid $shade200 !default;
|
|
600
|
+
$tableFooterBorderWidth: 0 0 1px 0 !default;
|
|
601
|
+
$tableFooterBg: $shade100 !default;
|
|
602
|
+
$tableFooterTextColor: $shade700 !default;
|
|
603
|
+
$tableFooterFontWeight: 600 !default;
|
|
604
|
+
$tableFooterPadding: 1rem 1rem !default;
|
|
535
605
|
|
|
536
|
-
$tableCellContentAlignment:left !default;
|
|
537
|
-
$tableTopPaginatorBorderWidth:0 0 1px 0 !default;
|
|
538
|
-
$tableBottomPaginatorBorderWidth:0 0 1px 0 !default;
|
|
606
|
+
$tableCellContentAlignment: left !default;
|
|
607
|
+
$tableTopPaginatorBorderWidth: 0 0 1px 0 !default;
|
|
608
|
+
$tableBottomPaginatorBorderWidth: 0 0 1px 0 !default;
|
|
539
609
|
|
|
540
|
-
$tableScaleSM:0.5 !default;
|
|
541
|
-
$tableScaleLG:1.25 !default;
|
|
610
|
+
$tableScaleSM: 0.5 !default;
|
|
611
|
+
$tableScaleLG: 1.25 !default;
|
|
542
612
|
|
|
543
613
|
//dataview
|
|
544
|
-
$dataViewContentPadding:0 !default;
|
|
545
|
-
$dataViewContentBorder:0 none !default;
|
|
546
|
-
$dataViewListItemBorder:solid $shade200 !default;
|
|
547
|
-
$dataViewListItemBorderWidth:0 0 1px 0 !default;
|
|
614
|
+
$dataViewContentPadding: 0 !default;
|
|
615
|
+
$dataViewContentBorder: 0 none !default;
|
|
616
|
+
$dataViewListItemBorder: solid $shade200 !default;
|
|
617
|
+
$dataViewListItemBorderWidth: 0 0 1px 0 !default;
|
|
548
618
|
|
|
549
619
|
//tree
|
|
550
|
-
$treeContainerPadding:0.286rem !default;
|
|
551
|
-
$treeNodePadding:0.143rem !default;
|
|
552
|
-
$treeNodeContentPadding:0 !default;
|
|
553
|
-
$treeNodeChildrenPadding:0 0 0 1rem !default;
|
|
554
|
-
$treeNodeIconColor
|
|
620
|
+
$treeContainerPadding: 0.286rem !default;
|
|
621
|
+
$treeNodePadding: 0.143rem !default;
|
|
622
|
+
$treeNodeContentPadding: 0 !default;
|
|
623
|
+
$treeNodeChildrenPadding: 0 0 0 1rem !default;
|
|
624
|
+
$treeNodeIconColor: $shade600 !default;
|
|
555
625
|
|
|
556
626
|
//timeline
|
|
557
|
-
$timelineVerticalEventContentPadding:0 1rem !default;
|
|
558
|
-
$timelineHorizontalEventContentPadding:1rem 0 !default;
|
|
559
|
-
$timelineEventMarkerWidth:1rem !default;
|
|
560
|
-
$timelineEventMarkerHeight:1rem !default;
|
|
561
|
-
$timelineEventMarkerBorderRadius:50% !default;
|
|
627
|
+
$timelineVerticalEventContentPadding: 0 1rem !default;
|
|
628
|
+
$timelineHorizontalEventContentPadding: 1rem 0 !default;
|
|
629
|
+
$timelineEventMarkerWidth: 1rem !default;
|
|
630
|
+
$timelineEventMarkerHeight: 1rem !default;
|
|
631
|
+
$timelineEventMarkerBorderRadius: 50% !default;
|
|
562
632
|
// $timelineEventMarkerBorder:2px solid $primaryColor !default;
|
|
563
|
-
$timelineEventMarkerBackground
|
|
564
|
-
$timelineEventConnectorSize:2px !default;
|
|
565
|
-
$timelineEventColor
|
|
633
|
+
$timelineEventMarkerBackground: $shade000 !default;
|
|
634
|
+
$timelineEventConnectorSize: 2px !default;
|
|
635
|
+
$timelineEventColor: $shade300 !default;
|
|
566
636
|
|
|
567
637
|
//org chart
|
|
568
|
-
$organizationChartConnectorColor
|
|
638
|
+
$organizationChartConnectorColor: $shade300 !default;
|
|
569
639
|
|
|
570
640
|
//message
|
|
571
|
-
$messageMargin:1rem 0 !default;
|
|
572
|
-
$messagePadding:1rem 1.5rem !default;
|
|
573
|
-
$messageBorderWidth:0 0 0 6px !default;
|
|
574
|
-
$messageIconFontSize:1.5rem !default;
|
|
575
|
-
$messageTextFontSize:1rem !default;
|
|
576
|
-
$messageTextFontWeight:500 !default;
|
|
641
|
+
$messageMargin: 1rem 0 !default;
|
|
642
|
+
$messagePadding: 1rem 1.5rem !default;
|
|
643
|
+
$messageBorderWidth: 0 0 0 6px !default;
|
|
644
|
+
$messageIconFontSize: 1.5rem !default;
|
|
645
|
+
$messageTextFontSize: 1rem !default;
|
|
646
|
+
$messageTextFontWeight: 500 !default;
|
|
577
647
|
|
|
578
648
|
//inline message
|
|
579
|
-
$inlineMessagePadding
|
|
580
|
-
$inlineMessageMargin:0 !default;
|
|
581
|
-
$inlineMessageIconFontSize:1rem !default;
|
|
582
|
-
$inlineMessageTextFontSize:1rem !default;
|
|
583
|
-
$inlineMessageBorderWidth:0px !default;
|
|
649
|
+
$inlineMessagePadding: $inputPadding !default;
|
|
650
|
+
$inlineMessageMargin: 0 !default;
|
|
651
|
+
$inlineMessageIconFontSize: 1rem !default;
|
|
652
|
+
$inlineMessageTextFontSize: 1rem !default;
|
|
653
|
+
$inlineMessageBorderWidth: 0px !default;
|
|
584
654
|
|
|
585
655
|
//toast
|
|
586
|
-
$toastIconFontSize:2rem !default;
|
|
587
|
-
$toastMessageTextMargin:0 0 0 1rem !default;
|
|
588
|
-
$toastMargin:0 0 1rem 0 !default;
|
|
589
|
-
$toastPadding:1rem !default;
|
|
590
|
-
$toastBorderWidth:0 0 0 6px !default;
|
|
591
|
-
$toastShadow:
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
656
|
+
$toastIconFontSize: 2rem !default;
|
|
657
|
+
$toastMessageTextMargin: 0 0 0 1rem !default;
|
|
658
|
+
$toastMargin: 0 0 1rem 0 !default;
|
|
659
|
+
$toastPadding: 1rem !default;
|
|
660
|
+
$toastBorderWidth: 0 0 0 6px !default;
|
|
661
|
+
$toastShadow:
|
|
662
|
+
0 2px 4px -1px rgba(0, 0, 0, 0.2),
|
|
663
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
|
664
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
|
|
665
|
+
$toastOpacity: 1 !default;
|
|
666
|
+
$toastTitleFontWeight: 700 !default;
|
|
667
|
+
$toastDetailMargin: $inlineSpacing 0 0 0 !default;
|
|
595
668
|
|
|
596
669
|
//severities
|
|
597
|
-
$infoMessageBg
|
|
598
|
-
$infoMessageBorder:solid scale-color($infoMessageBg, $lightness: -50%) !default;
|
|
599
|
-
$infoMessageTextColor:scale-color($infoMessageBg, $lightness: -75%) !default;
|
|
600
|
-
$infoMessageIconColor:scale-color($infoMessageBg, $lightness: -75%) !default;
|
|
601
|
-
$successMessageBg
|
|
602
|
-
$successMessageBorder:solid scale-color($successMessageBg, $lightness: -50%) !default;
|
|
603
|
-
$successMessageTextColor:scale-color(
|
|
604
|
-
$
|
|
605
|
-
$
|
|
606
|
-
|
|
607
|
-
$
|
|
608
|
-
$
|
|
609
|
-
$
|
|
610
|
-
|
|
611
|
-
$
|
|
612
|
-
$
|
|
670
|
+
$infoMessageBg: #b3e5fc !default;
|
|
671
|
+
$infoMessageBorder: solid scale-color($infoMessageBg, $lightness: -50%) !default;
|
|
672
|
+
$infoMessageTextColor: scale-color($infoMessageBg, $lightness: -75%) !default;
|
|
673
|
+
$infoMessageIconColor: scale-color($infoMessageBg, $lightness: -75%) !default;
|
|
674
|
+
$successMessageBg: #c8e6c9 !default;
|
|
675
|
+
$successMessageBorder: solid scale-color($successMessageBg, $lightness: -50%) !default;
|
|
676
|
+
$successMessageTextColor: scale-color(
|
|
677
|
+
$successMessageBg,
|
|
678
|
+
$lightness: -75%
|
|
679
|
+
) !default;
|
|
680
|
+
$successMessageIconColor: scale-color(
|
|
681
|
+
$successMessageBg,
|
|
682
|
+
$lightness: -75%
|
|
683
|
+
) !default;
|
|
684
|
+
$warningMessageBg: #ffecb3 !default;
|
|
685
|
+
$warningMessageBorder: solid scale-color($warningMessageBg, $lightness: -50%) !default;
|
|
686
|
+
$warningMessageTextColor: scale-color(
|
|
687
|
+
$warningMessageBg,
|
|
688
|
+
$lightness: -75%
|
|
689
|
+
) !default;
|
|
690
|
+
$warningMessageIconColor: scale-color(
|
|
691
|
+
$warningMessageBg,
|
|
692
|
+
$lightness: -75%
|
|
693
|
+
) !default;
|
|
694
|
+
$errorMessageBg: #ffcdd2 !default;
|
|
695
|
+
$errorMessageBorder: solid scale-color($errorMessageBg, $lightness: -50%) !default;
|
|
696
|
+
$errorMessageTextColor: scale-color($errorMessageBg, $lightness: -75%) !default;
|
|
697
|
+
$errorMessageIconColor: scale-color($errorMessageBg, $lightness: -75%) !default;
|
|
613
698
|
|
|
614
699
|
//overlays
|
|
615
|
-
$overlayContentBorder:0 none !default;
|
|
616
|
-
$overlayContentBg
|
|
617
|
-
$overlayContainerShadow:
|
|
700
|
+
$overlayContentBorder: 0 none !default;
|
|
701
|
+
$overlayContentBg: $panelContentBg !default;
|
|
702
|
+
$overlayContainerShadow:
|
|
703
|
+
0px 11px 15px -7px rgba(0, 0, 0, 0.2),
|
|
704
|
+
0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
|
705
|
+
0px 9px 46px 8px rgba(0, 0, 0, 0.12) !default;
|
|
618
706
|
|
|
619
707
|
//dialog
|
|
620
|
-
$dialogHeaderBg
|
|
621
|
-
$dialogHeaderBorder:0 none !default;
|
|
622
|
-
$dialogHeaderTextColor
|
|
623
|
-
$dialogHeaderFontWeight:600 !default;
|
|
624
|
-
$dialogHeaderFontSize:1.25rem !default;
|
|
625
|
-
$dialogHeaderPadding:1.5rem !default;
|
|
626
|
-
$dialogContentPadding:0 1.5rem 2rem 1.5rem !default;
|
|
627
|
-
$dialogFooterBorder:0 none !default;
|
|
628
|
-
$dialogFooterPadding:0 1.5rem 1.5rem 1.5rem !default;
|
|
708
|
+
$dialogHeaderBg: $shade000 !default;
|
|
709
|
+
$dialogHeaderBorder: 0 none !default;
|
|
710
|
+
$dialogHeaderTextColor: $shade700 !default;
|
|
711
|
+
$dialogHeaderFontWeight: 600 !default;
|
|
712
|
+
$dialogHeaderFontSize: 1.25rem !default;
|
|
713
|
+
$dialogHeaderPadding: 1.5rem !default;
|
|
714
|
+
$dialogContentPadding: 0 1.5rem 2rem 1.5rem !default;
|
|
715
|
+
$dialogFooterBorder: 0 none !default;
|
|
716
|
+
$dialogFooterPadding: 0 1.5rem 1.5rem 1.5rem !default;
|
|
629
717
|
|
|
630
718
|
//confirmpopup
|
|
631
|
-
$confirmPopupContentPadding
|
|
632
|
-
$confirmPopupFooterPadding:0 1rem 1rem 1rem !default;
|
|
719
|
+
$confirmPopupContentPadding: $panelContentPadding !default;
|
|
720
|
+
$confirmPopupFooterPadding: 0 1rem 1rem 1rem !default;
|
|
633
721
|
|
|
634
722
|
//tooltip
|
|
635
|
-
$tooltipBg
|
|
636
|
-
$tooltipTextColor
|
|
637
|
-
$tooltipPadding
|
|
723
|
+
$tooltipBg: $shade700 !default;
|
|
724
|
+
$tooltipTextColor: $shade000 !default;
|
|
725
|
+
$tooltipPadding: $inputPadding !default;
|
|
638
726
|
|
|
639
727
|
//steps
|
|
640
|
-
$stepsItemBg
|
|
641
|
-
$stepsItemBorder:1px solid $shade200 !default;
|
|
642
|
-
$stepsItemTextColor
|
|
643
|
-
$stepsItemNumberWidth:2rem !default;
|
|
644
|
-
$stepsItemNumberHeight:2rem !default;
|
|
645
|
-
$stepsItemNumberFontSize:1.143rem !default;
|
|
646
|
-
$stepsItemNumberColor
|
|
647
|
-
$stepsItemNumberBorderRadius:50% !default;
|
|
648
|
-
$stepsItemActiveFontWeight:600 !default;
|
|
728
|
+
$stepsItemBg: $shade000 !default;
|
|
729
|
+
$stepsItemBorder: 1px solid $shade200 !default;
|
|
730
|
+
$stepsItemTextColor: $shade600 !default;
|
|
731
|
+
$stepsItemNumberWidth: 2rem !default;
|
|
732
|
+
$stepsItemNumberHeight: 2rem !default;
|
|
733
|
+
$stepsItemNumberFontSize: 1.143rem !default;
|
|
734
|
+
$stepsItemNumberColor: $shade700 !default;
|
|
735
|
+
$stepsItemNumberBorderRadius: 50% !default;
|
|
736
|
+
$stepsItemActiveFontWeight: 600 !default;
|
|
649
737
|
|
|
650
738
|
//progressbar
|
|
651
|
-
$progressBarHeight:1.5rem !default;
|
|
652
|
-
$progressBarBorder:0 none !default;
|
|
653
|
-
$progressBarBg
|
|
739
|
+
$progressBarHeight: 1.5rem !default;
|
|
740
|
+
$progressBarBorder: 0 none !default;
|
|
741
|
+
$progressBarBg: $shade300 !default;
|
|
654
742
|
// $progressBarValueBg:$primaryColor !default;
|
|
655
|
-
$progressBarValueTextColor
|
|
743
|
+
$progressBarValueTextColor: $primaryTextColor !default;
|
|
656
744
|
|
|
657
745
|
//menu (e.g. menu, menubar, tieredmenu)
|
|
658
|
-
$menuWidth:12.5rem !default;
|
|
659
|
-
$menuBg
|
|
660
|
-
$menuBorder:1px solid $shade300 !default;
|
|
661
|
-
$menuTextColor
|
|
662
|
-
$menuitemPadding
|
|
663
|
-
$menuitemBorderRadius:0 !default;
|
|
664
|
-
$menuitemTextColor
|
|
665
|
-
$menuitemIconColor
|
|
666
|
-
$menuitemTextHoverColor
|
|
667
|
-
$menuitemIconHoverColor
|
|
668
|
-
$menuitemHoverBg
|
|
669
|
-
$menuitemTextFocusColor
|
|
670
|
-
$menuitemIconFocusColor
|
|
671
|
-
$menuitemFocusBg
|
|
672
|
-
$menuitemTextActiveColor
|
|
673
|
-
$menuitemIconActiveColor
|
|
674
|
-
$menuitemActiveBg
|
|
675
|
-
$menuitemActiveFocusBg
|
|
676
|
-
$menuitemSubmenuIconFontSize
|
|
677
|
-
$submenuHeaderMargin:0 !default;
|
|
678
|
-
$submenuHeaderPadding
|
|
679
|
-
$submenuHeaderBg
|
|
680
|
-
$submenuHeaderTextColor
|
|
681
|
-
$submenuHeaderBorderRadius:0 !default;
|
|
682
|
-
$submenuHeaderFontWeight:600 !default;
|
|
683
|
-
$overlayMenuBg
|
|
684
|
-
$overlayMenuBorder:0 none !default;
|
|
685
|
-
$overlayMenuShadow:
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
$
|
|
691
|
-
$
|
|
692
|
-
|
|
693
|
-
$
|
|
694
|
-
$
|
|
695
|
-
$
|
|
696
|
-
$
|
|
697
|
-
$
|
|
698
|
-
|
|
699
|
-
$
|
|
700
|
-
$
|
|
701
|
-
|
|
702
|
-
$
|
|
703
|
-
$
|
|
704
|
-
$
|
|
705
|
-
$
|
|
706
|
-
$
|
|
707
|
-
$
|
|
708
|
-
$
|
|
709
|
-
$
|
|
710
|
-
$
|
|
711
|
-
$
|
|
712
|
-
$
|
|
746
|
+
$menuWidth: 12.5rem !default;
|
|
747
|
+
$menuBg: $shade000 !default;
|
|
748
|
+
$menuBorder: 1px solid $shade300 !default;
|
|
749
|
+
$menuTextColor: $shade700 !default;
|
|
750
|
+
$menuitemPadding: 0.75rem 1rem !default;
|
|
751
|
+
$menuitemBorderRadius: 0 !default;
|
|
752
|
+
$menuitemTextColor: $shade700 !default;
|
|
753
|
+
$menuitemIconColor: $shade600 !default;
|
|
754
|
+
$menuitemTextHoverColor: $shade700 !default;
|
|
755
|
+
$menuitemIconHoverColor: $shade600 !default;
|
|
756
|
+
$menuitemHoverBg: $shade200 !default;
|
|
757
|
+
$menuitemTextFocusColor: $shade700 !default;
|
|
758
|
+
$menuitemIconFocusColor: $shade700 !default;
|
|
759
|
+
$menuitemFocusBg: $shade300 !default;
|
|
760
|
+
$menuitemTextActiveColor: $shade700 !default;
|
|
761
|
+
$menuitemIconActiveColor: $shade600 !default;
|
|
762
|
+
$menuitemActiveBg: $shade200 !default;
|
|
763
|
+
$menuitemActiveFocusBg: $shade200 !default;
|
|
764
|
+
$menuitemSubmenuIconFontSize: 0.875rem !default;
|
|
765
|
+
$submenuHeaderMargin: 0 !default;
|
|
766
|
+
$submenuHeaderPadding: 0.75rem 1rem !default;
|
|
767
|
+
$submenuHeaderBg: $shade000 !default;
|
|
768
|
+
$submenuHeaderTextColor: $shade700 !default;
|
|
769
|
+
$submenuHeaderBorderRadius: 0 !default;
|
|
770
|
+
$submenuHeaderFontWeight: 600 !default;
|
|
771
|
+
$overlayMenuBg: $menuBg !default;
|
|
772
|
+
$overlayMenuBorder: 0 none !default;
|
|
773
|
+
$overlayMenuShadow:
|
|
774
|
+
0 2px 4px -1px rgba(0, 0, 0, 0.2),
|
|
775
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
|
776
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12) !default;
|
|
777
|
+
$verticalMenuPadding: 0.25rem 0 !default;
|
|
778
|
+
$verticalMenuitemMargin: 0 !default;
|
|
779
|
+
$menuSeparatorMargin: 0.25rem 0 !default;
|
|
780
|
+
|
|
781
|
+
$breadcrumbPadding: 1rem !default;
|
|
782
|
+
$breadcrumbBg: $menuBg !default;
|
|
783
|
+
$breadcrumbBorder: $menuBorder !default;
|
|
784
|
+
$breadcrumbItemTextColor: $menuitemTextColor !default;
|
|
785
|
+
$breadcrumbItemIconColor: $menuitemIconColor !default;
|
|
786
|
+
$breadcrumbLastItemTextColor: $menuitemTextColor !default;
|
|
787
|
+
$breadcrumbLastItemIconColor: $menuitemIconColor !default;
|
|
788
|
+
$breadcrumbSeparatorColor: $menuitemTextColor !default;
|
|
789
|
+
|
|
790
|
+
$horizontalMenuPadding: 0.5rem !default;
|
|
791
|
+
$horizontalMenuBg: $shade100 !default;
|
|
792
|
+
$horizontalMenuBorder: $menuBorder !default;
|
|
793
|
+
$horizontalMenuTextColor: $menuTextColor !default;
|
|
794
|
+
$horizontalMenuRootMenuitemPadding: $menuitemPadding !default;
|
|
795
|
+
$horizontalMenuRootMenuitemBorderRadius: $borderRadius !default;
|
|
796
|
+
$horizontalMenuRootMenuitemTextColor: $menuitemTextColor !default;
|
|
797
|
+
$horizontalMenuRootMenuitemIconColor: $menuitemIconColor !default;
|
|
798
|
+
$horizontalMenuRootMenuitemTextHoverColor: $menuitemTextHoverColor !default;
|
|
799
|
+
$horizontalMenuRootMenuitemIconHoverColor: $menuitemIconHoverColor !default;
|
|
800
|
+
$horizontalMenuRootMenuitemHoverBg: $menuitemHoverBg !default;
|
|
801
|
+
$horizontalMenuRootMenuitemTextActiveColor: $menuitemTextActiveColor !default;
|
|
802
|
+
$horizontalMenuRootMenuitemIconActiveColor: $menuitemIconActiveColor !default;
|
|
803
|
+
$horizontalMenuRootMenuitemActiveBg: $menuitemActiveBg !default;
|
|
713
804
|
|
|
714
805
|
//badge and tag
|
|
715
806
|
// $badgeBg:$primaryColor !default;
|
|
716
|
-
$badgeTextColor
|
|
717
|
-
$badgeMinWidth:1.5rem !default;
|
|
718
|
-
$badgeHeight:1.5rem !default;
|
|
719
|
-
$badgeFontWeight:700 !default;
|
|
720
|
-
$badgeFontSize
|
|
807
|
+
$badgeTextColor: $primaryTextColor !default;
|
|
808
|
+
$badgeMinWidth: 1.5rem !default;
|
|
809
|
+
$badgeHeight: 1.5rem !default;
|
|
810
|
+
$badgeFontWeight: 700 !default;
|
|
811
|
+
$badgeFontSize: 0.75rem !default;
|
|
721
812
|
|
|
722
|
-
$tagPadding
|
|
813
|
+
$tagPadding: 0.25rem 0.4rem !default;
|
|
723
814
|
|
|
724
815
|
//carousel
|
|
725
|
-
$carouselIndicatorsPadding:1rem !default;
|
|
726
|
-
$carouselIndicatorBg
|
|
727
|
-
$carouselIndicatorHoverBg
|
|
728
|
-
$carouselIndicatorBorderRadius:0 !default;
|
|
729
|
-
$carouselIndicatorWidth:2rem !default;
|
|
730
|
-
$carouselIndicatorHeight
|
|
816
|
+
$carouselIndicatorsPadding: 1rem !default;
|
|
817
|
+
$carouselIndicatorBg: $shade200 !default;
|
|
818
|
+
$carouselIndicatorHoverBg: $shade300 !default;
|
|
819
|
+
$carouselIndicatorBorderRadius: 0 !default;
|
|
820
|
+
$carouselIndicatorWidth: 2rem !default;
|
|
821
|
+
$carouselIndicatorHeight: 0.5rem !default;
|
|
731
822
|
|
|
732
823
|
//galleria
|
|
733
|
-
$galleriaMaskBg:rgba(0,0,0,0.9) !default;
|
|
734
|
-
$galleriaCloseIconMargin
|
|
735
|
-
$galleriaCloseIconFontSize:2rem !default;
|
|
736
|
-
$galleriaCloseIconBg:transparent !default;
|
|
737
|
-
$galleriaCloseIconColor
|
|
738
|
-
$galleriaCloseIconHoverBg:rgba(255,255,255,0.1) !default;
|
|
739
|
-
$galleriaCloseIconHoverColor
|
|
740
|
-
$galleriaCloseIconWidth:4rem !default;
|
|
741
|
-
$galleriaCloseIconHeight:4rem !default;
|
|
742
|
-
$galleriaCloseIconBorderRadius:50% !default;
|
|
743
|
-
|
|
744
|
-
$galleriaItemNavigatorBg:transparent !default;
|
|
745
|
-
$galleriaItemNavigatorColor
|
|
746
|
-
$galleriaItemNavigatorMargin:0 .5rem !default;
|
|
747
|
-
$galleriaItemNavigatorFontSize:2rem !default;
|
|
748
|
-
$galleriaItemNavigatorHoverBg:rgba(255,255,255,0.1) !default;
|
|
749
|
-
$galleriaItemNavigatorHoverColor
|
|
750
|
-
$galleriaItemNavigatorWidth:4rem !default;
|
|
751
|
-
$galleriaItemNavigatorHeight:4rem !default;
|
|
752
|
-
$galleriaItemNavigatorBorderRadius
|
|
753
|
-
|
|
754
|
-
$galleriaCaptionBg:rgba(0,0,0
|
|
755
|
-
$galleriaCaptionTextColor
|
|
756
|
-
$galleriaCaptionPadding:1rem !default;
|
|
757
|
-
|
|
758
|
-
$galleriaIndicatorsPadding:1rem !default;
|
|
759
|
-
$galleriaIndicatorBg
|
|
760
|
-
$galleriaIndicatorHoverBg
|
|
761
|
-
$galleriaIndicatorBorderRadius:50% !default;
|
|
762
|
-
$galleriaIndicatorWidth:1rem !default;
|
|
763
|
-
$galleriaIndicatorHeight:1rem !default;
|
|
764
|
-
$galleriaIndicatorsBgOnItem:rgba(0,0,0
|
|
765
|
-
$galleriaIndicatorBgOnItem:rgba(255,255,255
|
|
766
|
-
$galleriaIndicatorHoverBgOnItem:rgba(255,255,255
|
|
767
|
-
|
|
768
|
-
$galleriaThumbnailContainerBg:rgba(0,0,0
|
|
769
|
-
$galleriaThumbnailContainerPadding:1rem .25rem !default;
|
|
770
|
-
$galleriaThumbnailNavigatorBg:transparent !default;
|
|
771
|
-
$galleriaThumbnailNavigatorColor
|
|
772
|
-
$galleriaThumbnailNavigatorHoverBg:rgba(255,255,255,0.1) !default;
|
|
773
|
-
$galleriaThumbnailNavigatorHoverColor
|
|
774
|
-
$galleriaThumbnailNavigatorBorderRadius:50% !default;
|
|
775
|
-
$galleriaThumbnailNavigatorWidth:2rem !default;
|
|
776
|
-
$galleriaThumbnailNavigatorHeight:2rem !default;
|
|
824
|
+
$galleriaMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
825
|
+
$galleriaCloseIconMargin: 0.5rem !default;
|
|
826
|
+
$galleriaCloseIconFontSize: 2rem !default;
|
|
827
|
+
$galleriaCloseIconBg: transparent !default;
|
|
828
|
+
$galleriaCloseIconColor: $shade100 !default;
|
|
829
|
+
$galleriaCloseIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
830
|
+
$galleriaCloseIconHoverColor: $shade100 !default;
|
|
831
|
+
$galleriaCloseIconWidth: 4rem !default;
|
|
832
|
+
$galleriaCloseIconHeight: 4rem !default;
|
|
833
|
+
$galleriaCloseIconBorderRadius: 50% !default;
|
|
834
|
+
|
|
835
|
+
$galleriaItemNavigatorBg: transparent !default;
|
|
836
|
+
$galleriaItemNavigatorColor: $shade100 !default;
|
|
837
|
+
$galleriaItemNavigatorMargin: 0 0.5rem !default;
|
|
838
|
+
$galleriaItemNavigatorFontSize: 2rem !default;
|
|
839
|
+
$galleriaItemNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
840
|
+
$galleriaItemNavigatorHoverColor: $shade100 !default;
|
|
841
|
+
$galleriaItemNavigatorWidth: 4rem !default;
|
|
842
|
+
$galleriaItemNavigatorHeight: 4rem !default;
|
|
843
|
+
$galleriaItemNavigatorBorderRadius: $borderRadius !default;
|
|
844
|
+
|
|
845
|
+
$galleriaCaptionBg: rgba(0, 0, 0, 0.5) !default;
|
|
846
|
+
$galleriaCaptionTextColor: $shade100 !default;
|
|
847
|
+
$galleriaCaptionPadding: 1rem !default;
|
|
848
|
+
|
|
849
|
+
$galleriaIndicatorsPadding: 1rem !default;
|
|
850
|
+
$galleriaIndicatorBg: $shade200 !default;
|
|
851
|
+
$galleriaIndicatorHoverBg: $shade300 !default;
|
|
852
|
+
$galleriaIndicatorBorderRadius: 50% !default;
|
|
853
|
+
$galleriaIndicatorWidth: 1rem !default;
|
|
854
|
+
$galleriaIndicatorHeight: 1rem !default;
|
|
855
|
+
$galleriaIndicatorsBgOnItem: rgba(0, 0, 0, 0.5) !default;
|
|
856
|
+
$galleriaIndicatorBgOnItem: rgba(255, 255, 255, 0.4) !default;
|
|
857
|
+
$galleriaIndicatorHoverBgOnItem: rgba(255, 255, 255, 0.6) !default;
|
|
858
|
+
|
|
859
|
+
$galleriaThumbnailContainerBg: rgba(0, 0, 0, 0.9) !default;
|
|
860
|
+
$galleriaThumbnailContainerPadding: 1rem 0.25rem !default;
|
|
861
|
+
$galleriaThumbnailNavigatorBg: transparent !default;
|
|
862
|
+
$galleriaThumbnailNavigatorColor: $shade100 !default;
|
|
863
|
+
$galleriaThumbnailNavigatorHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
864
|
+
$galleriaThumbnailNavigatorHoverColor: $shade100 !default;
|
|
865
|
+
$galleriaThumbnailNavigatorBorderRadius: 50% !default;
|
|
866
|
+
$galleriaThumbnailNavigatorWidth: 2rem !default;
|
|
867
|
+
$galleriaThumbnailNavigatorHeight: 2rem !default;
|
|
777
868
|
|
|
778
869
|
//divider
|
|
779
|
-
$dividerHorizontalMargin:1rem 0 !default;
|
|
780
|
-
$dividerHorizontalPadding:0 1rem !default;
|
|
781
|
-
$dividerVerticalMargin:0 1rem !default;
|
|
782
|
-
$dividerVerticalPadding:1rem 0 !default;
|
|
783
|
-
$dividerSize:1px !default;
|
|
784
|
-
$dividerColor
|
|
870
|
+
$dividerHorizontalMargin: 1rem 0 !default;
|
|
871
|
+
$dividerHorizontalPadding: 0 1rem !default;
|
|
872
|
+
$dividerVerticalMargin: 0 1rem !default;
|
|
873
|
+
$dividerVerticalPadding: 1rem 0 !default;
|
|
874
|
+
$dividerSize: 1px !default;
|
|
875
|
+
$dividerColor: $shade300 !default;
|
|
785
876
|
|
|
786
877
|
//avatar
|
|
787
|
-
$avatarBg
|
|
788
|
-
$avatarTextColor
|
|
878
|
+
$avatarBg: $shade300 !default;
|
|
879
|
+
$avatarTextColor: $textColor !default;
|
|
789
880
|
|
|
790
881
|
//chip
|
|
791
|
-
$chipBg
|
|
792
|
-
$chipTextColor
|
|
882
|
+
$chipBg: $shade300 !default;
|
|
883
|
+
$chipTextColor: $textColor !default;
|
|
793
884
|
$chipBorderRadius: 16px !default;
|
|
794
885
|
|
|
795
886
|
//scrollTop
|
|
796
|
-
$scrollTopBg:rgba(0,0,0,0.7) !default;
|
|
797
|
-
$scrollTopHoverBg:rgba(0,0,0,0.8) !default;
|
|
798
|
-
$scrollTopWidth:3rem !default;
|
|
799
|
-
$scrollTopHeight:3rem !default;
|
|
800
|
-
$scrollTopBorderRadius:50% !default;
|
|
801
|
-
$scrollTopFontSize:1.5rem !default;
|
|
802
|
-
$scrollTopTextColor
|
|
887
|
+
$scrollTopBg: rgba(0, 0, 0, 0.7) !default;
|
|
888
|
+
$scrollTopHoverBg: rgba(0, 0, 0, 0.8) !default;
|
|
889
|
+
$scrollTopWidth: 3rem !default;
|
|
890
|
+
$scrollTopHeight: 3rem !default;
|
|
891
|
+
$scrollTopBorderRadius: 50% !default;
|
|
892
|
+
$scrollTopFontSize: 1.5rem !default;
|
|
893
|
+
$scrollTopTextColor: $shade100 !default;
|
|
803
894
|
|
|
804
895
|
//skeleton
|
|
805
|
-
$skeletonBg
|
|
806
|
-
$skeletonAnimationBg:rgba(255,255,255,0.4) !default;
|
|
896
|
+
$skeletonBg: $shade200 !default;
|
|
897
|
+
$skeletonAnimationBg: rgba(255, 255, 255, 0.4) !default;
|
|
807
898
|
|
|
808
899
|
//splitter
|
|
809
|
-
$splitterGutterBg
|
|
810
|
-
$splitterGutterHandleBg
|
|
900
|
+
$splitterGutterBg: $shade100 !default;
|
|
901
|
+
$splitterGutterHandleBg: $shade300 !default;
|
|
811
902
|
|
|
812
903
|
//speeddial
|
|
813
904
|
$speedDialButtonWidth: 4rem !default;
|
|
@@ -823,87 +914,87 @@ $speedDialActionTextHoverColor: #fff !default;
|
|
|
823
914
|
//dock
|
|
824
915
|
$dockActionWidth: 4rem !default;
|
|
825
916
|
$dockActionHeight: 4rem !default;
|
|
826
|
-
$dockItemPadding: .5rem !default;
|
|
827
|
-
$dockItemBorderRadius
|
|
917
|
+
$dockItemPadding: 0.5rem !default;
|
|
918
|
+
$dockItemBorderRadius: $borderRadius !default;
|
|
828
919
|
$dockCurrentItemMargin: 1.5rem !default;
|
|
829
920
|
$dockFirstItemsMargin: 1.3rem !default;
|
|
830
921
|
$dockSecondItemsMargin: 0.9rem !default;
|
|
831
|
-
$dockBg: rgba(255,255,255
|
|
832
|
-
$dockBorder: 1px solid rgba(255,255,255,0.2) !default;
|
|
833
|
-
$dockPadding: .5rem .5rem !default;
|
|
834
|
-
$dockBorderRadius: .5rem !default;
|
|
922
|
+
$dockBg: rgba(255, 255, 255, 0.1) !default;
|
|
923
|
+
$dockBorder: 1px solid rgba(255, 255, 255, 0.2) !default;
|
|
924
|
+
$dockPadding: 0.5rem 0.5rem !default;
|
|
925
|
+
$dockBorderRadius: 0.5rem !default;
|
|
835
926
|
|
|
836
927
|
//image
|
|
837
|
-
$imageMaskBg:rgba(0,0,0,0.9) !default;
|
|
838
|
-
$imagePreviewToolbarPadding:1rem !default;
|
|
839
|
-
$imagePreviewIndicatorColor
|
|
840
|
-
$imagePreviewIndicatorBg:rgba(0,0,0,0.5) !default;
|
|
841
|
-
$imagePreviewActionIconBg:transparent !default;
|
|
842
|
-
$imagePreviewActionIconColor
|
|
843
|
-
$imagePreviewActionIconHoverBg:rgba(255,255,255,0.1) !default;
|
|
844
|
-
$imagePreviewActionIconHoverColor
|
|
845
|
-
$imagePreviewActionIconWidth:3rem !default;
|
|
846
|
-
$imagePreviewActionIconHeight:3rem !default;
|
|
847
|
-
$imagePreviewActionIconFontSize:1.5rem !default;
|
|
848
|
-
$imagePreviewActionIconBorderRadius:50% !default;
|
|
928
|
+
$imageMaskBg: rgba(0, 0, 0, 0.9) !default;
|
|
929
|
+
$imagePreviewToolbarPadding: 1rem !default;
|
|
930
|
+
$imagePreviewIndicatorColor: #f8f9fa !default;
|
|
931
|
+
$imagePreviewIndicatorBg: rgba(0, 0, 0, 0.5) !default;
|
|
932
|
+
$imagePreviewActionIconBg: transparent !default;
|
|
933
|
+
$imagePreviewActionIconColor: #f8f9fa !default;
|
|
934
|
+
$imagePreviewActionIconHoverBg: rgba(255, 255, 255, 0.1) !default;
|
|
935
|
+
$imagePreviewActionIconHoverColor: #f8f9fa !default;
|
|
936
|
+
$imagePreviewActionIconWidth: 3rem !default;
|
|
937
|
+
$imagePreviewActionIconHeight: 3rem !default;
|
|
938
|
+
$imagePreviewActionIconFontSize: 1.5rem !default;
|
|
939
|
+
$imagePreviewActionIconBorderRadius: 50% !default;
|
|
849
940
|
|
|
850
941
|
:root {
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
}
|
|
942
|
+
--font-family: "Inter", sans-serif;
|
|
943
|
+
// --surface-a:#{$shade000};
|
|
944
|
+
// --surface-b:#{$shade100};
|
|
945
|
+
// --surface-c:#{$shade200};
|
|
946
|
+
// --surface-d:#{$shade300};
|
|
947
|
+
// --surface-e:#{$shade000};
|
|
948
|
+
// --surface-f:#{$shade000};
|
|
949
|
+
// --text-color:#{$shade700};
|
|
950
|
+
// --text-color-secondary:#{$shade600};
|
|
951
|
+
// --p-primary-color:#{$primaryColor};
|
|
952
|
+
// --primary-light-color:#{$primaryLightColor};
|
|
953
|
+
// --primary-lighter-color:#{$primaryLighterColor};
|
|
954
|
+
// --primary-dark-color:#{$primaryDarkColor};
|
|
955
|
+
// --primary-darker-color:#{$primaryDarkerColor};
|
|
956
|
+
// --p-primary-color-text:#{$primaryTextColor};
|
|
957
|
+
// --surface-0: #ffffff;
|
|
958
|
+
// --surface-50: #FAFAFA;
|
|
959
|
+
// --surface-100: #F5F5F5;
|
|
960
|
+
// --surface-200: #EEEEEE;
|
|
961
|
+
// --surface-300: #E0E0E0;
|
|
962
|
+
// --surface-400: #BDBDBD;
|
|
963
|
+
// --surface-500: #9E9E9E;
|
|
964
|
+
// --surface-600: #757575;
|
|
965
|
+
// --surface-700: #616161;
|
|
966
|
+
// --surface-800: #424242;
|
|
967
|
+
// --surface-900: #212121;
|
|
968
|
+
// --gray-50: #FAFAFA;
|
|
969
|
+
// --gray-100: #F5F5F5;
|
|
970
|
+
// --gray-200: #EEEEEE;
|
|
971
|
+
// --gray-300: #E0E0E0;
|
|
972
|
+
// --gray-400: #BDBDBD;
|
|
973
|
+
// --gray-500: #9E9E9E;
|
|
974
|
+
// --gray-600: #757575;
|
|
975
|
+
// --gray-700: #616161;
|
|
976
|
+
// --gray-800: #424242;
|
|
977
|
+
// --gray-900: #212121;
|
|
978
|
+
// --content-padding:#{$panelContentPadding};
|
|
979
|
+
// --inline-spacing:#{$inlineSpacing};
|
|
980
|
+
--border-radius: #{$borderRadius};
|
|
981
|
+
// --surface-ground:#f8f9fa;
|
|
982
|
+
// --surface-section:#ffffff;
|
|
983
|
+
--p-paginator-border-radius: 0 0 6px 6px !important;
|
|
984
|
+
--p-panel-header-border-width: 0 0 1px 0 !important;
|
|
985
|
+
--surface-card: var(--p-content-background);
|
|
986
|
+
// --surface-overlay:#ffffff;
|
|
987
|
+
--surface-border: var(--p-content-border-color);
|
|
988
|
+
// --p-panel-content-padding: 1.125rem !important;
|
|
989
|
+
--p-panel-header-padding: 18px !important;
|
|
990
|
+
--p-colorpicker-preview-width: 33px !important;
|
|
991
|
+
--p-colorpicker-preview-height: 33px !important;
|
|
992
|
+
--p-secondary-color: #00f0b5;
|
|
993
|
+
// --p-panel-toggleable-header-padding: var(--p-panel-header-padding) !important;
|
|
994
|
+
// --surface-hover: #e9ecef;
|
|
995
|
+
// --maskbg: #{$maskBg};
|
|
996
|
+
// --highlight-bg: #{$highlightBg};
|
|
997
|
+
// --highlight-text-color: #{$highlightTextColor};
|
|
998
|
+
// // --focus-ring: #{$focusShadow};
|
|
999
|
+
// color-scheme: light;
|
|
1000
|
+
}
|