@syncfusion/ej2-navigations 21.2.9 → 22.1.34
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/.eslintrc.json +1 -0
- package/CHANGELOG.md +9 -0
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +288 -93
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +292 -94
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/accordion/accordion-model.d.ts +4 -2
- package/src/accordion/accordion.d.ts +4 -2
- package/src/accordion/accordion.js +1 -1
- package/src/breadcrumb/breadcrumb-model.d.ts +4 -2
- package/src/breadcrumb/breadcrumb.d.ts +4 -2
- package/src/carousel/carousel-model.d.ts +37 -8
- package/src/carousel/carousel.d.ts +69 -6
- package/src/carousel/carousel.js +287 -89
- package/src/common/menu-base-model.d.ts +2 -1
- package/src/common/menu-base.d.ts +2 -1
- package/src/common/menu-base.js +2 -2
- package/src/menu/menu-model.d.ts +3 -2
- package/src/menu/menu.d.ts +2 -1
- package/src/menu/menu.js +1 -1
- package/src/sidebar/sidebar.d.ts +12 -26
- package/src/tab/tab-model.d.ts +3 -2
- package/src/tab/tab.d.ts +3 -2
- package/src/toolbar/toolbar-model.d.ts +3 -1
- package/src/toolbar/toolbar.d.ts +3 -1
- package/src/treeview/treeview-model.d.ts +4 -1
- package/src/treeview/treeview.d.ts +17 -31
- package/src/treeview/treeview.js +1 -1
- package/styles/accordion/_bootstrap-dark-definition.scss +3 -1
- package/styles/accordion/_bootstrap-definition.scss +3 -1
- package/styles/accordion/_bootstrap4-definition.scss +2 -0
- package/styles/accordion/_bootstrap5-definition.scss +3 -1
- package/styles/accordion/_fabric-dark-definition.scss +2 -0
- package/styles/accordion/_fabric-definition.scss +2 -0
- package/styles/accordion/_fluent-definition.scss +2 -0
- package/styles/accordion/_fusionnew-definition.scss +2 -0
- package/styles/accordion/_highcontrast-definition.scss +2 -0
- package/styles/accordion/_highcontrast-light-definition.scss +2 -0
- package/styles/accordion/_layout.scss +9 -0
- package/styles/accordion/_material-dark-definition.scss +2 -0
- package/styles/accordion/_material-definition.scss +2 -0
- package/styles/accordion/_material3-dark-definition.scss +1 -0
- package/styles/accordion/_material3-definition.scss +182 -0
- package/styles/accordion/_tailwind-definition.scss +2 -0
- package/styles/accordion/_theme.scss +9 -0
- package/styles/accordion/bootstrap-dark.css +11 -1
- package/styles/accordion/bootstrap.css +11 -1
- package/styles/accordion/bootstrap4.css +10 -0
- package/styles/accordion/bootstrap5-dark.css +11 -1
- package/styles/accordion/bootstrap5.css +11 -1
- package/styles/accordion/fabric-dark.css +10 -0
- package/styles/accordion/fabric.css +10 -0
- package/styles/accordion/fluent-dark.css +10 -0
- package/styles/accordion/fluent.css +10 -0
- package/styles/accordion/highcontrast-light.css +10 -0
- package/styles/accordion/highcontrast.css +10 -0
- package/styles/accordion/icons/_material3-dark.scss +1 -0
- package/styles/accordion/material-dark.css +10 -0
- package/styles/accordion/material.css +10 -0
- package/styles/accordion/material3-dark.css +596 -0
- package/styles/accordion/material3-dark.scss +5 -0
- package/styles/accordion/material3.css +652 -0
- package/styles/accordion/material3.scss +5 -0
- package/styles/accordion/tailwind-dark.css +10 -0
- package/styles/accordion/tailwind.css +10 -0
- package/styles/appbar/_layout.scss +6 -1
- package/styles/appbar/_material3-dark-definition.scss +1 -0
- package/styles/appbar/_material3-definition.scss +8 -0
- package/styles/appbar/_theme.scss +12 -2
- package/styles/appbar/bootstrap-dark.css +7 -3
- package/styles/appbar/bootstrap.css +7 -3
- package/styles/appbar/bootstrap4.css +7 -3
- package/styles/appbar/bootstrap5-dark.css +7 -3
- package/styles/appbar/bootstrap5.css +7 -3
- package/styles/appbar/fabric-dark.css +7 -3
- package/styles/appbar/fabric.css +7 -3
- package/styles/appbar/fluent-dark.css +7 -3
- package/styles/appbar/fluent.css +7 -3
- package/styles/appbar/highcontrast-light.css +7 -3
- package/styles/appbar/highcontrast.css +7 -3
- package/styles/appbar/material-dark.css +7 -3
- package/styles/appbar/material.css +7 -3
- package/styles/appbar/material3-dark.css +307 -0
- package/styles/appbar/material3-dark.scss +4 -0
- package/styles/appbar/material3.css +363 -0
- package/styles/appbar/material3.scss +4 -0
- package/styles/appbar/tailwind-dark.css +7 -3
- package/styles/appbar/tailwind.css +7 -3
- package/styles/bootstrap-dark.css +185 -126
- package/styles/bootstrap.css +185 -126
- package/styles/bootstrap4.css +183 -124
- package/styles/bootstrap5-dark.css +179 -120
- package/styles/bootstrap5.css +179 -120
- package/styles/breadcrumb/_material3-dark-definition.scss +1 -0
- package/styles/breadcrumb/_material3-definition.scss +60 -0
- package/styles/breadcrumb/_theme.scss +13 -11
- package/styles/breadcrumb/bootstrap-dark.css +9 -9
- package/styles/breadcrumb/bootstrap.css +9 -9
- package/styles/breadcrumb/bootstrap4.css +9 -9
- package/styles/breadcrumb/bootstrap5-dark.css +8 -8
- package/styles/breadcrumb/bootstrap5.css +8 -8
- package/styles/breadcrumb/fabric-dark.css +7 -7
- package/styles/breadcrumb/fabric.css +7 -7
- package/styles/breadcrumb/fluent-dark.css +5 -5
- package/styles/breadcrumb/fluent.css +5 -5
- package/styles/breadcrumb/highcontrast-light.css +7 -7
- package/styles/breadcrumb/highcontrast.css +7 -7
- package/styles/breadcrumb/icons/_material3-dark.scss +1 -0
- package/styles/breadcrumb/icons/_material3.scss +0 -11
- package/styles/breadcrumb/material-dark.css +9 -9
- package/styles/breadcrumb/material.css +9 -9
- package/styles/breadcrumb/material3-dark.css +424 -0
- package/styles/breadcrumb/material3-dark.scss +5 -0
- package/styles/breadcrumb/material3.css +480 -0
- package/styles/breadcrumb/material3.scss +5 -0
- package/styles/breadcrumb/tailwind-dark.css +8 -8
- package/styles/breadcrumb/tailwind.css +8 -8
- package/styles/carousel/_bootstrap-dark-definition.scss +5 -0
- package/styles/carousel/_bootstrap-definition.scss +5 -0
- package/styles/carousel/_bootstrap4-definition.scss +5 -0
- package/styles/carousel/_bootstrap5-definition.scss +5 -0
- package/styles/carousel/_fabric-dark-definition.scss +5 -0
- package/styles/carousel/_fabric-definition.scss +5 -0
- package/styles/carousel/_fluent-definition.scss +5 -0
- package/styles/carousel/_fusionnew-definition.scss +5 -0
- package/styles/carousel/_highcontrast-definition.scss +5 -0
- package/styles/carousel/_highcontrast-light-definition.scss +5 -0
- package/styles/carousel/_layout.scss +96 -67
- package/styles/carousel/_material-dark-definition.scss +5 -0
- package/styles/carousel/_material-definition.scss +5 -0
- package/styles/carousel/_material3-dark-definition.scss +1 -0
- package/styles/carousel/_material3-definition.scss +28 -0
- package/styles/carousel/_tailwind-definition.scss +5 -0
- package/styles/carousel/_theme.scss +49 -20
- package/styles/carousel/bootstrap-dark.css +101 -62
- package/styles/carousel/bootstrap.css +101 -62
- package/styles/carousel/bootstrap4.css +101 -62
- package/styles/carousel/bootstrap5-dark.css +101 -62
- package/styles/carousel/bootstrap5.css +101 -62
- package/styles/carousel/fabric-dark.css +101 -62
- package/styles/carousel/fabric.css +101 -62
- package/styles/carousel/fluent-dark.css +101 -62
- package/styles/carousel/fluent.css +101 -62
- package/styles/carousel/highcontrast-light.css +101 -62
- package/styles/carousel/highcontrast.css +101 -62
- package/styles/carousel/icons/_material3-dark.scss +1 -0
- package/styles/carousel/material-dark.css +101 -62
- package/styles/carousel/material.css +101 -62
- package/styles/carousel/material3-dark.css +359 -0
- package/styles/carousel/material3-dark.scss +6 -0
- package/styles/carousel/material3.css +415 -0
- package/styles/carousel/material3.scss +6 -0
- package/styles/carousel/tailwind-dark.css +101 -62
- package/styles/carousel/tailwind.css +101 -62
- package/styles/context-menu/_layout.scss +2 -2
- package/styles/context-menu/_material3-dark-definition.scss +1 -0
- package/styles/context-menu/_material3-definition.scss +52 -0
- package/styles/context-menu/_theme.scss +6 -1
- package/styles/context-menu/icons/_material3-dark.scss +1 -0
- package/styles/context-menu/material3-dark.css +435 -0
- package/styles/context-menu/material3-dark.scss +8 -0
- package/styles/context-menu/material3.css +491 -0
- package/styles/context-menu/material3.scss +8 -0
- package/styles/fabric-dark.css +186 -127
- package/styles/fabric.css +185 -126
- package/styles/fluent-dark.css +179 -120
- package/styles/fluent.css +179 -120
- package/styles/h-scroll/_material3-dark-definition.scss +1 -0
- package/styles/h-scroll/_material3-definition.scss +83 -0
- package/styles/h-scroll/icons/_material3-dark.scss +1 -0
- package/styles/h-scroll/material3-dark.css +336 -0
- package/styles/h-scroll/material3-dark.scss +5 -0
- package/styles/h-scroll/material3.css +392 -0
- package/styles/h-scroll/material3.scss +5 -0
- package/styles/highcontrast-light.css +178 -119
- package/styles/highcontrast.css +182 -123
- package/styles/material-dark.css +189 -130
- package/styles/material.css +188 -129
- package/styles/material3-dark.css +10343 -0
- package/styles/material3-dark.scss +15 -0
- package/styles/material3.css +10399 -0
- package/styles/material3.scss +15 -0
- package/styles/menu/_layout.scss +7 -0
- package/styles/menu/_material3-dark-definition.scss +1 -0
- package/styles/menu/_material3-definition.scss +67 -0
- package/styles/menu/_theme.scss +5 -2
- package/styles/menu/bootstrap-dark.css +4 -0
- package/styles/menu/bootstrap.css +4 -0
- package/styles/menu/bootstrap4.css +4 -0
- package/styles/menu/bootstrap5-dark.css +4 -0
- package/styles/menu/bootstrap5.css +4 -0
- package/styles/menu/fabric-dark.css +4 -0
- package/styles/menu/fabric.css +4 -0
- package/styles/menu/fluent-dark.css +4 -0
- package/styles/menu/fluent.css +4 -0
- package/styles/menu/highcontrast-light.css +4 -0
- package/styles/menu/highcontrast.css +4 -0
- package/styles/menu/icons/_material3-dark.scss +1 -0
- package/styles/menu/material-dark.css +4 -0
- package/styles/menu/material.css +4 -0
- package/styles/menu/material3-dark.css +1162 -0
- package/styles/menu/material3-dark.scss +9 -0
- package/styles/menu/material3.css +1218 -0
- package/styles/menu/material3.scss +9 -0
- package/styles/menu/tailwind-dark.css +4 -0
- package/styles/menu/tailwind.css +4 -0
- package/styles/pager/_bootstrap-dark-definition.scss +9 -5
- package/styles/pager/_bootstrap-definition.scss +9 -5
- package/styles/pager/_bootstrap4-definition.scss +8 -4
- package/styles/pager/_bootstrap5-definition.scss +4 -0
- package/styles/pager/_fabric-dark-definition.scss +10 -6
- package/styles/pager/_fabric-definition.scss +10 -6
- package/styles/pager/_fluent-definition.scss +8 -4
- package/styles/pager/_fusionnew-definition.scss +4 -0
- package/styles/pager/_highcontrast-definition.scss +8 -4
- package/styles/pager/_highcontrast-light-definition.scss +4 -0
- package/styles/pager/_layout.scss +63 -48
- package/styles/pager/_material-dark-definition.scss +12 -8
- package/styles/pager/_material-definition.scss +11 -7
- package/styles/pager/_material3-dark-definition.scss +1 -0
- package/styles/pager/_material3-definition.scss +150 -0
- package/styles/pager/_tailwind-definition.scss +9 -5
- package/styles/pager/_theme.scss +12 -5
- package/styles/pager/bootstrap-dark.css +15 -43
- package/styles/pager/bootstrap.css +15 -43
- package/styles/pager/bootstrap4.css +14 -42
- package/styles/pager/bootstrap5-dark.css +10 -38
- package/styles/pager/bootstrap5.css +10 -38
- package/styles/pager/fabric-dark.css +17 -45
- package/styles/pager/fabric.css +16 -44
- package/styles/pager/fluent-dark.css +14 -42
- package/styles/pager/fluent.css +14 -42
- package/styles/pager/highcontrast-light.css +10 -38
- package/styles/pager/highcontrast.css +14 -42
- package/styles/pager/icons/_material3-dark.scss +1 -0
- package/styles/pager/icons/_material3.scss +4 -4
- package/styles/pager/material-dark.css +18 -46
- package/styles/pager/material.css +17 -45
- package/styles/pager/material3-dark.css +765 -0
- package/styles/pager/material3-dark.scss +5 -0
- package/styles/pager/material3.css +821 -0
- package/styles/pager/material3.scss +5 -0
- package/styles/pager/tailwind-dark.css +15 -43
- package/styles/pager/tailwind.css +15 -43
- package/styles/sidebar/_material3-dark-definition.scss +1 -0
- package/styles/sidebar/_material3-definition.scss +7 -0
- package/styles/sidebar/material3-dark.css +204 -0
- package/styles/sidebar/material3-dark.scss +4 -0
- package/styles/sidebar/material3.css +260 -0
- package/styles/sidebar/material3.scss +4 -0
- package/styles/tab/_bootstrap-dark-definition.scss +4 -0
- package/styles/tab/_bootstrap-definition.scss +4 -0
- package/styles/tab/_bootstrap4-definition.scss +4 -0
- package/styles/tab/_bootstrap5-definition.scss +4 -0
- package/styles/tab/_fabric-dark-definition.scss +4 -0
- package/styles/tab/_fabric-definition.scss +4 -0
- package/styles/tab/_fluent-definition.scss +4 -0
- package/styles/tab/_fusionnew-definition.scss +4 -0
- package/styles/tab/_highcontrast-definition.scss +4 -0
- package/styles/tab/_highcontrast-light-definition.scss +4 -0
- package/styles/tab/_layout.scss +37 -13
- package/styles/tab/_material-dark-definition.scss +4 -0
- package/styles/tab/_material-definition.scss +4 -0
- package/styles/tab/_material3-dark-definition.scss +1 -0
- package/styles/tab/_material3-definition.scss +661 -0
- package/styles/tab/_tailwind-definition.scss +4 -0
- package/styles/tab/_theme.scss +44 -1
- package/styles/tab/bootstrap-dark.css +30 -7
- package/styles/tab/bootstrap.css +30 -7
- package/styles/tab/bootstrap4.css +30 -7
- package/styles/tab/bootstrap5-dark.css +30 -7
- package/styles/tab/bootstrap5.css +30 -7
- package/styles/tab/fabric-dark.css +30 -7
- package/styles/tab/fabric.css +30 -7
- package/styles/tab/fluent-dark.css +30 -7
- package/styles/tab/fluent.css +30 -7
- package/styles/tab/highcontrast-light.css +30 -7
- package/styles/tab/highcontrast.css +30 -7
- package/styles/tab/icons/_material3-dark.scss +1 -0
- package/styles/tab/material-dark.css +30 -7
- package/styles/tab/material.css +30 -7
- package/styles/tab/material3-dark.css +4109 -0
- package/styles/tab/material3-dark.scss +6 -0
- package/styles/tab/material3.css +4165 -0
- package/styles/tab/material3.scss +6 -0
- package/styles/tab/tailwind-dark.css +29 -6
- package/styles/tab/tailwind.css +29 -6
- package/styles/tailwind-dark.css +185 -126
- package/styles/tailwind.css +185 -126
- package/styles/toolbar/_fabric-dark-definition.scss +3 -3
- package/styles/toolbar/_fabric-definition.scss +3 -3
- package/styles/toolbar/_highcontrast-definition.scss +1 -1
- package/styles/toolbar/_highcontrast-light-definition.scss +1 -1
- package/styles/toolbar/_layout.scss +8 -0
- package/styles/toolbar/_material-dark-definition.scss +3 -3
- package/styles/toolbar/_material-definition.scss +3 -3
- package/styles/toolbar/_material3-dark-definition.scss +1 -0
- package/styles/toolbar/_material3-definition.scss +220 -0
- package/styles/toolbar/_tailwind-definition.scss +3 -3
- package/styles/toolbar/_theme.scss +2 -1
- package/styles/toolbar/bootstrap-dark.css +8 -1
- package/styles/toolbar/bootstrap.css +8 -1
- package/styles/toolbar/bootstrap4.css +8 -1
- package/styles/toolbar/bootstrap5-dark.css +8 -1
- package/styles/toolbar/bootstrap5.css +8 -1
- package/styles/toolbar/fabric-dark.css +10 -3
- package/styles/toolbar/fabric.css +10 -3
- package/styles/toolbar/fluent-dark.css +8 -1
- package/styles/toolbar/fluent.css +8 -1
- package/styles/toolbar/highcontrast-light.css +9 -2
- package/styles/toolbar/highcontrast.css +9 -2
- package/styles/toolbar/icons/_material3-dark.scss +1 -0
- package/styles/toolbar/material-dark.css +10 -3
- package/styles/toolbar/material.css +10 -3
- package/styles/toolbar/material3-dark.css +1145 -0
- package/styles/toolbar/material3-dark.scss +9 -0
- package/styles/toolbar/material3.css +1201 -0
- package/styles/toolbar/material3.scss +9 -0
- package/styles/toolbar/tailwind-dark.css +11 -4
- package/styles/toolbar/tailwind.css +11 -4
- package/styles/treeview/_layout.scss +15 -2
- package/styles/treeview/_material3-dark-definition.scss +1 -0
- package/styles/treeview/_material3-definition.scss +121 -0
- package/styles/treeview/icons/_material3-dark.scss +1 -0
- package/styles/treeview/icons/_material3.scss +1 -1
- package/styles/treeview/material3-dark.css +903 -0
- package/styles/treeview/material3-dark.scss +7 -0
- package/styles/treeview/material3.css +959 -0
- package/styles/treeview/material3.scss +7 -0
- package/styles/v-scroll/_material3-dark-definition.scss +1 -0
- package/styles/v-scroll/_material3-definition.scss +49 -0
- package/styles/v-scroll/icons/_material3-dark.scss +1 -0
- package/styles/v-scroll/material3-dark.css +258 -0
- package/styles/v-scroll/material3-dark.scss +5 -0
- package/styles/v-scroll/material3.css +314 -0
- package/styles/v-scroll/material3.scss +5 -0
package/styles/bootstrap5.css
CHANGED
|
@@ -164,33 +164,11 @@
|
|
|
164
164
|
border-radius: 0;
|
|
165
165
|
padding: 12px 15px 13px 15px;
|
|
166
166
|
}
|
|
167
|
-
.e-bigger .e-pager.e-rtl .e-spacing, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-
|
|
168
|
-
.e-pager.e-bigger.e-rtl .e-spacing,
|
|
169
|
-
.e-pager.e-bigger.e-rtl .e-numericitem
|
|
170
|
-
.e-pager.e-bigger.e-rtl .e-
|
|
171
|
-
|
|
172
|
-
padding: 12px 15px 13px;
|
|
173
|
-
}
|
|
174
|
-
.e-bigger .e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
175
|
-
.e-pager.e-bigger .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
176
|
-
padding: 12px 15px 13px 15px;
|
|
177
|
-
}
|
|
178
|
-
.e-bigger .e-pager.e-rtl, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-currentitem,
|
|
179
|
-
.e-pager.e-bigger.e-rtl,
|
|
180
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover,
|
|
181
|
-
.e-pager.e-bigger.e-rtl .e-currentitem {
|
|
182
|
-
margin: 0;
|
|
183
|
-
padding: 7px 8px 7px 8px;
|
|
184
|
-
}
|
|
185
|
-
.e-bigger .e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
186
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
187
|
-
padding: 12px 15px 13px;
|
|
188
|
-
}
|
|
189
|
-
.e-bigger .e-pager.e-rtl .e-pp, .e-bigger .e-pager.e-rtl .e-np, .e-bigger .e-pager.e-rtl .e-pp:hover, .e-bigger .e-pager.e-rtl .e-np:hover,
|
|
190
|
-
.e-pager.e-bigger.e-rtl .e-pp,
|
|
191
|
-
.e-pager.e-bigger.e-rtl .e-np,
|
|
192
|
-
.e-pager.e-bigger.e-rtl .e-pp:hover,
|
|
193
|
-
.e-pager.e-bigger.e-rtl .e-np:hover {
|
|
167
|
+
.e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem, .e-bigger .e-pager.e-rtl .e-pp.e-spacing.e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-np.e-spacing.e-numericitem:hover,
|
|
168
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem,
|
|
169
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem,
|
|
170
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem:hover,
|
|
171
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem:hover {
|
|
194
172
|
font-size: 14px;
|
|
195
173
|
margin-top: 0;
|
|
196
174
|
padding: 14px 14px 13px;
|
|
@@ -247,6 +225,9 @@
|
|
|
247
225
|
.e-pager [class^=e-] {
|
|
248
226
|
box-sizing: border-box;
|
|
249
227
|
}
|
|
228
|
+
.e-pager .e-pager-default.e-hide {
|
|
229
|
+
display: none;
|
|
230
|
+
}
|
|
250
231
|
.e-pager div.e-parentmsgbar {
|
|
251
232
|
float: right;
|
|
252
233
|
padding-bottom: 0;
|
|
@@ -319,9 +300,6 @@
|
|
|
319
300
|
padding: 10px 12.5px 11.5px 12.5px;
|
|
320
301
|
text-decoration: none;
|
|
321
302
|
}
|
|
322
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
323
|
-
padding: 10.4px 12.5px 11.6px 12.5px;
|
|
324
|
-
}
|
|
325
303
|
.e-pager .e-currentitem {
|
|
326
304
|
border: 3px solid #86b7fe;
|
|
327
305
|
font-style: normal;
|
|
@@ -442,7 +420,6 @@
|
|
|
442
420
|
padding-right: 0;
|
|
443
421
|
padding-top: 0;
|
|
444
422
|
text-align: center;
|
|
445
|
-
vertical-align: top;
|
|
446
423
|
width: calc(60% - 48px);
|
|
447
424
|
}
|
|
448
425
|
.e-pager .e-pagesizes {
|
|
@@ -505,6 +482,7 @@
|
|
|
505
482
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
506
483
|
float: left;
|
|
507
484
|
margin-left: 6px;
|
|
485
|
+
padding-top: 8px;
|
|
508
486
|
}
|
|
509
487
|
.e-pager.e-rtl .e-pagerdropdown {
|
|
510
488
|
margin: -24px 16px 0 0;
|
|
@@ -550,7 +528,7 @@
|
|
|
550
528
|
border-radius: 0 4px 4px 0;
|
|
551
529
|
}
|
|
552
530
|
.e-pager.e-rtl .e-lastpage:hover {
|
|
553
|
-
border-radius: 4px
|
|
531
|
+
border-radius: 0 4px 4px 0;
|
|
554
532
|
}
|
|
555
533
|
.e-pager.e-rtl .e-numericcontainer {
|
|
556
534
|
float: none;
|
|
@@ -567,9 +545,6 @@
|
|
|
567
545
|
margin: 0;
|
|
568
546
|
padding: 10.4px 12.5px 11px 12.5px;
|
|
569
547
|
}
|
|
570
|
-
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
571
|
-
padding: 10.4px 12.5px 11px 12.5px;
|
|
572
|
-
}
|
|
573
548
|
.e-pager.e-rtl .e-pp, .e-pager.e-rtl .e-np, .e-pager.e-rtl .e-pp:hover, .e-pager.e-rtl .e-np:hover {
|
|
574
549
|
margin-top: 0;
|
|
575
550
|
padding: 10px 10.5px 11px 10.5px;
|
|
@@ -639,9 +614,6 @@
|
|
|
639
614
|
color: #0d6efd;
|
|
640
615
|
opacity: 1;
|
|
641
616
|
}
|
|
642
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
643
|
-
border-left: 0 solid #dee2e6;
|
|
644
|
-
}
|
|
645
617
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
646
618
|
background-color: #e9ecef;
|
|
647
619
|
opacity: 1;
|
|
@@ -1241,6 +1213,12 @@
|
|
|
1241
1213
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1242
1214
|
margin-left: 12px;
|
|
1243
1215
|
}
|
|
1216
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1217
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
1218
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1219
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1220
|
+
margin-right: 12px;
|
|
1221
|
+
}
|
|
1244
1222
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
1245
1223
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1246
1224
|
margin-right: 12px;
|
|
@@ -2281,12 +2259,13 @@
|
|
|
2281
2259
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
2282
2260
|
background: #f8f9fa;
|
|
2283
2261
|
border: solid #dee2e6;
|
|
2284
|
-
border-left: 0;
|
|
2285
2262
|
border-width: 0 0 0 0;
|
|
2286
2263
|
}
|
|
2287
2264
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
2288
2265
|
background: #5c636a;
|
|
2289
2266
|
color: #6c757d;
|
|
2267
|
+
border: solid #dee2e6;
|
|
2268
|
+
border-width: 0 0 0 0;
|
|
2290
2269
|
}
|
|
2291
2270
|
|
|
2292
2271
|
/*! Accordion's bootstrap5 theme wise override definitions and variables */
|
|
@@ -2315,6 +2294,7 @@
|
|
|
2315
2294
|
}
|
|
2316
2295
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header,
|
|
2317
2296
|
.e-accordion.e-bigger .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2297
|
+
box-shadow: none;
|
|
2318
2298
|
padding: 12px 0 12px 28px;
|
|
2319
2299
|
}
|
|
2320
2300
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content,
|
|
@@ -2409,6 +2389,9 @@
|
|
|
2409
2389
|
.e-accordion .e-acrdn-item.e-select.e-selected:last-child {
|
|
2410
2390
|
border-bottom: 1px solid #dee2e6;
|
|
2411
2391
|
}
|
|
2392
|
+
.e-accordion .e-acrdn-item:first-child {
|
|
2393
|
+
margin-top: 0;
|
|
2394
|
+
}
|
|
2412
2395
|
.e-accordion .e-acrdn-item:not(.e-select) + .e-acrdn-item:not(.e-select) {
|
|
2413
2396
|
margin-bottom: 0;
|
|
2414
2397
|
margin-top: 0;
|
|
@@ -2496,7 +2479,10 @@
|
|
|
2496
2479
|
padding: 16px 16px 16px 26px;
|
|
2497
2480
|
}
|
|
2498
2481
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2499
|
-
padding:
|
|
2482
|
+
padding: 10px 0 10px 26px;
|
|
2483
|
+
}
|
|
2484
|
+
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header:focus {
|
|
2485
|
+
box-shadow: inset 0 0 0 4px rgba(13, 110, 253, 0.25);
|
|
2500
2486
|
}
|
|
2501
2487
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content {
|
|
2502
2488
|
padding: 0;
|
|
@@ -2676,6 +2662,7 @@
|
|
|
2676
2662
|
color: #212529;
|
|
2677
2663
|
background: none;
|
|
2678
2664
|
border-top: 0;
|
|
2665
|
+
border-bottom: 0;
|
|
2679
2666
|
}
|
|
2680
2667
|
.e-accordion .e-acrdn-item .e-acrdn-header .e-acrdn-header-content {
|
|
2681
2668
|
color: #212529;
|
|
@@ -2779,6 +2766,8 @@
|
|
|
2779
2766
|
}
|
|
2780
2767
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2781
2768
|
box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
|
|
2769
|
+
position: relative;
|
|
2770
|
+
z-index: 2;
|
|
2782
2771
|
}
|
|
2783
2772
|
.e-accordion .e-acrdn-item.e-selected + .e-selected {
|
|
2784
2773
|
border-color: #dee2e6;
|
|
@@ -2853,6 +2842,9 @@
|
|
|
2853
2842
|
position: relative;
|
|
2854
2843
|
width: 100%;
|
|
2855
2844
|
}
|
|
2845
|
+
.e-carousel .e-carousel-items.e-swipe-start {
|
|
2846
|
+
cursor: pointer;
|
|
2847
|
+
}
|
|
2856
2848
|
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2857
2849
|
padding: 0 100px;
|
|
2858
2850
|
}
|
|
@@ -2866,7 +2858,7 @@
|
|
|
2866
2858
|
padding: 0 50px;
|
|
2867
2859
|
}
|
|
2868
2860
|
}
|
|
2869
|
-
.e-carousel
|
|
2861
|
+
.e-carousel .e-carousel-items {
|
|
2870
2862
|
width: calc(var(--carousel-items-count) * 100%);
|
|
2871
2863
|
display: -ms-flexbox;
|
|
2872
2864
|
display: flex;
|
|
@@ -2876,63 +2868,35 @@
|
|
|
2876
2868
|
transition-duration: 0.6s;
|
|
2877
2869
|
transition-timing-function: ease-in-out;
|
|
2878
2870
|
}
|
|
2879
|
-
.e-carousel.e-
|
|
2871
|
+
.e-carousel .e-carousel-items .e-carousel-item {
|
|
2880
2872
|
height: 100%;
|
|
2881
2873
|
overflow: hidden;
|
|
2882
2874
|
padding: 0;
|
|
2883
2875
|
position: relative;
|
|
2884
2876
|
width: calc(100% / var(--carousel-items-count));
|
|
2885
2877
|
}
|
|
2886
|
-
.e-carousel.e-blazor-carousel
|
|
2887
|
-
transform: translateX(calc(-100% / var(--carousel-items-count) *
|
|
2888
|
-
transition: transform
|
|
2889
|
-
}
|
|
2890
|
-
.e-carousel.e-blazor-carousel.e-partial.e-rtl .e-carousel-items {
|
|
2891
|
-
transform: translateX(calc(100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2892
|
-
transition: transform 0.6s ease-in-out;
|
|
2893
|
-
}
|
|
2894
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2895
|
-
backface-visibility: hidden;
|
|
2896
|
-
display: none;
|
|
2897
|
-
float: left;
|
|
2898
|
-
height: 100%;
|
|
2899
|
-
margin-right: -100%;
|
|
2900
|
-
position: relative;
|
|
2901
|
-
transition: transform 0.6s ease-in-out;
|
|
2902
|
-
width: 100%;
|
|
2903
|
-
}
|
|
2904
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next, .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2905
|
-
display: block;
|
|
2878
|
+
.e-carousel.e-blazor-carousel .e-carousel-items {
|
|
2879
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2880
|
+
transition: transform;
|
|
2906
2881
|
}
|
|
2907
|
-
.e-carousel.e-
|
|
2908
|
-
transform: translateX(100%);
|
|
2882
|
+
.e-carousel.e-blazor-carousel.e-rtl .e-carousel-items {
|
|
2883
|
+
transform: translateX(calc(100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2884
|
+
transition: transform;
|
|
2909
2885
|
}
|
|
2910
|
-
.e-carousel.e-carousel-
|
|
2911
|
-
|
|
2886
|
+
.e-carousel.e-carousel-fade-animation .e-carousel-items.e-fade-in-out {
|
|
2887
|
+
transition-property: none;
|
|
2888
|
+
animation: fade-in-out 0.6s ease-in-out;
|
|
2912
2889
|
}
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
position: relative;
|
|
2921
|
-
transition: opacity 0.6s ease-in-out;
|
|
2922
|
-
width: 100%;
|
|
2923
|
-
z-index: 0;
|
|
2924
|
-
}
|
|
2925
|
-
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2926
|
-
opacity: 1;
|
|
2927
|
-
z-index: 1;
|
|
2928
|
-
}
|
|
2929
|
-
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2930
|
-
display: none;
|
|
2931
|
-
height: 100%;
|
|
2932
|
-
width: 100%;
|
|
2890
|
+
@keyframes fade-in-out {
|
|
2891
|
+
0% {
|
|
2892
|
+
opacity: 0;
|
|
2893
|
+
}
|
|
2894
|
+
100% {
|
|
2895
|
+
opacity: 1;
|
|
2896
|
+
}
|
|
2933
2897
|
}
|
|
2934
|
-
.e-carousel.e-carousel-animation
|
|
2935
|
-
|
|
2898
|
+
.e-carousel.e-carousel-slide-animation .e-carousel-items.e-slide {
|
|
2899
|
+
transition-duration: 0.6s;
|
|
2936
2900
|
}
|
|
2937
2901
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2938
2902
|
display: block;
|
|
@@ -2940,9 +2904,7 @@
|
|
|
2940
2904
|
left: 0;
|
|
2941
2905
|
opacity: 0;
|
|
2942
2906
|
pointer-events: none;
|
|
2943
|
-
position: absolute;
|
|
2944
2907
|
top: 0;
|
|
2945
|
-
width: 100%;
|
|
2946
2908
|
}
|
|
2947
2909
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2948
2910
|
opacity: 1;
|
|
@@ -3004,7 +2966,7 @@
|
|
|
3004
2966
|
width: 100%;
|
|
3005
2967
|
z-index: 1;
|
|
3006
2968
|
}
|
|
3007
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars {
|
|
2969
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars {
|
|
3008
2970
|
display: -ms-flexbox;
|
|
3009
2971
|
display: flex;
|
|
3010
2972
|
-ms-flex-wrap: wrap;
|
|
@@ -3013,10 +2975,10 @@
|
|
|
3013
2975
|
justify-content: center;
|
|
3014
2976
|
pointer-events: auto;
|
|
3015
2977
|
}
|
|
3016
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar {
|
|
2978
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar {
|
|
3017
2979
|
padding: 0;
|
|
3018
2980
|
}
|
|
3019
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
2981
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
3020
2982
|
-ms-flex-align: center;
|
|
3021
2983
|
align-items: center;
|
|
3022
2984
|
display: -ms-flexbox;
|
|
@@ -3025,7 +2987,7 @@
|
|
|
3025
2987
|
justify-content: center;
|
|
3026
2988
|
padding: 4px;
|
|
3027
2989
|
}
|
|
3028
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
2990
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
3029
2991
|
border: 1px solid rgba(255, 255, 255, 0.4);
|
|
3030
2992
|
border-radius: 2px;
|
|
3031
2993
|
height: 5px;
|
|
@@ -3034,9 +2996,60 @@
|
|
|
3034
2996
|
transition-timing-function: ease-in-out;
|
|
3035
2997
|
width: 20px;
|
|
3036
2998
|
}
|
|
3037
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
2999
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3038
3000
|
display: none;
|
|
3039
3001
|
}
|
|
3002
|
+
.e-carousel .e-carousel-indicators.e-dynamic {
|
|
3003
|
+
min-height: 36px;
|
|
3004
|
+
}
|
|
3005
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars {
|
|
3006
|
+
display: block;
|
|
3007
|
+
overflow: hidden;
|
|
3008
|
+
transition: opacity 0.6s ease-in-out;
|
|
3009
|
+
white-space: nowrap;
|
|
3010
|
+
width: 80px;
|
|
3011
|
+
}
|
|
3012
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3013
|
+
border-radius: 50%;
|
|
3014
|
+
display: inline-block;
|
|
3015
|
+
height: 8px;
|
|
3016
|
+
left: calc(32px - 16px * var(--carousel-items-current));
|
|
3017
|
+
margin: 0 4px;
|
|
3018
|
+
opacity: 1;
|
|
3019
|
+
position: relative;
|
|
3020
|
+
transform: scale(0.33);
|
|
3021
|
+
transition-duration: 0.6s;
|
|
3022
|
+
transition-property: transform, left;
|
|
3023
|
+
transition-timing-function: ease-in-out;
|
|
3024
|
+
white-space: nowrap;
|
|
3025
|
+
width: 8px;
|
|
3026
|
+
}
|
|
3027
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3028
|
+
transform: scale(1);
|
|
3029
|
+
}
|
|
3030
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-prev, .e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-next {
|
|
3031
|
+
transform: scale(0.66);
|
|
3032
|
+
}
|
|
3033
|
+
.e-carousel .e-carousel-indicators.e-fraction {
|
|
3034
|
+
min-height: 36px;
|
|
3035
|
+
}
|
|
3036
|
+
.e-carousel .e-carousel-indicators.e-progress {
|
|
3037
|
+
min-height: 4px;
|
|
3038
|
+
}
|
|
3039
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3040
|
+
height: 4px;
|
|
3041
|
+
width: 100%;
|
|
3042
|
+
}
|
|
3043
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3044
|
+
height: 100%;
|
|
3045
|
+
left: 0;
|
|
3046
|
+
position: absolute;
|
|
3047
|
+
top: 0;
|
|
3048
|
+
transform: translate3d(0, 0, 0) scaleX(calc(var(--carousel-items-current) / var(--carousel-items-count))) scaleY(1);
|
|
3049
|
+
transition-duration: 0.6s;
|
|
3050
|
+
transform-origin: left top;
|
|
3051
|
+
width: 100%;
|
|
3052
|
+
}
|
|
3040
3053
|
|
|
3041
3054
|
/*! carousel component theme */
|
|
3042
3055
|
.e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled),
|
|
@@ -3059,28 +3072,43 @@
|
|
|
3059
3072
|
background-color: rgba(255, 255, 255, 0.4);
|
|
3060
3073
|
outline: none;
|
|
3061
3074
|
}
|
|
3062
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
|
|
3075
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator {
|
|
3063
3076
|
background-color: transparent;
|
|
3064
3077
|
border-color: transparent;
|
|
3065
3078
|
box-shadow: none;
|
|
3066
3079
|
}
|
|
3067
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
|
|
3068
|
-
background
|
|
3080
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator div {
|
|
3081
|
+
background: #fff;
|
|
3069
3082
|
border-color: #fff;
|
|
3070
3083
|
}
|
|
3071
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:hover {
|
|
3072
|
-
background
|
|
3084
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:active, .e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus, .e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:hover {
|
|
3085
|
+
background: transparent;
|
|
3073
3086
|
border-color: transparent;
|
|
3074
3087
|
box-shadow: none;
|
|
3075
3088
|
outline: none;
|
|
3076
3089
|
}
|
|
3077
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus-visible {
|
|
3090
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus-visible {
|
|
3078
3091
|
border-color: #000;
|
|
3079
3092
|
}
|
|
3080
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar.e-active .e-indicator div {
|
|
3093
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar.e-active .e-indicator div {
|
|
3081
3094
|
background-color: #0d6efd;
|
|
3082
3095
|
border-color: #0d6efd;
|
|
3083
3096
|
}
|
|
3097
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3098
|
+
background-color: #fff;
|
|
3099
|
+
}
|
|
3100
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3101
|
+
background-color: #0d6efd;
|
|
3102
|
+
}
|
|
3103
|
+
.e-carousel .e-carousel-indicators.e-fraction .e-indicator-bars {
|
|
3104
|
+
color: #fff;
|
|
3105
|
+
}
|
|
3106
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3107
|
+
background-color: rgba(13, 110, 253, 0.4);
|
|
3108
|
+
}
|
|
3109
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3110
|
+
background-color: #0d6efd;
|
|
3111
|
+
}
|
|
3084
3112
|
|
|
3085
3113
|
/*! component's theme wise override definitions and variables */
|
|
3086
3114
|
@keyframes hscroll-popup-shadow {
|
|
@@ -3752,7 +3780,7 @@
|
|
|
3752
3780
|
}
|
|
3753
3781
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
3754
3782
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
3755
|
-
margin: 0;
|
|
3783
|
+
margin: 0 0 0 8px;
|
|
3756
3784
|
}
|
|
3757
3785
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
3758
3786
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -4883,7 +4911,7 @@
|
|
|
4883
4911
|
}
|
|
4884
4912
|
@media screen and (max-width: 480px) {
|
|
4885
4913
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
4886
|
-
height:
|
|
4914
|
+
height: 62px;
|
|
4887
4915
|
}
|
|
4888
4916
|
}
|
|
4889
4917
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
@@ -4896,7 +4924,7 @@
|
|
|
4896
4924
|
}
|
|
4897
4925
|
@media screen and (max-width: 480px) {
|
|
4898
4926
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap {
|
|
4899
|
-
height:
|
|
4927
|
+
height: 62px;
|
|
4900
4928
|
}
|
|
4901
4929
|
}
|
|
4902
4930
|
.e-tab .e-tab-header .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab .e-tab-header .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -5288,6 +5316,11 @@
|
|
|
5288
5316
|
height: 32px;
|
|
5289
5317
|
padding: 0;
|
|
5290
5318
|
}
|
|
5319
|
+
@media screen and (max-width: 480px) {
|
|
5320
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
5321
|
+
height: 42px;
|
|
5322
|
+
}
|
|
5323
|
+
}
|
|
5291
5324
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap::before, .e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active:not(.e-separator):last-child .e-text-wrap::before {
|
|
5292
5325
|
top: unset;
|
|
5293
5326
|
}
|
|
@@ -5674,6 +5707,10 @@
|
|
|
5674
5707
|
.e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-itop.e-active .e-tab-wrap:focus .e-text-wrap, .e-tab.e-focused .e-tab-header .e-horizontal-bottom .e-toolbar-item.e-ibottom.e-active .e-tab-wrap:focus .e-text-wrap {
|
|
5675
5708
|
height: auto;
|
|
5676
5709
|
}
|
|
5710
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
5711
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
5712
|
+
display: inherit;
|
|
5713
|
+
}
|
|
5677
5714
|
.e-tab.e-template .e-content > .e-item {
|
|
5678
5715
|
display: none;
|
|
5679
5716
|
}
|
|
@@ -5976,7 +6013,7 @@
|
|
|
5976
6013
|
}
|
|
5977
6014
|
@media screen and (max-width: 480px) {
|
|
5978
6015
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
5979
|
-
padding: 0
|
|
6016
|
+
padding: 0 15px;
|
|
5980
6017
|
}
|
|
5981
6018
|
}
|
|
5982
6019
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -6216,7 +6253,7 @@
|
|
|
6216
6253
|
}
|
|
6217
6254
|
@media screen and (max-width: 480px) {
|
|
6218
6255
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
6219
|
-
height:
|
|
6256
|
+
height: 62px;
|
|
6220
6257
|
}
|
|
6221
6258
|
}
|
|
6222
6259
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -6229,7 +6266,7 @@
|
|
|
6229
6266
|
}
|
|
6230
6267
|
@media screen and (max-width: 480px) {
|
|
6231
6268
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
6232
|
-
height:
|
|
6269
|
+
height: 62px;
|
|
6233
6270
|
}
|
|
6234
6271
|
}
|
|
6235
6272
|
.e-tab-clone-element.e-itop .e-tab-wrap:focus .e-text-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap:focus .e-text-wrap {
|
|
@@ -6439,6 +6476,9 @@
|
|
|
6439
6476
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
6440
6477
|
background: inherit;
|
|
6441
6478
|
}
|
|
6479
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
6480
|
+
background: inherit;
|
|
6481
|
+
}
|
|
6442
6482
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
6443
6483
|
background: rgba(0, 0, 0, 0.12);
|
|
6444
6484
|
}
|
|
@@ -6494,8 +6534,8 @@
|
|
|
6494
6534
|
content: unset;
|
|
6495
6535
|
display: unset;
|
|
6496
6536
|
position: unset;
|
|
6497
|
-
top: unset;
|
|
6498
6537
|
width: unset;
|
|
6538
|
+
top: unset;
|
|
6499
6539
|
}
|
|
6500
6540
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
6501
6541
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -6507,6 +6547,9 @@
|
|
|
6507
6547
|
.e-tab .e-tab-header .e-toolbar-item.e-active.e-ileft .e-tab-text, .e-tab .e-tab-header .e-toolbar-item.e-active.e-iright .e-tab-text {
|
|
6508
6548
|
color: #495057;
|
|
6509
6549
|
}
|
|
6550
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
6551
|
+
color: #6c757d;
|
|
6552
|
+
}
|
|
6510
6553
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6511
6554
|
color: #6c757d;
|
|
6512
6555
|
}
|
|
@@ -6920,6 +6963,10 @@
|
|
|
6920
6963
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
6921
6964
|
border: 0;
|
|
6922
6965
|
}
|
|
6966
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
6967
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
6968
|
+
color: #adb5bd;
|
|
6969
|
+
}
|
|
6923
6970
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
6924
6971
|
background: #0d6efd;
|
|
6925
6972
|
border-radius: 4px;
|
|
@@ -7080,6 +7127,10 @@
|
|
|
7080
7127
|
margin: 0;
|
|
7081
7128
|
background: inherit;
|
|
7082
7129
|
}
|
|
7130
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7131
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7132
|
+
color: #adb5bd;
|
|
7133
|
+
}
|
|
7083
7134
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
7084
7135
|
background: #fff;
|
|
7085
7136
|
border-color: #0d6efd;
|
|
@@ -9379,6 +9430,10 @@ ejs-sidebar {
|
|
|
9379
9430
|
text-indent: inherit;
|
|
9380
9431
|
}
|
|
9381
9432
|
|
|
9433
|
+
.e-menu-container .e-vscroll ul {
|
|
9434
|
+
position: relative;
|
|
9435
|
+
}
|
|
9436
|
+
|
|
9382
9437
|
/*! menu theme */
|
|
9383
9438
|
.e-menu-wrapper,
|
|
9384
9439
|
.e-menu-container {
|
|
@@ -9904,11 +9959,11 @@ ejs-sidebar {
|
|
|
9904
9959
|
color: #024dbc;
|
|
9905
9960
|
}
|
|
9906
9961
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
9907
|
-
background
|
|
9962
|
+
background: #e9ecef;
|
|
9908
9963
|
color: #6c757d;
|
|
9909
9964
|
}
|
|
9910
9965
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:active {
|
|
9911
|
-
background
|
|
9966
|
+
background: #ced4da;
|
|
9912
9967
|
color: #6c757d;
|
|
9913
9968
|
}
|
|
9914
9969
|
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
@@ -9930,17 +9985,17 @@ ejs-sidebar {
|
|
|
9930
9985
|
}
|
|
9931
9986
|
.e-breadcrumb .e-breadcrumb-collapsed:hover,
|
|
9932
9987
|
.e-breadcrumb .e-breadcrumb-menu:hover {
|
|
9933
|
-
background
|
|
9988
|
+
background: #e9ecef;
|
|
9934
9989
|
color: #6c757d;
|
|
9935
9990
|
}
|
|
9936
9991
|
.e-breadcrumb .e-breadcrumb-collapsed:active,
|
|
9937
9992
|
.e-breadcrumb .e-breadcrumb-menu:active {
|
|
9938
|
-
background
|
|
9993
|
+
background: #ced4da;
|
|
9939
9994
|
color: #6c757d;
|
|
9940
9995
|
}
|
|
9941
9996
|
.e-breadcrumb .e-breadcrumb-collapsed:focus,
|
|
9942
9997
|
.e-breadcrumb .e-breadcrumb-menu:focus {
|
|
9943
|
-
background
|
|
9998
|
+
background: #e9ecef;
|
|
9944
9999
|
color: #6c757d;
|
|
9945
10000
|
}
|
|
9946
10001
|
.e-breadcrumb.e-disabled .e-breadcrumb-item .e-breadcrumb-text,
|
|
@@ -9953,17 +10008,17 @@ ejs-sidebar {
|
|
|
9953
10008
|
}
|
|
9954
10009
|
|
|
9955
10010
|
.e-breadcrumb-popup {
|
|
9956
|
-
background
|
|
10011
|
+
background: #fff;
|
|
9957
10012
|
}
|
|
9958
10013
|
.e-breadcrumb-popup .e-breadcrumb-text {
|
|
9959
10014
|
color: #6c757d;
|
|
9960
10015
|
}
|
|
9961
10016
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
9962
|
-
background
|
|
10017
|
+
background: #e9ecef;
|
|
9963
10018
|
color: #212529;
|
|
9964
10019
|
}
|
|
9965
10020
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9966
|
-
background
|
|
10021
|
+
background: #e9ecef;
|
|
9967
10022
|
color: #212529;
|
|
9968
10023
|
}
|
|
9969
10024
|
|
|
@@ -10038,12 +10093,16 @@ ejs-sidebar {
|
|
|
10038
10093
|
right: auto;
|
|
10039
10094
|
}
|
|
10040
10095
|
.e-appbar .e-appbar-separator {
|
|
10041
|
-
height:
|
|
10096
|
+
height: 24px;
|
|
10042
10097
|
}
|
|
10043
10098
|
.e-appbar .e-appbar-spacer {
|
|
10044
10099
|
-ms-flex-positive: 1;
|
|
10045
10100
|
flex-grow: 1;
|
|
10046
10101
|
}
|
|
10102
|
+
.e-appbar .e-btn,
|
|
10103
|
+
.e-appbar .e-css.e-btn {
|
|
10104
|
+
border-image: unset;
|
|
10105
|
+
}
|
|
10047
10106
|
|
|
10048
10107
|
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
10049
10108
|
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
@@ -10057,8 +10116,8 @@ ejs-sidebar {
|
|
|
10057
10116
|
.e-appbar.e-light {
|
|
10058
10117
|
background: #f8f9fa;
|
|
10059
10118
|
color: #212529;
|
|
10060
|
-
border-color: #f8f9fa;
|
|
10061
10119
|
border: none;
|
|
10120
|
+
border-color: #f8f9fa;
|
|
10062
10121
|
}
|
|
10063
10122
|
.e-appbar.e-light .e-appbar-separator {
|
|
10064
10123
|
border-left: 1px solid #212529;
|
|
@@ -10082,8 +10141,8 @@ ejs-sidebar {
|
|
|
10082
10141
|
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
10083
10142
|
background: #f8f9fa;
|
|
10084
10143
|
color: #212529;
|
|
10085
|
-
border-color: #f8f9fa;
|
|
10086
10144
|
box-shadow: none;
|
|
10145
|
+
border-color: #f8f9fa;
|
|
10087
10146
|
}
|
|
10088
10147
|
.e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
|
|
10089
10148
|
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|