@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/material-dark.css
CHANGED
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
.e-pager.e-bigger div.e-parentmsgbar {
|
|
56
56
|
padding-bottom: 8px;
|
|
57
57
|
padding-right: 24px;
|
|
58
|
-
padding-top:
|
|
58
|
+
padding-top: 22px;
|
|
59
59
|
}
|
|
60
60
|
.e-bigger .e-pager .e-pagerdropdown,
|
|
61
61
|
.e-pager.e-bigger .e-pagerdropdown {
|
|
62
62
|
height: 40px;
|
|
63
63
|
margin: -40px 0 0 16px;
|
|
64
|
-
margin-top: -
|
|
64
|
+
margin-top: -36px;
|
|
65
65
|
width: 90px;
|
|
66
66
|
}
|
|
67
67
|
.e-bigger .e-pager .e-pagercontainer .e-firstpage,
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
.e-bigger .e-pager.e-rtl div.e-parentmsgbar,
|
|
125
125
|
.e-pager.e-bigger.e-rtl div.e-parentmsgbar {
|
|
126
126
|
margin-left: 6px;
|
|
127
|
-
margin-top: -
|
|
127
|
+
margin-top: -1px;
|
|
128
128
|
}
|
|
129
129
|
.e-bigger .e-pager .e-numericitem,
|
|
130
130
|
.e-pager.e-bigger .e-numericitem {
|
|
@@ -149,43 +149,21 @@
|
|
|
149
149
|
border-radius: 16px;
|
|
150
150
|
padding: 10px 13px;
|
|
151
151
|
}
|
|
152
|
-
.e-bigger .e-pager.e-rtl .e-spacing, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-
|
|
153
|
-
.e-pager.e-bigger.e-rtl .e-spacing,
|
|
154
|
-
.e-pager.e-bigger.e-rtl .e-numericitem
|
|
155
|
-
.e-pager.e-bigger.e-rtl .e-
|
|
156
|
-
|
|
157
|
-
padding: 6px;
|
|
158
|
-
}
|
|
159
|
-
.e-bigger .e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
160
|
-
.e-pager.e-bigger .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
161
|
-
padding: 10px 13px;
|
|
162
|
-
}
|
|
163
|
-
.e-bigger .e-pager.e-rtl, .e-bigger .e-pager.e-rtl .e-numericitem:hover, .e-bigger .e-pager.e-rtl .e-currentitem,
|
|
164
|
-
.e-pager.e-bigger.e-rtl,
|
|
165
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover,
|
|
166
|
-
.e-pager.e-bigger.e-rtl .e-currentitem {
|
|
167
|
-
margin: 0 8px;
|
|
168
|
-
padding: 10px 13px;
|
|
169
|
-
}
|
|
170
|
-
.e-bigger .e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active),
|
|
171
|
-
.e-pager.e-bigger.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
172
|
-
padding: 10px 13px;
|
|
173
|
-
}
|
|
174
|
-
.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,
|
|
175
|
-
.e-pager.e-bigger.e-rtl .e-pp,
|
|
176
|
-
.e-pager.e-bigger.e-rtl .e-np,
|
|
177
|
-
.e-pager.e-bigger.e-rtl .e-pp:hover,
|
|
178
|
-
.e-pager.e-bigger.e-rtl .e-np:hover {
|
|
152
|
+
.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,
|
|
153
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem,
|
|
154
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem,
|
|
155
|
+
.e-pager.e-bigger.e-rtl .e-pp.e-spacing.e-numericitem:hover,
|
|
156
|
+
.e-pager.e-bigger.e-rtl .e-np.e-spacing.e-numericitem:hover {
|
|
179
157
|
font-size: 22px;
|
|
180
158
|
margin-top: -10px;
|
|
181
159
|
}
|
|
182
160
|
.e-bigger .e-pager.e-rtl .e-pagerdropdown,
|
|
183
161
|
.e-pager.e-bigger.e-rtl .e-pagerdropdown {
|
|
184
|
-
margin: -
|
|
162
|
+
margin: -35px 18px 0 0;
|
|
185
163
|
}
|
|
186
164
|
.e-bigger .e-pager.e-rtl .e-pagerconstant,
|
|
187
165
|
.e-pager.e-bigger.e-rtl .e-pagerconstant {
|
|
188
|
-
margin: 8px 16px
|
|
166
|
+
margin: 8px 16px 16px 0;
|
|
189
167
|
}
|
|
190
168
|
.e-bigger .e-pager .e-pagercontainer .e-firstpage,
|
|
191
169
|
.e-bigger .e-pager .e-pagercontainer .e-prevpage,
|
|
@@ -231,11 +209,14 @@
|
|
|
231
209
|
.e-pager [class^=e-] {
|
|
232
210
|
box-sizing: border-box;
|
|
233
211
|
}
|
|
212
|
+
.e-pager .e-pager-default.e-hide {
|
|
213
|
+
display: none;
|
|
214
|
+
}
|
|
234
215
|
.e-pager div.e-parentmsgbar {
|
|
235
216
|
float: right;
|
|
236
217
|
padding-bottom: 9px;
|
|
237
218
|
padding-right: 18px;
|
|
238
|
-
padding-top:
|
|
219
|
+
padding-top: 18px;
|
|
239
220
|
}
|
|
240
221
|
.e-pager .e-pagesizes {
|
|
241
222
|
display: inline;
|
|
@@ -245,7 +226,7 @@
|
|
|
245
226
|
height: 32px;
|
|
246
227
|
margin-left: 12px;
|
|
247
228
|
margin-right: 0;
|
|
248
|
-
margin-top: -
|
|
229
|
+
margin-top: -26px;
|
|
249
230
|
overflow: hidden;
|
|
250
231
|
vertical-align: middle;
|
|
251
232
|
width: 90px;
|
|
@@ -288,9 +269,6 @@
|
|
|
288
269
|
padding: 6px;
|
|
289
270
|
text-decoration: none;
|
|
290
271
|
}
|
|
291
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
292
|
-
padding: 6px;
|
|
293
|
-
}
|
|
294
272
|
.e-pager .e-currentitem {
|
|
295
273
|
font-style: normal;
|
|
296
274
|
font-variant: normal;
|
|
@@ -410,7 +388,6 @@
|
|
|
410
388
|
padding-right: 0;
|
|
411
389
|
padding-top: 0;
|
|
412
390
|
text-align: center;
|
|
413
|
-
vertical-align: top;
|
|
414
391
|
width: calc(60% - 48px);
|
|
415
392
|
}
|
|
416
393
|
.e-pager .e-pagesizes {
|
|
@@ -469,9 +446,10 @@
|
|
|
469
446
|
.e-pager.e-rtl .e-parentmsgbar {
|
|
470
447
|
float: left;
|
|
471
448
|
margin-left: 6px;
|
|
449
|
+
padding-top: 21px;
|
|
472
450
|
}
|
|
473
451
|
.e-pager.e-rtl .e-pagerdropdown {
|
|
474
|
-
margin: -
|
|
452
|
+
margin: -33px 18px 0 10px;
|
|
475
453
|
}
|
|
476
454
|
.e-pager.e-rtl .e-pagerconstant {
|
|
477
455
|
margin: 14px;
|
|
@@ -514,7 +492,7 @@
|
|
|
514
492
|
border-radius: 0 4px 4px 0;
|
|
515
493
|
}
|
|
516
494
|
.e-pager.e-rtl .e-lastpage:hover {
|
|
517
|
-
border-radius: 4px
|
|
495
|
+
border-radius: 0 4px 4px 0;
|
|
518
496
|
}
|
|
519
497
|
.e-pager.e-rtl .e-numericcontainer {
|
|
520
498
|
float: none;
|
|
@@ -534,9 +512,6 @@
|
|
|
534
512
|
margin: 11px 4px 0 0;
|
|
535
513
|
padding: 6px;
|
|
536
514
|
}
|
|
537
|
-
.e-pager.e-rtl .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
538
|
-
padding: 6px;
|
|
539
|
-
}
|
|
540
515
|
.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 {
|
|
541
516
|
margin-top: -2px;
|
|
542
517
|
padding: 3px 11px 9px;
|
|
@@ -606,9 +581,6 @@
|
|
|
606
581
|
color: #fff;
|
|
607
582
|
opacity: 0.87;
|
|
608
583
|
}
|
|
609
|
-
.e-pager .e-numericitem:hover:not(.e-np):not(.e-pp):not(.e-active) {
|
|
610
|
-
border-left: 0 solid #616161;
|
|
611
|
-
}
|
|
612
584
|
.e-pager .e-numericitem:not(.e-active):not(.e-np):not(.e-pp):hover {
|
|
613
585
|
background-color: rgba(255, 255, 255, 0.1);
|
|
614
586
|
opacity: 1;
|
|
@@ -1240,6 +1212,12 @@
|
|
|
1240
1212
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
1241
1213
|
margin-left: 3px;
|
|
1242
1214
|
}
|
|
1215
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1216
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
1217
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
1218
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
1219
|
+
margin-right: 3px;
|
|
1220
|
+
}
|
|
1243
1221
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
1244
1222
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
1245
1223
|
margin-right: 3px;
|
|
@@ -2166,7 +2144,7 @@
|
|
|
2166
2144
|
}
|
|
2167
2145
|
.e-toolbar .e-hor-nav:hover {
|
|
2168
2146
|
background: rgba(255, 255, 255, 0.1);
|
|
2169
|
-
border-left:
|
|
2147
|
+
border-left: 1px solid #616161;
|
|
2170
2148
|
color: #fff;
|
|
2171
2149
|
}
|
|
2172
2150
|
.e-toolbar .e-hor-nav:hover .e-icons {
|
|
@@ -2175,7 +2153,7 @@
|
|
|
2175
2153
|
.e-toolbar .e-hor-nav:hover:not(.e-nav-active) {
|
|
2176
2154
|
border-color: #616161;
|
|
2177
2155
|
border-style: solid;
|
|
2178
|
-
border-width: 0;
|
|
2156
|
+
border-width: 0 0 0 1px;
|
|
2179
2157
|
}
|
|
2180
2158
|
.e-toolbar .e-hor-nav:hover:active {
|
|
2181
2159
|
background: rgba(255, 255, 255, 0.1);
|
|
@@ -2291,12 +2269,13 @@
|
|
|
2291
2269
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
2292
2270
|
background: #212121;
|
|
2293
2271
|
border: solid #616161;
|
|
2294
|
-
border-left: 0;
|
|
2295
2272
|
border-width: 0 1px 0 0;
|
|
2296
2273
|
}
|
|
2297
2274
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
2298
2275
|
background: rgba(255, 255, 255, 0.1);
|
|
2299
2276
|
color: #fff;
|
|
2277
|
+
border: solid #616161;
|
|
2278
|
+
border-width: 0 1px 0 0;
|
|
2300
2279
|
}
|
|
2301
2280
|
|
|
2302
2281
|
/*! accordion icons */
|
|
@@ -2323,6 +2302,7 @@
|
|
|
2323
2302
|
}
|
|
2324
2303
|
.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,
|
|
2325
2304
|
.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 {
|
|
2305
|
+
box-shadow: none;
|
|
2326
2306
|
padding: 0 46px 0 32px;
|
|
2327
2307
|
}
|
|
2328
2308
|
.e-bigger .e-accordion .e-acrdn-item.e-select .e-acrdn-panel.e-nested > .e-acrdn-content,
|
|
@@ -2417,6 +2397,9 @@
|
|
|
2417
2397
|
.e-accordion .e-acrdn-item.e-select.e-selected:last-child {
|
|
2418
2398
|
border-bottom: 0;
|
|
2419
2399
|
}
|
|
2400
|
+
.e-accordion .e-acrdn-item:first-child {
|
|
2401
|
+
margin-top: 0;
|
|
2402
|
+
}
|
|
2420
2403
|
.e-accordion .e-acrdn-item:not(.e-select) + .e-acrdn-item:not(.e-select) {
|
|
2421
2404
|
margin-bottom: 0;
|
|
2422
2405
|
margin-top: 0;
|
|
@@ -2506,6 +2489,9 @@
|
|
|
2506
2489
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header {
|
|
2507
2490
|
padding: 0 40px 0 32px;
|
|
2508
2491
|
}
|
|
2492
|
+
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content > .e-accordion > .e-acrdn-item > .e-acrdn-header:focus {
|
|
2493
|
+
box-shadow: none;
|
|
2494
|
+
}
|
|
2509
2495
|
.e-accordion .e-acrdn-item .e-acrdn-panel.e-nested > .e-acrdn-content {
|
|
2510
2496
|
padding: 0;
|
|
2511
2497
|
}
|
|
@@ -2684,6 +2670,7 @@
|
|
|
2684
2670
|
color: #fff;
|
|
2685
2671
|
background: none;
|
|
2686
2672
|
border-top: 0;
|
|
2673
|
+
border-bottom: 0;
|
|
2687
2674
|
}
|
|
2688
2675
|
.e-accordion .e-acrdn-item .e-acrdn-header .e-acrdn-header-content {
|
|
2689
2676
|
color: #00b0ff;
|
|
@@ -2787,6 +2774,8 @@
|
|
|
2787
2774
|
}
|
|
2788
2775
|
.e-accordion .e-acrdn-item.e-selected > .e-acrdn-header:focus {
|
|
2789
2776
|
box-shadow: none;
|
|
2777
|
+
position: relative;
|
|
2778
|
+
z-index: 2;
|
|
2790
2779
|
}
|
|
2791
2780
|
.e-accordion .e-acrdn-item.e-selected + .e-selected {
|
|
2792
2781
|
border-color: transparent transparent #616161;
|
|
@@ -2861,6 +2850,9 @@
|
|
|
2861
2850
|
position: relative;
|
|
2862
2851
|
width: 100%;
|
|
2863
2852
|
}
|
|
2853
|
+
.e-carousel .e-carousel-items.e-swipe-start {
|
|
2854
|
+
cursor: pointer;
|
|
2855
|
+
}
|
|
2864
2856
|
.e-carousel.e-partial .e-carousel-slide-container {
|
|
2865
2857
|
padding: 0 100px;
|
|
2866
2858
|
}
|
|
@@ -2874,7 +2866,7 @@
|
|
|
2874
2866
|
padding: 0 50px;
|
|
2875
2867
|
}
|
|
2876
2868
|
}
|
|
2877
|
-
.e-carousel
|
|
2869
|
+
.e-carousel .e-carousel-items {
|
|
2878
2870
|
width: calc(var(--carousel-items-count) * 100%);
|
|
2879
2871
|
display: -ms-flexbox;
|
|
2880
2872
|
display: flex;
|
|
@@ -2884,63 +2876,35 @@
|
|
|
2884
2876
|
transition-duration: 0.6s;
|
|
2885
2877
|
transition-timing-function: ease-in-out;
|
|
2886
2878
|
}
|
|
2887
|
-
.e-carousel.e-
|
|
2879
|
+
.e-carousel .e-carousel-items .e-carousel-item {
|
|
2888
2880
|
height: 100%;
|
|
2889
2881
|
overflow: hidden;
|
|
2890
2882
|
padding: 0;
|
|
2891
2883
|
position: relative;
|
|
2892
2884
|
width: calc(100% / var(--carousel-items-count));
|
|
2893
2885
|
}
|
|
2894
|
-
.e-carousel.e-blazor-carousel
|
|
2895
|
-
transform: translateX(calc(-100% / var(--carousel-items-count) *
|
|
2896
|
-
transition: transform
|
|
2897
|
-
}
|
|
2898
|
-
.e-carousel.e-blazor-carousel.e-partial.e-rtl .e-carousel-items {
|
|
2899
|
-
transform: translateX(calc(100% / var(--carousel-items-count) * (var(--carousel-items-current))));
|
|
2900
|
-
transition: transform 0.6s ease-in-out;
|
|
2886
|
+
.e-carousel.e-blazor-carousel .e-carousel-items {
|
|
2887
|
+
transform: translateX(calc(-100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2888
|
+
transition: transform;
|
|
2901
2889
|
}
|
|
2902
|
-
.e-carousel.e-carousel
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
float: left;
|
|
2906
|
-
height: 100%;
|
|
2907
|
-
margin-right: -100%;
|
|
2908
|
-
position: relative;
|
|
2909
|
-
transition: transform 0.6s ease-in-out;
|
|
2910
|
-
width: 100%;
|
|
2911
|
-
}
|
|
2912
|
-
.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 {
|
|
2913
|
-
display: block;
|
|
2914
|
-
}
|
|
2915
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-next:not(.e-transition-start), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-end {
|
|
2916
|
-
transform: translateX(100%);
|
|
2917
|
-
}
|
|
2918
|
-
.e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-prev:not(.e-transition-end), .e-carousel.e-carousel-slide-animation:not(.e-partial) .e-carousel-item.e-active.e-transition-start {
|
|
2919
|
-
transform: translateX(-100%);
|
|
2920
|
-
}
|
|
2921
|
-
.e-carousel.e-carousel-fade-animation:not(.e-partial) .e-carousel-item {
|
|
2922
|
-
backface-visibility: hidden;
|
|
2923
|
-
display: block;
|
|
2924
|
-
float: left;
|
|
2925
|
-
height: 100%;
|
|
2926
|
-
margin-right: -100%;
|
|
2927
|
-
opacity: 0;
|
|
2928
|
-
position: relative;
|
|
2929
|
-
transition: opacity 0.6s ease-in-out;
|
|
2930
|
-
width: 100%;
|
|
2931
|
-
z-index: 0;
|
|
2890
|
+
.e-carousel.e-blazor-carousel.e-rtl .e-carousel-items {
|
|
2891
|
+
transform: translateX(calc(100% / var(--carousel-items-count) * var(--carousel-items-current)));
|
|
2892
|
+
transition: transform;
|
|
2932
2893
|
}
|
|
2933
|
-
.e-carousel.e-carousel-fade-animation
|
|
2934
|
-
|
|
2935
|
-
|
|
2894
|
+
.e-carousel.e-carousel-fade-animation .e-carousel-items.e-fade-in-out {
|
|
2895
|
+
transition-property: none;
|
|
2896
|
+
animation: fade-in-out 0.6s ease-in-out;
|
|
2936
2897
|
}
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2898
|
+
@keyframes fade-in-out {
|
|
2899
|
+
0% {
|
|
2900
|
+
opacity: 0;
|
|
2901
|
+
}
|
|
2902
|
+
100% {
|
|
2903
|
+
opacity: 1;
|
|
2904
|
+
}
|
|
2941
2905
|
}
|
|
2942
|
-
.e-carousel.e-carousel-animation
|
|
2943
|
-
|
|
2906
|
+
.e-carousel.e-carousel-slide-animation .e-carousel-items.e-slide {
|
|
2907
|
+
transition-duration: 0.6s;
|
|
2944
2908
|
}
|
|
2945
2909
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item {
|
|
2946
2910
|
display: block;
|
|
@@ -2948,9 +2912,7 @@
|
|
|
2948
2912
|
left: 0;
|
|
2949
2913
|
opacity: 0;
|
|
2950
2914
|
pointer-events: none;
|
|
2951
|
-
position: absolute;
|
|
2952
2915
|
top: 0;
|
|
2953
|
-
width: 100%;
|
|
2954
2916
|
}
|
|
2955
2917
|
.e-carousel.e-carousel-custom-animation:not(.e-partial) .e-carousel-item.e-active {
|
|
2956
2918
|
opacity: 1;
|
|
@@ -3012,7 +2974,7 @@
|
|
|
3012
2974
|
width: 100%;
|
|
3013
2975
|
z-index: 1;
|
|
3014
2976
|
}
|
|
3015
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars {
|
|
2977
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars {
|
|
3016
2978
|
display: -ms-flexbox;
|
|
3017
2979
|
display: flex;
|
|
3018
2980
|
-ms-flex-wrap: wrap;
|
|
@@ -3021,10 +2983,10 @@
|
|
|
3021
2983
|
justify-content: center;
|
|
3022
2984
|
pointer-events: auto;
|
|
3023
2985
|
}
|
|
3024
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar {
|
|
2986
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar {
|
|
3025
2987
|
padding: 0;
|
|
3026
2988
|
}
|
|
3027
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
2989
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator {
|
|
3028
2990
|
-ms-flex-align: center;
|
|
3029
2991
|
align-items: center;
|
|
3030
2992
|
display: -ms-flexbox;
|
|
@@ -3033,7 +2995,7 @@
|
|
|
3033
2995
|
justify-content: center;
|
|
3034
2996
|
padding: 6px;
|
|
3035
2997
|
}
|
|
3036
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
2998
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator div {
|
|
3037
2999
|
border: 1px solid rgba(255, 255, 255, 0.4);
|
|
3038
3000
|
border-radius: 50%;
|
|
3039
3001
|
height: 12px;
|
|
@@ -3042,9 +3004,60 @@
|
|
|
3042
3004
|
transition-timing-function: ease-in-out;
|
|
3043
3005
|
width: 12px;
|
|
3044
3006
|
}
|
|
3045
|
-
.e-carousel .e-carousel-indicators .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3007
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bars .e-indicator-bar .e-indicator .e-ripple-element {
|
|
3046
3008
|
display: none;
|
|
3047
3009
|
}
|
|
3010
|
+
.e-carousel .e-carousel-indicators.e-dynamic {
|
|
3011
|
+
min-height: 36px;
|
|
3012
|
+
}
|
|
3013
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars {
|
|
3014
|
+
display: block;
|
|
3015
|
+
overflow: hidden;
|
|
3016
|
+
transition: opacity 0.6s ease-in-out;
|
|
3017
|
+
white-space: nowrap;
|
|
3018
|
+
width: 80px;
|
|
3019
|
+
}
|
|
3020
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3021
|
+
border-radius: 50%;
|
|
3022
|
+
display: inline-block;
|
|
3023
|
+
height: 8px;
|
|
3024
|
+
left: calc(32px - 16px * var(--carousel-items-current));
|
|
3025
|
+
margin: 0 4px;
|
|
3026
|
+
opacity: 1;
|
|
3027
|
+
position: relative;
|
|
3028
|
+
transform: scale(0.33);
|
|
3029
|
+
transition-duration: 0.6s;
|
|
3030
|
+
transition-property: transform, left;
|
|
3031
|
+
transition-timing-function: ease-in-out;
|
|
3032
|
+
white-space: nowrap;
|
|
3033
|
+
width: 8px;
|
|
3034
|
+
}
|
|
3035
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3036
|
+
transform: scale(1);
|
|
3037
|
+
}
|
|
3038
|
+
.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 {
|
|
3039
|
+
transform: scale(0.66);
|
|
3040
|
+
}
|
|
3041
|
+
.e-carousel .e-carousel-indicators.e-fraction {
|
|
3042
|
+
min-height: 36px;
|
|
3043
|
+
}
|
|
3044
|
+
.e-carousel .e-carousel-indicators.e-progress {
|
|
3045
|
+
min-height: 4px;
|
|
3046
|
+
}
|
|
3047
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3048
|
+
height: 4px;
|
|
3049
|
+
width: 100%;
|
|
3050
|
+
}
|
|
3051
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3052
|
+
height: 100%;
|
|
3053
|
+
left: 0;
|
|
3054
|
+
position: absolute;
|
|
3055
|
+
top: 0;
|
|
3056
|
+
transform: translate3d(0, 0, 0) scaleX(calc(var(--carousel-items-current) / var(--carousel-items-count))) scaleY(1);
|
|
3057
|
+
transition-duration: 0.6s;
|
|
3058
|
+
transform-origin: left top;
|
|
3059
|
+
width: 100%;
|
|
3060
|
+
}
|
|
3048
3061
|
|
|
3049
3062
|
/*! carousel component theme */
|
|
3050
3063
|
.e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled),
|
|
@@ -3067,28 +3080,43 @@
|
|
|
3067
3080
|
background-color: rgba(255, 255, 255, 0.4);
|
|
3068
3081
|
outline: none;
|
|
3069
3082
|
}
|
|
3070
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator {
|
|
3083
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator {
|
|
3071
3084
|
background-color: transparent;
|
|
3072
3085
|
border-color: transparent;
|
|
3073
3086
|
box-shadow: none;
|
|
3074
3087
|
}
|
|
3075
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator div {
|
|
3076
|
-
background
|
|
3088
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator div {
|
|
3089
|
+
background: #fff;
|
|
3077
3090
|
border-color: #fff;
|
|
3078
3091
|
}
|
|
3079
|
-
.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 {
|
|
3080
|
-
background
|
|
3092
|
+
.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 {
|
|
3093
|
+
background: transparent;
|
|
3081
3094
|
border-color: transparent;
|
|
3082
3095
|
box-shadow: none;
|
|
3083
3096
|
outline: none;
|
|
3084
3097
|
}
|
|
3085
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar .e-indicator:focus-visible {
|
|
3098
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar .e-indicator:focus-visible {
|
|
3086
3099
|
border-color: #000;
|
|
3087
3100
|
}
|
|
3088
|
-
.e-carousel .e-carousel-indicators .e-indicator-bar.e-active .e-indicator div {
|
|
3101
|
+
.e-carousel .e-carousel-indicators.e-default .e-indicator-bar.e-active .e-indicator div {
|
|
3089
3102
|
background-color: #00b0ff;
|
|
3090
3103
|
border-color: #00b0ff;
|
|
3091
3104
|
}
|
|
3105
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar {
|
|
3106
|
+
background-color: #fff;
|
|
3107
|
+
}
|
|
3108
|
+
.e-carousel .e-carousel-indicators.e-dynamic .e-indicator-bars .e-indicator-bar.e-active {
|
|
3109
|
+
background-color: #00b0ff;
|
|
3110
|
+
}
|
|
3111
|
+
.e-carousel .e-carousel-indicators.e-fraction .e-indicator-bars {
|
|
3112
|
+
color: #fff;
|
|
3113
|
+
}
|
|
3114
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars {
|
|
3115
|
+
background-color: rgba(0, 176, 255, 0.4);
|
|
3116
|
+
}
|
|
3117
|
+
.e-carousel .e-carousel-indicators.e-progress .e-indicator-bars .e-indicator-bar {
|
|
3118
|
+
background-color: #00b0ff;
|
|
3119
|
+
}
|
|
3092
3120
|
|
|
3093
3121
|
@keyframes hscroll-popup-shadow {
|
|
3094
3122
|
0% {
|
|
@@ -3809,7 +3837,7 @@
|
|
|
3809
3837
|
}
|
|
3810
3838
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon,
|
|
3811
3839
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon {
|
|
3812
|
-
margin: 0;
|
|
3840
|
+
margin: 0 0 0 8px;
|
|
3813
3841
|
}
|
|
3814
3842
|
.e-bigger .e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before,
|
|
3815
3843
|
.e-tab.e-bigger .e-tab-header .e-toolbar-pop .e-toolbar-item .e-close-icon::before {
|
|
@@ -4940,7 +4968,7 @@
|
|
|
4940
4968
|
}
|
|
4941
4969
|
@media screen and (max-width: 480px) {
|
|
4942
4970
|
.e-tab .e-tab-header .e-toolbar-item.e-itop, .e-tab .e-tab-header .e-toolbar-item.e-ibottom {
|
|
4943
|
-
height:
|
|
4971
|
+
height: 62px;
|
|
4944
4972
|
}
|
|
4945
4973
|
}
|
|
4946
4974
|
.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 {
|
|
@@ -4953,7 +4981,7 @@
|
|
|
4953
4981
|
}
|
|
4954
4982
|
@media screen and (max-width: 480px) {
|
|
4955
4983
|
.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 {
|
|
4956
|
-
height:
|
|
4984
|
+
height: 62px;
|
|
4957
4985
|
}
|
|
4958
4986
|
}
|
|
4959
4987
|
.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 {
|
|
@@ -5345,6 +5373,11 @@
|
|
|
5345
5373
|
height: 36px;
|
|
5346
5374
|
padding: 0;
|
|
5347
5375
|
}
|
|
5376
|
+
@media screen and (max-width: 480px) {
|
|
5377
|
+
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active .e-text-wrap {
|
|
5378
|
+
height: 48px;
|
|
5379
|
+
}
|
|
5380
|
+
}
|
|
5348
5381
|
.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 {
|
|
5349
5382
|
top: unset;
|
|
5350
5383
|
}
|
|
@@ -5731,6 +5764,10 @@
|
|
|
5731
5764
|
.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 {
|
|
5732
5765
|
height: auto;
|
|
5733
5766
|
}
|
|
5767
|
+
.e-tab.e-template .e-tab-header .e-toolbar-items .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div,
|
|
5768
|
+
.e-tab.e-template .e-tab-header .e-toolbar-pop .e-toolbar-item .e-tab-wrap .e-text-wrap .e-tab-text > div {
|
|
5769
|
+
display: inherit;
|
|
5770
|
+
}
|
|
5734
5771
|
.e-tab.e-template .e-content > .e-item {
|
|
5735
5772
|
display: none;
|
|
5736
5773
|
}
|
|
@@ -6033,7 +6070,7 @@
|
|
|
6033
6070
|
}
|
|
6034
6071
|
@media screen and (max-width: 480px) {
|
|
6035
6072
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap {
|
|
6036
|
-
padding: 0
|
|
6073
|
+
padding: 0 18px;
|
|
6037
6074
|
}
|
|
6038
6075
|
}
|
|
6039
6076
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
@@ -6273,7 +6310,7 @@
|
|
|
6273
6310
|
}
|
|
6274
6311
|
@media screen and (max-width: 480px) {
|
|
6275
6312
|
.e-tab-clone-element.e-itop, .e-tab-clone-element.e-ibottom {
|
|
6276
|
-
height:
|
|
6313
|
+
height: 62px;
|
|
6277
6314
|
}
|
|
6278
6315
|
}
|
|
6279
6316
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
@@ -6286,7 +6323,7 @@
|
|
|
6286
6323
|
}
|
|
6287
6324
|
@media screen and (max-width: 480px) {
|
|
6288
6325
|
.e-tab-clone-element.e-itop .e-tab-wrap, .e-tab-clone-element.e-ibottom .e-tab-wrap {
|
|
6289
|
-
height:
|
|
6326
|
+
height: 62px;
|
|
6290
6327
|
}
|
|
6291
6328
|
}
|
|
6292
6329
|
.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 {
|
|
@@ -6496,6 +6533,9 @@
|
|
|
6496
6533
|
.e-tab .e-tab-header .e-toolbar-item:hover {
|
|
6497
6534
|
background: inherit;
|
|
6498
6535
|
}
|
|
6536
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active:hover {
|
|
6537
|
+
background: inherit;
|
|
6538
|
+
}
|
|
6499
6539
|
.e-tab .e-tab-header .e-toolbar-item .e-ripple-element {
|
|
6500
6540
|
background: rgba(0, 176, 255, 0.12);
|
|
6501
6541
|
}
|
|
@@ -6551,8 +6591,8 @@
|
|
|
6551
6591
|
content: unset;
|
|
6552
6592
|
display: unset;
|
|
6553
6593
|
position: unset;
|
|
6554
|
-
top: unset;
|
|
6555
6594
|
width: unset;
|
|
6595
|
+
top: unset;
|
|
6556
6596
|
}
|
|
6557
6597
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-text,
|
|
6558
6598
|
.e-tab .e-tab-header .e-toolbar-item.e-active .e-tab-icon {
|
|
@@ -6564,6 +6604,9 @@
|
|
|
6564
6604
|
.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 {
|
|
6565
6605
|
color: #00b0ff;
|
|
6566
6606
|
}
|
|
6607
|
+
.e-tab .e-tab-header .e-toolbar-item.e-active .e-close-icon {
|
|
6608
|
+
color: rgba(255, 255, 255, 0.7);
|
|
6609
|
+
}
|
|
6567
6610
|
.e-tab .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6568
6611
|
color: rgba(255, 255, 255, 0.7);
|
|
6569
6612
|
}
|
|
@@ -6977,6 +7020,10 @@
|
|
|
6977
7020
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active {
|
|
6978
7021
|
border: 0;
|
|
6979
7022
|
}
|
|
7023
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7024
|
+
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7025
|
+
color: rgba(255, 255, 255, 0.3);
|
|
7026
|
+
}
|
|
6980
7027
|
.e-tab.e-fill .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
6981
7028
|
background: #00b0ff;
|
|
6982
7029
|
border-radius: 0;
|
|
@@ -7137,6 +7184,10 @@
|
|
|
7137
7184
|
margin: 0;
|
|
7138
7185
|
background: inherit;
|
|
7139
7186
|
}
|
|
7187
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-text,
|
|
7188
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active.e-disable.e-overlay .e-tab-icon {
|
|
7189
|
+
color: rgba(255, 255, 255, 0.3);
|
|
7190
|
+
}
|
|
7140
7191
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active .e-tab-wrap {
|
|
7141
7192
|
background: #3f51b5;
|
|
7142
7193
|
border-color: unset;
|
|
@@ -9340,6 +9391,10 @@ ejs-sidebar {
|
|
|
9340
9391
|
text-indent: inherit;
|
|
9341
9392
|
}
|
|
9342
9393
|
|
|
9394
|
+
.e-menu-container .e-vscroll ul {
|
|
9395
|
+
position: relative;
|
|
9396
|
+
}
|
|
9397
|
+
|
|
9343
9398
|
/*! menu theme */
|
|
9344
9399
|
.e-menu-wrapper,
|
|
9345
9400
|
.e-menu-container {
|
|
@@ -9849,15 +9904,15 @@ ejs-sidebar {
|
|
|
9849
9904
|
color: white;
|
|
9850
9905
|
}
|
|
9851
9906
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:hover {
|
|
9852
|
-
background
|
|
9907
|
+
background: #424242;
|
|
9853
9908
|
color: #bdbdbd;
|
|
9854
9909
|
}
|
|
9855
9910
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item:active {
|
|
9856
|
-
background
|
|
9911
|
+
background: #616161;
|
|
9857
9912
|
color: #bdbdbd;
|
|
9858
9913
|
}
|
|
9859
9914
|
.e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text:focus {
|
|
9860
|
-
background
|
|
9915
|
+
background: #757575;
|
|
9861
9916
|
color: #bdbdbd;
|
|
9862
9917
|
}
|
|
9863
9918
|
.e-breadcrumb .e-breadcrumb-item[data-active-item] .e-breadcrumb-text {
|
|
@@ -9876,17 +9931,17 @@ ejs-sidebar {
|
|
|
9876
9931
|
}
|
|
9877
9932
|
.e-breadcrumb .e-breadcrumb-collapsed:hover,
|
|
9878
9933
|
.e-breadcrumb .e-breadcrumb-menu:hover {
|
|
9879
|
-
background
|
|
9934
|
+
background: #424242;
|
|
9880
9935
|
color: #bdbdbd;
|
|
9881
9936
|
}
|
|
9882
9937
|
.e-breadcrumb .e-breadcrumb-collapsed:active,
|
|
9883
9938
|
.e-breadcrumb .e-breadcrumb-menu:active {
|
|
9884
|
-
background
|
|
9939
|
+
background: #616161;
|
|
9885
9940
|
color: #bdbdbd;
|
|
9886
9941
|
}
|
|
9887
9942
|
.e-breadcrumb .e-breadcrumb-collapsed:focus,
|
|
9888
9943
|
.e-breadcrumb .e-breadcrumb-menu:focus {
|
|
9889
|
-
background
|
|
9944
|
+
background: #757575;
|
|
9890
9945
|
color: #bdbdbd;
|
|
9891
9946
|
}
|
|
9892
9947
|
.e-breadcrumb.e-disabled .e-breadcrumb-item .e-breadcrumb-text,
|
|
@@ -9899,17 +9954,17 @@ ejs-sidebar {
|
|
|
9899
9954
|
}
|
|
9900
9955
|
|
|
9901
9956
|
.e-breadcrumb-popup {
|
|
9902
|
-
background
|
|
9957
|
+
background: #424242;
|
|
9903
9958
|
}
|
|
9904
9959
|
.e-breadcrumb-popup .e-breadcrumb-text {
|
|
9905
9960
|
color: #e0e0e0;
|
|
9906
9961
|
}
|
|
9907
9962
|
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
9908
|
-
background
|
|
9963
|
+
background: rgba(255, 255, 255, 0.1);
|
|
9909
9964
|
color: #fff;
|
|
9910
9965
|
}
|
|
9911
9966
|
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9912
|
-
background
|
|
9967
|
+
background: rgba(255, 255, 255, 0.1);
|
|
9913
9968
|
color: #fff;
|
|
9914
9969
|
}
|
|
9915
9970
|
|
|
@@ -9984,12 +10039,16 @@ ejs-sidebar {
|
|
|
9984
10039
|
right: auto;
|
|
9985
10040
|
}
|
|
9986
10041
|
.e-appbar .e-appbar-separator {
|
|
9987
|
-
height:
|
|
10042
|
+
height: 24px;
|
|
9988
10043
|
}
|
|
9989
10044
|
.e-appbar .e-appbar-spacer {
|
|
9990
10045
|
-ms-flex-positive: 1;
|
|
9991
10046
|
flex-grow: 1;
|
|
9992
10047
|
}
|
|
10048
|
+
.e-appbar .e-btn,
|
|
10049
|
+
.e-appbar .e-css.e-btn {
|
|
10050
|
+
border-image: unset;
|
|
10051
|
+
}
|
|
9993
10052
|
|
|
9994
10053
|
.e-inherit.e-menu-wrapper.e-scrollable .e-menu,
|
|
9995
10054
|
.e-inherit.e-menu-container.e-scrollable .e-menu {
|
|
@@ -10003,8 +10062,8 @@ ejs-sidebar {
|
|
|
10003
10062
|
.e-appbar.e-light {
|
|
10004
10063
|
background: #303030;
|
|
10005
10064
|
color: #fff;
|
|
10006
|
-
border-color: #303030;
|
|
10007
10065
|
border: none;
|
|
10066
|
+
border-color: #303030;
|
|
10008
10067
|
}
|
|
10009
10068
|
.e-appbar.e-light .e-appbar-separator {
|
|
10010
10069
|
border-left: 1px solid #fff;
|
|
@@ -10028,8 +10087,8 @@ ejs-sidebar {
|
|
|
10028
10087
|
.e-appbar.e-light .e-menu-container.e-inherit {
|
|
10029
10088
|
background: #303030;
|
|
10030
10089
|
color: #fff;
|
|
10031
|
-
border-color: #303030;
|
|
10032
10090
|
box-shadow: none;
|
|
10091
|
+
border-color: #303030;
|
|
10033
10092
|
}
|
|
10034
10093
|
.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,
|
|
10035
10094
|
.e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
|