@syncfusion/ej2-navigations 21.2.8 → 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 +29 -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 +328 -107
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +332 -107
- 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 +9 -1
- 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 +5 -1
- package/src/toolbar/toolbar.js +33 -14
- 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/fluent-dark.css
CHANGED
|
@@ -148,43 +148,21 @@
|
|
|
148
148
|
border-radius: 0;
|
|
149
149
|
padding: 13px 13px 11px 13px;
|
|
150
150
|
}
|
|
151
|
-
.e-bigger .e-pager.e-rtl .e-spacing, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-
|
|
152
|
-
.e-pager.e-bigger.e-rtl .e-spacing,
|
|
153
|
-
.e-pager.e-bigger.e-rtl .e-numericitem
|
|
154
|
-
.e-pager.e-bigger.e-rtl .e-
|
|
155
|
-
|
|
156
|
-
padding: 7px 13px 9px 12px;
|
|
157
|
-
}
|
|
158
|
-
.e-bigger .e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
159
|
-
.e-pager.e-bigger .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
160
|
-
padding: 13px 13px 11px 13px;
|
|
161
|
-
}
|
|
162
|
-
.e-bigger .e-pager.e-rtl, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-currentitem,
|
|
163
|
-
.e-pager.e-bigger.e-rtl,
|
|
164
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover,
|
|
165
|
-
.e-pager.e-bigger.e-rtl .e-currentitem {
|
|
166
|
-
margin: 0;
|
|
167
|
-
padding: 13px 13px 11px 13px;
|
|
168
|
-
}
|
|
169
|
-
.e-bigger .e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
170
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
171
|
-
padding: 13px 13px 11px 13px;
|
|
172
|
-
}
|
|
173
|
-
.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,
|
|
174
|
-
.e-pager.e-bigger.e-rtl .e-pp,
|
|
175
|
-
.e-pager.e-bigger.e-rtl .e-np,
|
|
176
|
-
.e-pager.e-bigger.e-rtl .e-pp:hover,
|
|
177
|
-
.e-pager.e-bigger.e-rtl .e-np:hover {
|
|
151
|
+
.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,
|
|
152
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem,
|
|
153
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem,
|
|
154
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem:hover,
|
|
155
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem:hover {
|
|
178
156
|
font-size: 14px;
|
|
179
157
|
margin-top: -5px;
|
|
180
158
|
}
|
|
181
159
|
.e-bigger .e-pager.e-rtl .e-pagerdropdown,
|
|
182
160
|
.e-pager.e-bigger.e-rtl .e-pagerdropdown {
|
|
183
|
-
margin: -
|
|
161
|
+
margin: -40px 16px 0 0;
|
|
184
162
|
}
|
|
185
163
|
.e-bigger .e-pager.e-rtl .e-pagerconstant,
|
|
186
164
|
.e-pager.e-bigger.e-rtl .e-pagerconstant {
|
|
187
|
-
margin:
|
|
165
|
+
margin: 14px 16px 9px 0;
|
|
188
166
|
}
|
|
189
167
|
.e-bigger .e-pager .e-pagercontainer .e-firstpage,
|
|
190
168
|
.e-bigger .e-pager .e-pagercontainer .e-prevpage,
|
|
@@ -230,6 +208,9 @@
|
|
|
230
208
|
.e-pager [class^=e-] {
|
|
231
209
|
box-sizing: border-box;
|
|
232
210
|
}
|
|
211
|
+
.e-pager .e-pager-default.e-hide {
|
|
212
|
+
display: none;
|
|
213
|
+
}
|
|
233
214
|
.e-pager div.e-parentmsgbar {
|
|
234
215
|
float: right;
|
|
235
216
|
padding-bottom: 0;
|
|
@@ -252,7 +233,7 @@
|
|
|
252
233
|
.e-pager .e-pagerconstant {
|
|
253
234
|
font-weight: 600;
|
|
254
235
|
display: inline-block;
|
|
255
|
-
margin: 0 0
|
|
236
|
+
margin: 0 0 5px 8px;
|
|
256
237
|
overflow: hidden;
|
|
257
238
|
width: auto;
|
|
258
239
|
}
|
|
@@ -288,9 +269,6 @@
|
|
|
288
269
|
padding: 8px 13px 10px 12px;
|
|
289
270
|
text-decoration: none;
|
|
290
271
|
}
|
|
291
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
292
|
-
padding: 8px 13px 10px 12px;
|
|
293
|
-
}
|
|
294
272
|
.e-pager .e-currentitem {
|
|
295
273
|
border-bottom: 2px solid #0078d4;
|
|
296
274
|
font-style: normal;
|
|
@@ -411,7 +389,6 @@
|
|
|
411
389
|
padding-right: 0;
|
|
412
390
|
padding-top: 0;
|
|
413
391
|
text-align: center;
|
|
414
|
-
vertical-align: top;
|
|
415
392
|
width: calc(60% - 48px);
|
|
416
393
|
}
|
|
417
394
|
.e-pager .e-pagesizes {
|
|
@@ -470,9 +447,10 @@
|
|
|
470
447
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
471
448
|
float: left;
|
|
472
449
|
margin-left: 6px;
|
|
450
|
+
padding-top: 6px;
|
|
473
451
|
}
|
|
474
452
|
.e-pager.e-rtl .e-pagerdropdown {
|
|
475
|
-
margin: -
|
|
453
|
+
margin: -26px 16px 0 0;
|
|
476
454
|
}
|
|
477
455
|
.e-pager.e-rtl .e-pagerconstant {
|
|
478
456
|
margin: 8px 8px 6px 8px;
|
|
@@ -515,7 +493,7 @@
|
|
|
515
493
|
border-radius: 0 4px 4px 0;
|
|
516
494
|
}
|
|
517
495
|
.e-pager.e-rtl .e-lastpage:hover {
|
|
518
|
-
border-radius: 4px
|
|
496
|
+
border-radius: 0 4px 4px 0;
|
|
519
497
|
}
|
|
520
498
|
.e-pager.e-rtl .e-numericcontainer {
|
|
521
499
|
float: none;
|
|
@@ -535,9 +513,6 @@
|
|
|
535
513
|
margin: 0;
|
|
536
514
|
padding: 7px 13px 9px 12px;
|
|
537
515
|
}
|
|
538
|
-
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
539
|
-
padding: 7px 13px 9px 12px;
|
|
540
|
-
}
|
|
541
516
|
.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 {
|
|
542
517
|
margin-top: 0;
|
|
543
518
|
padding: 8px 12px 10px 11px;
|
|
@@ -607,9 +582,6 @@
|
|
|
607
582
|
color: #a19f9d;
|
|
608
583
|
opacity: 1;
|
|
609
584
|
}
|
|
610
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
611
|
-
border-left: 0 solid #292827;
|
|
612
|
-
}
|
|
613
585
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
614
586
|
background-color: #252423;
|
|
615
587
|
opacity: 1;
|
|
@@ -1207,6 +1179,12 @@
|
|
|
1207
1179
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1208
1180
|
margin-left: 10px;
|
|
1209
1181
|
}
|
|
1182
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1183
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
1184
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1185
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1186
|
+
margin-right: 10px;
|
|
1187
|
+
}
|
|
1210
1188
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
1211
1189
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1212
1190
|
margin-right: 10px;
|
|
@@ -2247,12 +2225,13 @@
|
|
|
2247
2225
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
2248
2226
|
background: #252423;
|
|
2249
2227
|
border: solid #292827;
|
|
2250
|
-
border-left: 0;
|
|
2251
2228
|
border-width: 0 0 0 0;
|
|
2252
2229
|
}
|
|
2253
2230
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
2254
2231
|
background: #292827;
|
|
2255
2232
|
color: #f3f2f1;
|
|
2233
|
+
border: solid #292827;
|
|
2234
|
+
border-width: 0 0 0 0;
|
|
2256
2235
|
}
|
|
2257
2236
|
|
|
2258
2237
|
/*! component's theme wise override fluent-definitions and variables */
|
|
@@ -2280,6 +2259,7 @@
|
|
|
2280
2259
|
}
|
|
2281
2260
|
.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,
|
|
2282
2261
|
.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 {
|
|
2262
|
+
box-shadow: none;
|
|
2283
2263
|
padding: 12px 0 12px 28px;
|
|
2284
2264
|
}
|
|
2285
2265
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content,
|
|
@@ -2374,6 +2354,9 @@
|
|
|
2374
2354
|
.e-accordion .e-acrdn-item.e-select.e-selected:last-child {
|
|
2375
2355
|
border-bottom: 1px none #292827;
|
|
2376
2356
|
}
|
|
2357
|
+
.e-accordion .e-acrdn-item:first-child {
|
|
2358
|
+
margin-top: 0;
|
|
2359
|
+
}
|
|
2377
2360
|
.e-accordion .e-acrdn-item:not(.e-select) + .e-acrdn-item:not(.e-select) {
|
|
2378
2361
|
margin-bottom: 0;
|
|
2379
2362
|
margin-top: 0;
|
|
@@ -2463,6 +2446,9 @@
|
|
|
2463
2446
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2464
2447
|
padding: 8px 0 8px 26px;
|
|
2465
2448
|
}
|
|
2449
|
+
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header:focus {
|
|
2450
|
+
box-shadow: none;
|
|
2451
|
+
}
|
|
2466
2452
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content {
|
|
2467
2453
|
padding: 0;
|
|
2468
2454
|
}
|
|
@@ -2641,6 +2627,7 @@
|
|
|
2641
2627
|
color: #f3f2f1;
|
|
2642
2628
|
background: none;
|
|
2643
2629
|
border-top: 0;
|
|
2630
|
+
border-bottom: 1px solid #292827;
|
|
2644
2631
|
}
|
|
2645
2632
|
.e-accordion .e-acrdn-item .e-acrdn-header .e-acrdn-header-content {
|
|
2646
2633
|
color: #f3f2f1;
|
|
@@ -2744,6 +2731,8 @@
|
|
|
2744
2731
|
}
|
|
2745
2732
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2746
2733
|
box-shadow: none;
|
|
2734
|
+
position: relative;
|
|
2735
|
+
z-index: 2;
|
|
2747
2736
|
}
|
|
2748
2737
|
.e-accordion .e-acrdn-item.e-selected + .e-selected {
|
|
2749
2738
|
border-color: #292827;
|
|
@@ -2818,6 +2807,9 @@
|
|
|
2818
2807
|
position: relative;
|
|
2819
2808
|
width: 100%;
|
|
2820
2809
|
}
|
|
2810
|
+
.e-carousel .e-carousel-items.e-swipe-start {
|
|
2811
|
+
cursor: pointer;
|
|
2812
|
+
}
|
|
2821
2813
|
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2822
2814
|
padding: 0 100px;
|
|
2823
2815
|
}
|
|
@@ -2831,7 +2823,7 @@
|
|
|
2831
2823
|
padding: 0 50px;
|
|
2832
2824
|
}
|
|
2833
2825
|
}
|
|
2834
|
-
.e-carousel
|
|
2826
|
+
.e-carousel .e-carousel-items {
|
|
2835
2827
|
width: calc(var(--carousel-items-count) * 100%);
|
|
2836
2828
|
display: -ms-flexbox;
|
|
2837
2829
|
display: flex;
|
|
@@ -2841,63 +2833,35 @@
|
|
|
2841
2833
|
transition-duration: 0.6s;
|
|
2842
2834
|
transition-timing-function: ease-in-out;
|
|
2843
2835
|
}
|
|
2844
|
-
.e-carousel.e-
|
|
2836
|
+
.e-carousel .e-carousel-items .e-carousel-item {
|
|
2845
2837
|
height: 100%;
|
|
2846
2838
|
overflow: hidden;
|
|
2847
2839
|
padding: 0;
|
|
2848
2840
|
position: relative;
|
|
2849
2841
|
width: calc(100% / var(--carousel-items-count));
|
|
2850
2842
|
}
|
|
2851
|
-
.e-carousel.e-blazor-carousel
|
|
2852
|
-
transform: translateX(calc(-100% / var(--carousel-items-count) *
|
|
2853
|
-
transition: transform
|
|
2854
|
-
}
|
|
2855
|
-
.e-carousel.e-blazor-carousel.e-partial.e-rtl .e-carousel-items {
|
|
2856
|
-
transform: translateX(calc(100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2857
|
-
transition: transform 0.6s ease-in-out;
|
|
2858
|
-
}
|
|
2859
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item {
|
|
2860
|
-
backface-visibility: hidden;
|
|
2861
|
-
display: none;
|
|
2862
|
-
float: left;
|
|
2863
|
-
height: 100%;
|
|
2864
|
-
margin-right: -100%;
|
|
2865
|
-
position: relative;
|
|
2866
|
-
transition: transform 0.6s ease-in-out;
|
|
2867
|
-
width: 100%;
|
|
2868
|
-
}
|
|
2869
|
-
.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 {
|
|
2870
|
-
display: block;
|
|
2843
|
+
.e-carousel.e-blazor-carousel .e-carousel-items {
|
|
2844
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2845
|
+
transition: transform;
|
|
2871
2846
|
}
|
|
2872
|
-
.e-carousel.e-
|
|
2873
|
-
transform: translateX(100%);
|
|
2847
|
+
.e-carousel.e-blazor-carousel.e-rtl .e-carousel-items {
|
|
2848
|
+
transform: translateX(calc(100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2849
|
+
transition: transform;
|
|
2874
2850
|
}
|
|
2875
|
-
.e-carousel.e-carousel-
|
|
2876
|
-
|
|
2851
|
+
.e-carousel.e-carousel-fade-animation .e-carousel-items.e-fade-in-out {
|
|
2852
|
+
transition-property: none;
|
|
2853
|
+
animation: fade-in-out 0.6s ease-in-out;
|
|
2877
2854
|
}
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
position: relative;
|
|
2886
|
-
transition: opacity 0.6s ease-in-out;
|
|
2887
|
-
width: 100%;
|
|
2888
|
-
z-index: 0;
|
|
2889
|
-
}
|
|
2890
|
-
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2891
|
-
opacity: 1;
|
|
2892
|
-
z-index: 1;
|
|
2893
|
-
}
|
|
2894
|
-
.e-carousel.e-carousel-animation-none:not(.e-partial) .e-carousel-item {
|
|
2895
|
-
display: none;
|
|
2896
|
-
height: 100%;
|
|
2897
|
-
width: 100%;
|
|
2855
|
+
@keyframes fade-in-out {
|
|
2856
|
+
0% {
|
|
2857
|
+
opacity: 0;
|
|
2858
|
+
}
|
|
2859
|
+
100% {
|
|
2860
|
+
opacity: 1;
|
|
2861
|
+
}
|
|
2898
2862
|
}
|
|
2899
|
-
.e-carousel.e-carousel-animation
|
|
2900
|
-
|
|
2863
|
+
.e-carousel.e-carousel-slide-animation .e-carousel-items.e-slide {
|
|
2864
|
+
transition-duration: 0.6s;
|
|
2901
2865
|
}
|
|
2902
2866
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2903
2867
|
display: block;
|
|
@@ -2905,9 +2869,7 @@
|
|
|
2905
2869
|
left: 0;
|
|
2906
2870
|
opacity: 0;
|
|
2907
2871
|
pointer-events: none;
|
|
2908
|
-
position: absolute;
|
|
2909
2872
|
top: 0;
|
|
2910
|
-
width: 100%;
|
|
2911
2873
|
}
|
|
2912
2874
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2913
2875
|
opacity: 1;
|
|
@@ -2969,7 +2931,7 @@
|
|
|
2969
2931
|
width: 100%;
|
|
2970
2932
|
z-index: 1;
|
|
2971
2933
|
}
|
|
2972
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars {
|
|
2934
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars {
|
|
2973
2935
|
display: -ms-flexbox;
|
|
2974
2936
|
display: flex;
|
|
2975
2937
|
-ms-flex-wrap: wrap;
|
|
@@ -2978,10 +2940,10 @@
|
|
|
2978
2940
|
justify-content: center;
|
|
2979
2941
|
pointer-events: auto;
|
|
2980
2942
|
}
|
|
2981
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar {
|
|
2943
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar {
|
|
2982
2944
|
padding: 0;
|
|
2983
2945
|
}
|
|
2984
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
2946
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
2985
2947
|
-ms-flex-align: center;
|
|
2986
2948
|
align-items: center;
|
|
2987
2949
|
display: -ms-flexbox;
|
|
@@ -2990,7 +2952,7 @@
|
|
|
2990
2952
|
justify-content: center;
|
|
2991
2953
|
padding: 6px;
|
|
2992
2954
|
}
|
|
2993
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
2955
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
2994
2956
|
border: 1px solid rgba(27, 26, 25, 0.4);
|
|
2995
2957
|
border-radius: 50%;
|
|
2996
2958
|
height: 12px;
|
|
@@ -2999,9 +2961,60 @@
|
|
|
2999
2961
|
transition-timing-function: ease-in-out;
|
|
3000
2962
|
width: 12px;
|
|
3001
2963
|
}
|
|
3002
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
2964
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3003
2965
|
display: none;
|
|
3004
2966
|
}
|
|
2967
|
+
.e-carousel .e-carousel-indicators.e-dynamic {
|
|
2968
|
+
min-height: 36px;
|
|
2969
|
+
}
|
|
2970
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars {
|
|
2971
|
+
display: block;
|
|
2972
|
+
overflow: hidden;
|
|
2973
|
+
transition: opacity 0.6s ease-in-out;
|
|
2974
|
+
white-space: nowrap;
|
|
2975
|
+
width: 80px;
|
|
2976
|
+
}
|
|
2977
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
2978
|
+
border-radius: 50%;
|
|
2979
|
+
display: inline-block;
|
|
2980
|
+
height: 8px;
|
|
2981
|
+
left: calc(32px - 16px * var(--carousel-items-current));
|
|
2982
|
+
margin: 0 4px;
|
|
2983
|
+
opacity: 1;
|
|
2984
|
+
position: relative;
|
|
2985
|
+
transform: scale(0.33);
|
|
2986
|
+
transition-duration: 0.6s;
|
|
2987
|
+
transition-property: transform, left;
|
|
2988
|
+
transition-timing-function: ease-in-out;
|
|
2989
|
+
white-space: nowrap;
|
|
2990
|
+
width: 8px;
|
|
2991
|
+
}
|
|
2992
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
2993
|
+
transform: scale(1);
|
|
2994
|
+
}
|
|
2995
|
+
.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 {
|
|
2996
|
+
transform: scale(0.66);
|
|
2997
|
+
}
|
|
2998
|
+
.e-carousel .e-carousel-indicators.e-fraction {
|
|
2999
|
+
min-height: 36px;
|
|
3000
|
+
}
|
|
3001
|
+
.e-carousel .e-carousel-indicators.e-progress {
|
|
3002
|
+
min-height: 4px;
|
|
3003
|
+
}
|
|
3004
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3005
|
+
height: 4px;
|
|
3006
|
+
width: 100%;
|
|
3007
|
+
}
|
|
3008
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3009
|
+
height: 100%;
|
|
3010
|
+
left: 0;
|
|
3011
|
+
position: absolute;
|
|
3012
|
+
top: 0;
|
|
3013
|
+
transform: translate3d(0, 0, 0) scaleX(calc(var(--carousel-items-current) / var(--carousel-items-count))) scaleY(1);
|
|
3014
|
+
transition-duration: 0.6s;
|
|
3015
|
+
transform-origin: left top;
|
|
3016
|
+
width: 100%;
|
|
3017
|
+
}
|
|
3005
3018
|
|
|
3006
3019
|
/*! carousel component theme */
|
|
3007
3020
|
.e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled),
|
|
@@ -3024,28 +3037,43 @@
|
|
|
3024
3037
|
background-color: rgba(27, 26, 25, 0.4);
|
|
3025
3038
|
outline: none;
|
|
3026
3039
|
}
|
|
3027
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
|
|
3040
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator {
|
|
3028
3041
|
background-color: transparent;
|
|
3029
3042
|
border-color: transparent;
|
|
3030
3043
|
box-shadow: none;
|
|
3031
3044
|
}
|
|
3032
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
|
|
3033
|
-
background
|
|
3045
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator div {
|
|
3046
|
+
background: #1b1a19;
|
|
3034
3047
|
border-color: #1b1a19;
|
|
3035
3048
|
}
|
|
3036
|
-
.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 {
|
|
3037
|
-
background
|
|
3049
|
+
.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 {
|
|
3050
|
+
background: transparent;
|
|
3038
3051
|
border-color: transparent;
|
|
3039
3052
|
box-shadow: none;
|
|
3040
3053
|
outline: none;
|
|
3041
3054
|
}
|
|
3042
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus-visible {
|
|
3055
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus-visible {
|
|
3043
3056
|
border-color: #000;
|
|
3044
3057
|
}
|
|
3045
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar.e-active .e-indicator div {
|
|
3058
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar.e-active .e-indicator div {
|
|
3046
3059
|
background-color: #0078d4;
|
|
3047
3060
|
border-color: #0078d4;
|
|
3048
3061
|
}
|
|
3062
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3063
|
+
background-color: #1b1a19;
|
|
3064
|
+
}
|
|
3065
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3066
|
+
background-color: #0078d4;
|
|
3067
|
+
}
|
|
3068
|
+
.e-carousel .e-carousel-indicators.e-fraction .e-indicator-bars {
|
|
3069
|
+
color: #1b1a19;
|
|
3070
|
+
}
|
|
3071
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3072
|
+
background-color: rgba(0, 120, 212, 0.4);
|
|
3073
|
+
}
|
|
3074
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3075
|
+
background-color: #0078d4;
|
|
3076
|
+
}
|
|
3049
3077
|
|
|
3050
3078
|
/*! component's theme wise override definitions and variables */
|
|
3051
3079
|
@keyframes hscroll-popup-shadow {
|
|
@@ -3727,7 +3755,7 @@
|
|
|
3727
3755
|
}
|
|
3728
3756
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
3729
3757
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
3730
|
-
margin: 0;
|
|
3758
|
+
margin: 0 0 0 8px;
|
|
3731
3759
|
}
|
|
3732
3760
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
3733
3761
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -4858,7 +4886,7 @@
|
|
|
4858
4886
|
}
|
|
4859
4887
|
@media screen and (max-width: 480px) {
|
|
4860
4888
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
4861
|
-
height:
|
|
4889
|
+
height: 62px;
|
|
4862
4890
|
}
|
|
4863
4891
|
}
|
|
4864
4892
|
.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 {
|
|
@@ -4871,7 +4899,7 @@
|
|
|
4871
4899
|
}
|
|
4872
4900
|
@media screen and (max-width: 480px) {
|
|
4873
4901
|
.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 {
|
|
4874
|
-
height:
|
|
4902
|
+
height: 62px;
|
|
4875
4903
|
}
|
|
4876
4904
|
}
|
|
4877
4905
|
.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 {
|
|
@@ -5263,6 +5291,11 @@
|
|
|
5263
5291
|
height: 44px;
|
|
5264
5292
|
padding: 0;
|
|
5265
5293
|
}
|
|
5294
|
+
@media screen and (max-width: 480px) {
|
|
5295
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
5296
|
+
height: 48px;
|
|
5297
|
+
}
|
|
5298
|
+
}
|
|
5266
5299
|
.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 {
|
|
5267
5300
|
top: unset;
|
|
5268
5301
|
}
|
|
@@ -5649,6 +5682,10 @@
|
|
|
5649
5682
|
.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 {
|
|
5650
5683
|
height: auto;
|
|
5651
5684
|
}
|
|
5685
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
5686
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
5687
|
+
display: inherit;
|
|
5688
|
+
}
|
|
5652
5689
|
.e-tab.e-template .e-content > .e-item {
|
|
5653
5690
|
display: none;
|
|
5654
5691
|
}
|
|
@@ -5951,7 +5988,7 @@
|
|
|
5951
5988
|
}
|
|
5952
5989
|
@media screen and (max-width: 480px) {
|
|
5953
5990
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
5954
|
-
padding: 0
|
|
5991
|
+
padding: 0 15px;
|
|
5955
5992
|
}
|
|
5956
5993
|
}
|
|
5957
5994
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -6191,7 +6228,7 @@
|
|
|
6191
6228
|
}
|
|
6192
6229
|
@media screen and (max-width: 480px) {
|
|
6193
6230
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
6194
|
-
height:
|
|
6231
|
+
height: 62px;
|
|
6195
6232
|
}
|
|
6196
6233
|
}
|
|
6197
6234
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -6204,7 +6241,7 @@
|
|
|
6204
6241
|
}
|
|
6205
6242
|
@media screen and (max-width: 480px) {
|
|
6206
6243
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
6207
|
-
height:
|
|
6244
|
+
height: 62px;
|
|
6208
6245
|
}
|
|
6209
6246
|
}
|
|
6210
6247
|
.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 {
|
|
@@ -6414,6 +6451,9 @@
|
|
|
6414
6451
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
6415
6452
|
background: #292827;
|
|
6416
6453
|
}
|
|
6454
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
6455
|
+
background: #292827;
|
|
6456
|
+
}
|
|
6417
6457
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
6418
6458
|
background: none;
|
|
6419
6459
|
}
|
|
@@ -6469,8 +6509,8 @@
|
|
|
6469
6509
|
content: unset;
|
|
6470
6510
|
display: unset;
|
|
6471
6511
|
position: unset;
|
|
6472
|
-
top: unset;
|
|
6473
6512
|
width: unset;
|
|
6513
|
+
top: unset;
|
|
6474
6514
|
}
|
|
6475
6515
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
6476
6516
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -6482,6 +6522,9 @@
|
|
|
6482
6522
|
.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 {
|
|
6483
6523
|
color: #f3f2f1;
|
|
6484
6524
|
}
|
|
6525
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
6526
|
+
color: #a19f9d;
|
|
6527
|
+
}
|
|
6485
6528
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6486
6529
|
color: #a19f9d;
|
|
6487
6530
|
}
|
|
@@ -6895,6 +6938,10 @@
|
|
|
6895
6938
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
6896
6939
|
border: 0;
|
|
6897
6940
|
}
|
|
6941
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
6942
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
6943
|
+
color: #484644;
|
|
6944
|
+
}
|
|
6898
6945
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
6899
6946
|
background: #0078d4;
|
|
6900
6947
|
border-radius: 0;
|
|
@@ -7055,6 +7102,10 @@
|
|
|
7055
7102
|
margin: 0;
|
|
7056
7103
|
background: #1b1a19;
|
|
7057
7104
|
}
|
|
7105
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7106
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7107
|
+
color: #484644;
|
|
7108
|
+
}
|
|
7058
7109
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
7059
7110
|
background: none;
|
|
7060
7111
|
border-color: unset;
|
|
@@ -9358,6 +9409,10 @@ ejs-sidebar {
|
|
|
9358
9409
|
text-indent: inherit;
|
|
9359
9410
|
}
|
|
9360
9411
|
|
|
9412
|
+
.e-menu-container .e-vscroll ul {
|
|
9413
|
+
position: relative;
|
|
9414
|
+
}
|
|
9415
|
+
|
|
9361
9416
|
/*! menu theme */
|
|
9362
9417
|
.e-menu-wrapper,
|
|
9363
9418
|
.e-menu-container {
|
|
@@ -9895,12 +9950,12 @@ ejs-sidebar {
|
|
|
9895
9950
|
}
|
|
9896
9951
|
.e-breadcrumb .e-breadcrumb-collapsed:hover,
|
|
9897
9952
|
.e-breadcrumb .e-breadcrumb-menu:hover {
|
|
9898
|
-
background
|
|
9953
|
+
background: #252423;
|
|
9899
9954
|
color: #a19f9d;
|
|
9900
9955
|
}
|
|
9901
9956
|
.e-breadcrumb .e-breadcrumb-collapsed:active,
|
|
9902
9957
|
.e-breadcrumb .e-breadcrumb-menu:active {
|
|
9903
|
-
background
|
|
9958
|
+
background: #323130;
|
|
9904
9959
|
color: #c8c6c4;
|
|
9905
9960
|
}
|
|
9906
9961
|
.e-breadcrumb .e-breadcrumb-collapsed:focus,
|
|
@@ -9918,17 +9973,17 @@ ejs-sidebar {
|
|
|
9918
9973
|
}
|
|
9919
9974
|
|
|
9920
9975
|
.e-breadcrumb-popup {
|
|
9921
|
-
background
|
|
9976
|
+
background: #252423;
|
|
9922
9977
|
}
|
|
9923
9978
|
.e-breadcrumb-popup .e-breadcrumb-text {
|
|
9924
9979
|
color: #a19f9d;
|
|
9925
9980
|
}
|
|
9926
9981
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
9927
|
-
background
|
|
9982
|
+
background: #323130;
|
|
9928
9983
|
color: #f3f2f1;
|
|
9929
9984
|
}
|
|
9930
9985
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9931
|
-
background
|
|
9986
|
+
background: #323130;
|
|
9932
9987
|
color: #f3f2f1;
|
|
9933
9988
|
}
|
|
9934
9989
|
|
|
@@ -10003,12 +10058,16 @@ ejs-sidebar {
|
|
|
10003
10058
|
right: auto;
|
|
10004
10059
|
}
|
|
10005
10060
|
.e-appbar .e-appbar-separator {
|
|
10006
|
-
height:
|
|
10061
|
+
height: 24px;
|
|
10007
10062
|
}
|
|
10008
10063
|
.e-appbar .e-appbar-spacer {
|
|
10009
10064
|
-ms-flex-positive: 1;
|
|
10010
10065
|
flex-grow: 1;
|
|
10011
10066
|
}
|
|
10067
|
+
.e-appbar .e-btn,
|
|
10068
|
+
.e-appbar .e-css.e-btn {
|
|
10069
|
+
border-image: unset;
|
|
10070
|
+
}
|
|
10012
10071
|
|
|
10013
10072
|
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
10014
10073
|
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
@@ -10022,8 +10081,8 @@ ejs-sidebar {
|
|
|
10022
10081
|
.e-appbar.e-light {
|
|
10023
10082
|
background: #292827;
|
|
10024
10083
|
color: #faf9f8;
|
|
10025
|
-
border-color: #292827;
|
|
10026
10084
|
border: none;
|
|
10085
|
+
border-color: #292827;
|
|
10027
10086
|
}
|
|
10028
10087
|
.e-appbar.e-light .e-appbar-separator {
|
|
10029
10088
|
border-left: 1px solid #faf9f8;
|
|
@@ -10047,8 +10106,8 @@ ejs-sidebar {
|
|
|
10047
10106
|
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
10048
10107
|
background: #292827;
|
|
10049
10108
|
color: #faf9f8;
|
|
10050
|
-
border-color: #292827;
|
|
10051
10109
|
box-shadow: none;
|
|
10110
|
+
border-color: #292827;
|
|
10052
10111
|
}
|
|
10053
10112
|
.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,
|
|
10054
10113
|
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|