@syncfusion/ej2-navigations 19.2.59 → 19.3.44
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 -1
- package/CHANGELOG.md +32 -0
- package/README.md +15 -0
- package/breadcrumb.d.ts +4 -0
- package/breadcrumb.js +4 -0
- 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 +545 -170
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +567 -172
- 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 +13 -12
- package/src/accordion/accordion.d.ts +2 -8
- package/src/accordion/accordion.js +16 -85
- package/src/breadcrumb/breadcrumb-model.d.ts +147 -0
- package/src/breadcrumb/breadcrumb.d.ts +232 -0
- package/src/breadcrumb/breadcrumb.js +497 -0
- package/src/breadcrumb/index.d.ts +5 -0
- package/src/breadcrumb/index.js +4 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/sidebar/sidebar.js +2 -2
- package/src/tab/tab-model.d.ts +1 -1
- package/src/tab/tab.d.ts +1 -1
- package/src/tab/tab.js +50 -84
- package/src/toolbar/toolbar.js +1 -1
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +81 -0
- package/styles/accordion/_fabric-dark-definition.scss +1 -0
- package/styles/accordion/_fabric-definition.scss +1 -0
- package/styles/accordion/_highcontrast-definition.scss +1 -1
- package/styles/accordion/_layout.scss +6 -8
- package/styles/accordion/_tailwind-dark-definition.scss +1 -77
- package/styles/accordion/_tailwind-definition.scss +79 -79
- package/styles/accordion/_theme.scss +57 -17
- package/styles/accordion/bootstrap5-dark.css +428 -0
- package/styles/accordion/bootstrap5-dark.scss +4 -0
- package/styles/accordion/bootstrap5.css +428 -0
- package/styles/accordion/bootstrap5.scss +4 -0
- package/styles/accordion/highcontrast-light.css +0 -1
- package/styles/accordion/highcontrast.css +0 -1
- package/styles/accordion/icons/_bootstrap4.scss +1 -1
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +18 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -17
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/accordion/material-dark.css +2 -2
- package/styles/accordion/tailwind-dark.css +1 -1
- package/styles/bootstrap-dark.css +352 -60
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +349 -57
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +351 -60
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +9922 -0
- package/styles/bootstrap5-dark.scss +10 -0
- package/styles/bootstrap5.css +9922 -0
- package/styles/bootstrap5.scss +10 -0
- package/styles/breadcrumb/_all.scss +2 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-definition.scss +46 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +48 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +48 -0
- package/styles/breadcrumb/_layout.scss +291 -0
- package/styles/breadcrumb/_material-dark-definition.scss +37 -0
- package/styles/breadcrumb/_material-definition.scss +37 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +47 -0
- package/styles/breadcrumb/_tailwind-definition.scss +47 -0
- package/styles/breadcrumb/_theme.scss +134 -0
- package/styles/breadcrumb/bootstrap-dark.css +279 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap.css +279 -0
- package/styles/breadcrumb/bootstrap.scss +4 -0
- package/styles/breadcrumb/bootstrap4.css +279 -0
- package/styles/breadcrumb/bootstrap4.scss +4 -0
- package/styles/breadcrumb/bootstrap5-dark.css +297 -0
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap5.css +297 -0
- package/styles/breadcrumb/bootstrap5.scss +4 -0
- package/styles/breadcrumb/fabric-dark.css +277 -0
- package/styles/breadcrumb/fabric-dark.scss +4 -0
- package/styles/breadcrumb/fabric.css +277 -0
- package/styles/breadcrumb/fabric.scss +4 -0
- package/styles/breadcrumb/highcontrast-light.css +285 -0
- package/styles/breadcrumb/highcontrast-light.scss +4 -0
- package/styles/breadcrumb/highcontrast.css +285 -0
- package/styles/breadcrumb/highcontrast.scss +4 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +24 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +13 -0
- package/styles/breadcrumb/icons/_fabric.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +13 -0
- package/styles/breadcrumb/icons/_material-dark.scss +24 -0
- package/styles/breadcrumb/icons/_material.scss +24 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +13 -0
- package/styles/breadcrumb/icons/_tailwind.scss +13 -0
- package/styles/breadcrumb/material-dark.css +259 -0
- package/styles/breadcrumb/material-dark.scss +4 -0
- package/styles/breadcrumb/material.css +259 -0
- package/styles/breadcrumb/material.scss +4 -0
- package/styles/breadcrumb/tailwind-dark.css +280 -0
- package/styles/breadcrumb/tailwind-dark.scss +4 -0
- package/styles/breadcrumb/tailwind.css +280 -0
- package/styles/breadcrumb/tailwind.scss +4 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -53
- package/styles/context-menu/_tailwind-definition.scss +52 -51
- package/styles/context-menu/bootstrap5-dark.css +382 -0
- package/styles/context-menu/bootstrap5-dark.scss +4 -0
- package/styles/context-menu/bootstrap5.css +382 -0
- package/styles/context-menu/bootstrap5.scss +4 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +32 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +32 -32
- package/styles/context-menu/icons/_tailwind.scss +32 -32
- package/styles/fabric-dark.css +352 -78
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +346 -72
- package/styles/fabric.scss +1 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +78 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +1 -1
- package/styles/h-scroll/_highcontrast-definition.scss +1 -1
- package/styles/h-scroll/_layout.scss +1 -1
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -78
- package/styles/h-scroll/bootstrap5-dark.css +328 -0
- package/styles/h-scroll/bootstrap5-dark.scss +4 -0
- package/styles/h-scroll/bootstrap5.css +328 -0
- package/styles/h-scroll/bootstrap5.scss +4 -0
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -49
- package/styles/highcontrast-light.css +354 -73
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +356 -75
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +360 -105
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +324 -69
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +68 -0
- package/styles/menu/_layout.scss +12 -2
- package/styles/menu/_tailwind-dark-definition.scss +1 -66
- package/styles/menu/_tailwind-definition.scss +66 -64
- package/styles/menu/_theme.scss +1 -1
- package/styles/menu/bootstrap-dark.css +36 -36
- package/styles/menu/bootstrap.css +36 -36
- package/styles/menu/bootstrap4.css +34 -34
- package/styles/menu/bootstrap5-dark.css +1251 -0
- package/styles/menu/bootstrap5-dark.scss +8 -0
- package/styles/menu/bootstrap5.css +1251 -0
- package/styles/menu/bootstrap5.scss +8 -0
- package/styles/menu/fabric-dark.css +36 -36
- package/styles/menu/fabric.css +36 -36
- package/styles/menu/highcontrast-light.css +36 -36
- package/styles/menu/highcontrast.css +36 -36
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +133 -0
- package/styles/menu/icons/_tailwind-dark.scss +133 -133
- package/styles/menu/icons/_tailwind.scss +133 -133
- package/styles/menu/material-dark.css +36 -36
- package/styles/menu/material.css +36 -36
- package/styles/menu/tailwind-dark.css +36 -36
- package/styles/menu/tailwind.css +36 -36
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +5 -0
- package/styles/sidebar/_highcontrast-definition.scss +1 -1
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -4
- package/styles/sidebar/_tailwind-definition.scss +2 -1
- package/styles/sidebar/_theme.scss +3 -3
- package/styles/sidebar/bootstrap5-dark.css +155 -0
- package/styles/sidebar/bootstrap5-dark.scss +3 -0
- package/styles/sidebar/bootstrap5.css +155 -0
- package/styles/sidebar/bootstrap5.scss +3 -0
- package/styles/sidebar/highcontrast.css +1 -1
- package/styles/tab/_bootstrap-dark-definition.scss +2 -2
- package/styles/tab/_bootstrap-definition.scss +1 -1
- package/styles/tab/_bootstrap4-definition.scss +2 -2
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +401 -0
- package/styles/tab/_layout.scss +45 -51
- package/styles/tab/_material-dark-definition.scss +0 -1
- package/styles/tab/_tailwind-dark-definition.scss +1 -420
- package/styles/tab/_tailwind-definition.scss +420 -420
- package/styles/tab/_theme.scss +166 -53
- package/styles/tab/bootstrap-dark.css +15 -14
- package/styles/tab/bootstrap.css +12 -11
- package/styles/tab/bootstrap4.css +15 -14
- package/styles/tab/bootstrap5-dark.css +4442 -0
- package/styles/tab/bootstrap5-dark.scss +5 -0
- package/styles/tab/bootstrap5.css +4442 -0
- package/styles/tab/bootstrap5.scss +5 -0
- package/styles/tab/fabric-dark.css +16 -15
- package/styles/tab/fabric.css +14 -13
- package/styles/tab/highcontrast-light.css +14 -13
- package/styles/tab/highcontrast.css +14 -13
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +141 -0
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_tailwind-dark.scss +1 -140
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +36 -35
- package/styles/tab/material.css +11 -10
- package/styles/tab/tailwind-dark.css +27 -39
- package/styles/tab/tailwind.css +22 -34
- package/styles/tailwind-dark.css +379 -111
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +364 -96
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +143 -0
- package/styles/toolbar/_fabric-dark-definition.scss +1 -3
- package/styles/toolbar/_layout.scss +18 -9
- package/styles/toolbar/_material-dark-definition.scss +0 -1
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -143
- package/styles/toolbar/_tailwind-definition.scss +143 -143
- package/styles/toolbar/_theme.scss +98 -16
- package/styles/toolbar/bootstrap-dark.css +13 -10
- package/styles/toolbar/bootstrap.css +13 -10
- package/styles/toolbar/bootstrap4.css +14 -12
- package/styles/toolbar/bootstrap5-dark.css +1409 -0
- package/styles/toolbar/bootstrap5-dark.scss +8 -0
- package/styles/toolbar/bootstrap5.css +1409 -0
- package/styles/toolbar/bootstrap5.scss +8 -0
- package/styles/toolbar/fabric-dark.css +13 -26
- package/styles/toolbar/fabric.css +10 -23
- package/styles/toolbar/highcontrast-light.css +10 -23
- package/styles/toolbar/highcontrast.css +10 -23
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +17 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -16
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +11 -24
- package/styles/toolbar/material.css +10 -23
- package/styles/toolbar/tailwind-dark.css +20 -29
- package/styles/toolbar/tailwind.css +16 -25
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +109 -0
- package/styles/treeview/_layout.scss +64 -17
- package/styles/treeview/_tailwind-dark-definition.scss +1 -110
- package/styles/treeview/_tailwind-definition.scss +30 -28
- package/styles/treeview/_theme.scss +26 -6
- package/styles/treeview/bootstrap-dark.css +8 -0
- package/styles/treeview/bootstrap.css +8 -0
- package/styles/treeview/bootstrap4.css +8 -0
- package/styles/treeview/bootstrap5-dark.css +974 -0
- package/styles/treeview/bootstrap5-dark.scss +6 -0
- package/styles/treeview/bootstrap5.css +974 -0
- package/styles/treeview/bootstrap5.scss +6 -0
- package/styles/treeview/fabric-dark.css +8 -0
- package/styles/treeview/fabric.css +8 -0
- package/styles/treeview/highcontrast-light.css +8 -0
- package/styles/treeview/highcontrast.css +8 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +15 -7
- package/styles/treeview/material.css +8 -0
- package/styles/treeview/tailwind-dark.css +10 -2
- package/styles/treeview/tailwind.css +9 -1
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -49
- package/styles/v-scroll/bootstrap5-dark.css +247 -0
- package/styles/v-scroll/bootstrap5-dark.scss +4 -0
- package/styles/v-scroll/bootstrap5.css +247 -0
- package/styles/v-scroll/bootstrap5.scss +4 -0
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -26
- package/styles/v-scroll/material-dark.css +1 -1
- package/styles/v-scroll/tailwind-dark.css +4 -4
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
|
|
4
|
+
@import 'bootstrap5-definition.scss';
|
|
5
|
+
@import 'icons/bootstrap5.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -261,6 +261,14 @@
|
|
|
261
261
|
position: relative;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
265
|
+
position: absolute;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.e-treeview .e-icons-spinner {
|
|
269
|
+
position: relative;
|
|
270
|
+
}
|
|
271
|
+
|
|
264
272
|
.e-treeview .e-text-content {
|
|
265
273
|
-ms-user-select: none;
|
|
266
274
|
-webkit-user-select: none;
|
|
@@ -262,6 +262,14 @@
|
|
|
262
262
|
position: relative;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
266
|
+
position: absolute;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.e-treeview .e-icons-spinner {
|
|
270
|
+
position: relative;
|
|
271
|
+
}
|
|
272
|
+
|
|
265
273
|
.e-treeview .e-text-content {
|
|
266
274
|
-ms-user-select: none;
|
|
267
275
|
-webkit-user-select: none;
|
|
@@ -261,6 +261,14 @@
|
|
|
261
261
|
position: relative;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
265
|
+
position: absolute;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.e-treeview .e-icons-spinner {
|
|
269
|
+
position: relative;
|
|
270
|
+
}
|
|
271
|
+
|
|
264
272
|
.e-treeview .e-text-content {
|
|
265
273
|
-ms-user-select: none;
|
|
266
274
|
-webkit-user-select: none;
|
|
@@ -262,6 +262,14 @@
|
|
|
262
262
|
position: relative;
|
|
263
263
|
}
|
|
264
264
|
|
|
265
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
266
|
+
position: absolute;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.e-treeview .e-icons-spinner {
|
|
270
|
+
position: relative;
|
|
271
|
+
}
|
|
272
|
+
|
|
265
273
|
.e-treeview .e-text-content {
|
|
266
274
|
-ms-user-select: none;
|
|
267
275
|
-webkit-user-select: none;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5.scss';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
|
|
2
|
+
@include export-module('treeview-bootstrap5-icons') {
|
|
3
|
+
/*! TreeView icons */
|
|
4
|
+
.e-treeview {
|
|
5
|
+
|
|
6
|
+
.e-list-item {
|
|
7
|
+
|
|
8
|
+
div.e-icons::before {
|
|
9
|
+
content: '\e75c';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-sibling::before {
|
|
14
|
+
content: '';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-popup {
|
|
18
|
+
|
|
19
|
+
.e-icons::before {
|
|
20
|
+
content: '\e76a';
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.e-drag-item {
|
|
25
|
+
|
|
26
|
+
.e-icons.e-drop-in::before {
|
|
27
|
+
content: '\e768';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-icons.e-drop-out::before {
|
|
31
|
+
content: '\e839';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-icons.e-drop-next::before {
|
|
35
|
+
content: '\e736';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-icons.e-no-drop::before {
|
|
39
|
+
content: '\e839';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
@include export-module('treeview-tailwind-dark-icons') {
|
|
3
|
-
/*! TreeView icons */
|
|
4
|
-
.e-treeview {
|
|
5
|
-
|
|
6
|
-
.e-list-item {
|
|
7
|
-
|
|
8
|
-
div.e-icons::before {
|
|
9
|
-
content: '\e707';
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.e-sibling::before {
|
|
14
|
-
content: '';
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.e-popup {
|
|
18
|
-
|
|
19
|
-
.e-icons::before {
|
|
20
|
-
content: '\e76a';
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&.e-drag-item {
|
|
25
|
-
|
|
26
|
-
.e-icons.e-drop-in::before {
|
|
27
|
-
content: '\e783';
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.e-icons.e-drop-out::before {
|
|
31
|
-
content: '\e77e';
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.e-icons.e-drop-next::before {
|
|
35
|
-
content: '\e7a9';
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.e-icons.e-no-drop::before {
|
|
39
|
-
content: '\e77e';
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
}
|
|
1
|
+
|
|
2
|
+
@include export-module('treeview-tailwind-dark-icons') {
|
|
3
|
+
/*! TreeView icons */
|
|
4
|
+
.e-treeview {
|
|
5
|
+
|
|
6
|
+
.e-list-item {
|
|
7
|
+
|
|
8
|
+
div.e-icons::before {
|
|
9
|
+
content: '\e707';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-sibling::before {
|
|
14
|
+
content: '';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-popup {
|
|
18
|
+
|
|
19
|
+
.e-icons::before {
|
|
20
|
+
content: '\e76a';
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.e-drag-item {
|
|
25
|
+
|
|
26
|
+
.e-icons.e-drop-in::before {
|
|
27
|
+
content: '\e783';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-icons.e-drop-out::before {
|
|
31
|
+
content: '\e77e';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-icons.e-drop-next::before {
|
|
35
|
+
content: '\e7a9';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-icons.e-no-drop::before {
|
|
39
|
+
content: '\e77e';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -269,6 +269,14 @@
|
|
|
269
269
|
position: relative;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
273
|
+
position: absolute;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.e-treeview .e-icons-spinner {
|
|
277
|
+
position: relative;
|
|
278
|
+
}
|
|
279
|
+
|
|
272
280
|
.e-treeview .e-text-content {
|
|
273
281
|
-ms-user-select: none;
|
|
274
282
|
-webkit-user-select: none;
|
|
@@ -671,11 +679,11 @@
|
|
|
671
679
|
}
|
|
672
680
|
|
|
673
681
|
.e-treeview .e-list-item.e-active > .e-text-content {
|
|
674
|
-
color: #
|
|
682
|
+
color: #00b0ff;
|
|
675
683
|
}
|
|
676
684
|
|
|
677
685
|
.e-treeview .e-list-item.e-active > .e-text-content .e-list-text {
|
|
678
|
-
color: #
|
|
686
|
+
color: #00b0ff;
|
|
679
687
|
}
|
|
680
688
|
|
|
681
689
|
.e-treeview .e-list-item.e-active > .e-text-content .e-icon-collapsible,
|
|
@@ -684,11 +692,11 @@
|
|
|
684
692
|
}
|
|
685
693
|
|
|
686
694
|
.e-treeview .e-list-item.e-active.e-hover > .e-text-content {
|
|
687
|
-
color: #
|
|
695
|
+
color: #00b0ff;
|
|
688
696
|
}
|
|
689
697
|
|
|
690
698
|
.e-treeview .e-list-item.e-active.e-hover > .e-text-content .e-list-text {
|
|
691
|
-
color: #
|
|
699
|
+
color: #00b0ff;
|
|
692
700
|
}
|
|
693
701
|
|
|
694
702
|
.e-treeview .e-list-item.e-active.e-hover > .e-text-content .e-icon-collapsible,
|
|
@@ -758,7 +766,7 @@
|
|
|
758
766
|
}
|
|
759
767
|
|
|
760
768
|
.e-treeview .e-sibling {
|
|
761
|
-
border-left-color: #
|
|
769
|
+
border-left-color: #00b0ff;
|
|
762
770
|
border-right-color: transparent;
|
|
763
771
|
}
|
|
764
772
|
|
|
@@ -827,12 +835,12 @@
|
|
|
827
835
|
}
|
|
828
836
|
|
|
829
837
|
.e-treeview.e-drag-item .e-drop-count {
|
|
830
|
-
background-color: #
|
|
838
|
+
background-color: #00b0ff;
|
|
831
839
|
border-color: #000;
|
|
832
840
|
color: #000;
|
|
833
841
|
}
|
|
834
842
|
|
|
835
843
|
.e-treeview.e-drag-item.e-rtl .e-sibling {
|
|
836
|
-
border-right-color: #
|
|
844
|
+
border-right-color: #00b0ff;
|
|
837
845
|
border-left-color: transparent;
|
|
838
846
|
}
|
|
@@ -274,6 +274,14 @@
|
|
|
274
274
|
position: relative;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
278
|
+
position: absolute;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.e-treeview .e-icons-spinner {
|
|
282
|
+
position: relative;
|
|
283
|
+
}
|
|
284
|
+
|
|
277
285
|
.e-treeview .e-text-content {
|
|
278
286
|
-ms-user-select: none;
|
|
279
287
|
-webkit-user-select: none;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
-
/*! TreeView's tailwind
|
|
2
|
+
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
3
3
|
/*! TreeView icons */
|
|
4
4
|
.e-treeview .e-list-item div.e-icons::before {
|
|
5
5
|
content: '\e707';
|
|
@@ -377,6 +377,14 @@
|
|
|
377
377
|
position: relative;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
381
|
+
position: absolute;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.e-treeview .e-icons-spinner {
|
|
385
|
+
position: relative;
|
|
386
|
+
}
|
|
387
|
+
|
|
380
388
|
.e-treeview .e-text-content {
|
|
381
389
|
-ms-user-select: none;
|
|
382
390
|
-webkit-user-select: none;
|
|
@@ -874,7 +882,7 @@
|
|
|
874
882
|
}
|
|
875
883
|
|
|
876
884
|
.e-treeview .e-sibling {
|
|
877
|
-
border:
|
|
885
|
+
border-top: 2px solid #22d3ee;
|
|
878
886
|
}
|
|
879
887
|
|
|
880
888
|
.e-treeview .e-sibling::before {
|
|
@@ -377,6 +377,14 @@
|
|
|
377
377
|
position: relative;
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
+
.e-treeview .e-icons .e-treeview-spinner {
|
|
381
|
+
position: absolute;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.e-treeview .e-icons-spinner {
|
|
385
|
+
position: relative;
|
|
386
|
+
}
|
|
387
|
+
|
|
380
388
|
.e-treeview .e-text-content {
|
|
381
389
|
-ms-user-select: none;
|
|
382
390
|
-webkit-user-select: none;
|
|
@@ -874,7 +882,7 @@
|
|
|
874
882
|
}
|
|
875
883
|
|
|
876
884
|
.e-treeview .e-sibling {
|
|
877
|
-
border:
|
|
885
|
+
border-top: 2px solid #4f46e5;
|
|
878
886
|
}
|
|
879
887
|
|
|
880
888
|
.e-treeview .e-sibling::before {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/*! component's theme wise override definitions and variables */
|
|
2
|
+
$vscroll-skin: 'bootstrap5' !default;
|
|
3
|
+
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
+
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
|
+
$vscroll-border-size: 1px !default;
|
|
7
|
+
$vscroll-border-type: solid !default;
|
|
8
|
+
|
|
9
|
+
$vscroll-default-bg: $content-bg-color-alt2 !default;
|
|
10
|
+
$vscroll-nav-nrml-minheight: 38px !default;
|
|
11
|
+
$vscroll-nav-bgr-minheight: 48px !default;
|
|
12
|
+
$vscroll-nav-nrml-width: 28px !default;
|
|
13
|
+
$vscroll-nav-bgr-width: 48px !default;
|
|
14
|
+
$vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
|
|
15
|
+
$vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
|
|
16
|
+
$vscroll-box-shadow: none !default;
|
|
17
|
+
$vscroll-overlay-opacity: .5 !default;
|
|
18
|
+
$vscroll-overlay-bg: $content-bg-color-alt2 !default;
|
|
19
|
+
$vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
|
|
20
|
+
$vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
21
|
+
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
22
|
+
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
23
|
+
|
|
24
|
+
$vscroll-device-arrow-box-shadow: $shadow !default;
|
|
25
|
+
$vscroll-device-arrow-rtl-box-shadow: $shadow !default;
|
|
26
|
+
$vscroll-device-arrow-bg: $content-bg-color-alt2 !default;
|
|
27
|
+
$vscroll-device-arrow-border-size: 1px !default;
|
|
28
|
+
$vscroll-device-arrow-border-color: $icon-color !default;
|
|
29
|
+
$vscroll-device-arrow-color: $icon-color !default;
|
|
30
|
+
$vscroll-device-arrow-size: 14px !default;
|
|
31
|
+
$vscroll-device-arrow-width: 48px !default;
|
|
32
|
+
|
|
33
|
+
$vscroll-default-icon-color: $icon-color !default;
|
|
34
|
+
$vscroll-hover-bg: $content-bg-color-alt3 !default;
|
|
35
|
+
$vscroll-press-bg: $content-bg-color-alt3 !default;
|
|
36
|
+
$vscroll-default-border: $icon-color !default;
|
|
37
|
+
$vscroll-focus-border: 0 !default;
|
|
38
|
+
$vscroll-active-border: 0 !default;
|
|
39
|
+
$vscroll-hover-border: 0 !default;
|
|
40
|
+
$vscroll-hover-border-color: transparent !default;
|
|
41
|
+
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
|
|
42
|
+
|
|
43
|
+
@mixin vscroll-btn-animation {
|
|
44
|
+
content: '';
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@mixin vscroll-btn-animation-after {
|
|
48
|
+
content: '';
|
|
49
|
+
}
|
|
@@ -1,49 +1 @@
|
|
|
1
|
-
|
|
2
|
-
$vscroll-skin: 'tailwind-dark' !default;
|
|
3
|
-
$vscroll-nav-nrml-height: 38px !default;
|
|
4
|
-
$vscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
-
$vscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
|
-
$vscroll-border-size: 1px !default;
|
|
7
|
-
$vscroll-border-type: solid !default;
|
|
8
|
-
|
|
9
|
-
$vscroll-default-bg: $content-bg-color-alt2 !default;
|
|
10
|
-
$vscroll-nav-nrml-minheight: 38px !default;
|
|
11
|
-
$vscroll-nav-bgr-minheight: 48px !default;
|
|
12
|
-
$vscroll-nav-nrml-width: 28px !default;
|
|
13
|
-
$vscroll-nav-bgr-width: 48px !default;
|
|
14
|
-
$vscroll-nrml-padding: 0 $vscroll-nav-nrml-width !default;
|
|
15
|
-
$vscroll-bgr-padding: $vscroll-nav-bgr-width 0 !default;
|
|
16
|
-
$vscroll-box-shadow: none !default;
|
|
17
|
-
$vscroll-overlay-opacity: .5 !default;
|
|
18
|
-
$vscroll-overlay-bg: $content-bg-color-alt2 !default;
|
|
19
|
-
$vscroll-overlay-start: rgba($vscroll-overlay-bg, 0) !default;
|
|
20
|
-
$vscroll-overlay-end: rgba($vscroll-overlay-bg, 1) !default;
|
|
21
|
-
$vscroll-right-bg: linear-gradient(-270deg, $vscroll-overlay-start 0%, $vscroll-overlay-end 100%) !default;
|
|
22
|
-
$vscroll-left-bg: linear-gradient(-270deg, $vscroll-overlay-end 0%, $vscroll-overlay-start 100%) !default;
|
|
23
|
-
|
|
24
|
-
$vscroll-device-arrow-box-shadow: $shadow !default;
|
|
25
|
-
$vscroll-device-arrow-rtl-box-shadow: $shadow !default;
|
|
26
|
-
$vscroll-device-arrow-bg: $content-bg-color-alt2 !default;
|
|
27
|
-
$vscroll-device-arrow-border-size: 1px !default;
|
|
28
|
-
$vscroll-device-arrow-border-color: $icon-color !default;
|
|
29
|
-
$vscroll-device-arrow-color: $icon-color !default;
|
|
30
|
-
$vscroll-device-arrow-size: 14px !default;
|
|
31
|
-
$vscroll-device-arrow-width: 48px !default;
|
|
32
|
-
|
|
33
|
-
$vscroll-default-icon-color: $icon-color !default;
|
|
34
|
-
$vscroll-hover-bg: $content-bg-color-alt3 !default;
|
|
35
|
-
$vscroll-press-bg: $content-bg-color-alt3 !default;
|
|
36
|
-
$vscroll-default-border: $icon-color !default;
|
|
37
|
-
$vscroll-focus-border: 0 !default;
|
|
38
|
-
$vscroll-active-border: 0 !default;
|
|
39
|
-
$vscroll-hover-border: 0 !default;
|
|
40
|
-
$vscroll-hover-border-color: transparent !default;
|
|
41
|
-
$vscroll-active-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
|
|
42
|
-
|
|
43
|
-
@mixin vscroll-btn-animation {
|
|
44
|
-
content: '';
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
@mixin vscroll-btn-animation-after {
|
|
48
|
-
content: '';
|
|
49
|
-
}
|
|
1
|
+
@import './tailwind-definition.scss';
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
/*! component's theme wise override definitions and variables */
|
|
2
|
+
/*! vscroll icons */
|
|
3
|
+
.e-vscroll.e-scroll-device .e-nav-up-arrow::before {
|
|
4
|
+
content: '\e7dd';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-vscroll.e-scroll-device .e-nav-down-arrow::before {
|
|
8
|
+
content: '\e734';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-vscroll .e-nav-up-arrow::before {
|
|
12
|
+
content: '\e7dd';
|
|
13
|
+
line-height: normal;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.e-vscroll .e-nav-down-arrow::before {
|
|
17
|
+
content: '\e734';
|
|
18
|
+
line-height: normal;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/*! v-scroll layout */
|
|
22
|
+
.e-bigger .e-vscroll:not(.e-scroll-device),
|
|
23
|
+
.e-vscroll.e-bigger:not(.e-scroll-device) {
|
|
24
|
+
padding: 48px 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.e-bigger .e-vscroll .e-icons,
|
|
28
|
+
.e-vscroll.e-bigger .e-icons {
|
|
29
|
+
font-size: 18px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.e-bigger .e-vscroll.e-rtl .e-scroll-overlay.e-scroll-down-overlay,
|
|
33
|
+
.e-vscroll.e-bigger.e-rtl .e-scroll-overlay.e-scroll-down-overlay {
|
|
34
|
+
left: 48px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-bigger .e-vscroll .e-scroll-overlay.e-scroll-down-overlay,
|
|
38
|
+
.e-vscroll.e-bigger .e-scroll-overlay.e-scroll-down-overlay {
|
|
39
|
+
right: 48px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-bigger .e-vscroll .e-scroll-nav,
|
|
43
|
+
.e-vscroll.e-bigger .e-scroll-nav {
|
|
44
|
+
height: 48px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-vscroll {
|
|
48
|
+
display: block;
|
|
49
|
+
position: relative;
|
|
50
|
+
width: inherit;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-vscroll.e-rtl.e-scroll-device .e-scroll-nav {
|
|
54
|
+
transform: skewX(-16deg) translateX(-6px);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-vscroll.e-rtl.e-scroll-device .e-scroll-overlay.e-scroll-down-overlay {
|
|
58
|
+
left: 48px;
|
|
59
|
+
right: auto;
|
|
60
|
+
transform: skewX(-16deg) translateX(-6px);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.e-vscroll.e-rtl.e-scroll-device .e-scroll-overlay.e-scroll-up-overlay {
|
|
64
|
+
left: auto;
|
|
65
|
+
right: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.e-vscroll:not(.e-scroll-device) {
|
|
69
|
+
padding: 0 28px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.e-vscroll.e-scroll-device .e-scroll-nav {
|
|
73
|
+
transform: skewX(-16deg) translateX(6px);
|
|
74
|
+
width: 48px;
|
|
75
|
+
z-index: 1001;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-vscroll.e-scroll-device .e-scroll-nav .e-nav-arrow {
|
|
79
|
+
font-size: 14px;
|
|
80
|
+
transform: skewX(16deg);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-vscroll.e-scroll-device .e-scroll-overlay {
|
|
84
|
+
opacity: 0.5;
|
|
85
|
+
pointer-events: none;
|
|
86
|
+
position: absolute;
|
|
87
|
+
top: 0;
|
|
88
|
+
z-index: 100;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-vscroll.e-scroll-device .e-scroll-overlay.e-scroll-down-overlay {
|
|
92
|
+
left: auto;
|
|
93
|
+
right: 48px;
|
|
94
|
+
transform: skewX(-16deg) translateX(6px);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-vscroll.e-scroll-device .e-scroll-overlay.e-scroll-up-overlay {
|
|
98
|
+
left: 0;
|
|
99
|
+
right: auto;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-vscroll > * {
|
|
103
|
+
height: inherit;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-vscroll .e-vscroll-content {
|
|
107
|
+
display: inline-block;
|
|
108
|
+
height: auto;
|
|
109
|
+
position: relative;
|
|
110
|
+
-ms-touch-action: none;
|
|
111
|
+
touch-action: none;
|
|
112
|
+
width: 100%;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-vscroll .e-vscroll-content > * {
|
|
116
|
+
pointer-events: auto;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-vscroll.e-rtl .e-scroll-nav.e-scroll-up-nav {
|
|
120
|
+
left: auto;
|
|
121
|
+
right: 0;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-vscroll.e-rtl .e-scroll-nav.e-scroll-down-nav {
|
|
125
|
+
left: 0;
|
|
126
|
+
right: auto;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.e-vscroll .e-scroll-nav {
|
|
130
|
+
-ms-flex-align: center;
|
|
131
|
+
align-items: center;
|
|
132
|
+
cursor: pointer;
|
|
133
|
+
display: -ms-flexbox;
|
|
134
|
+
display: flex;
|
|
135
|
+
height: 38px;
|
|
136
|
+
overflow: hidden;
|
|
137
|
+
position: absolute;
|
|
138
|
+
width: 100%;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-vscroll .e-scroll-nav.e-scroll-up-nav {
|
|
142
|
+
top: 0;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.e-vscroll .e-scroll-nav.e-scroll-down-nav {
|
|
146
|
+
bottom: 0;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-vscroll .e-scroll-nav.e-ie-align {
|
|
150
|
+
display: table;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-vscroll .e-nav-arrow {
|
|
154
|
+
position: relative;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.e-vscroll .e-nav-arrow.e-icons {
|
|
158
|
+
display: table-cell;
|
|
159
|
+
text-align: center;
|
|
160
|
+
vertical-align: middle;
|
|
161
|
+
width: 100%;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/*! v-scroll theme */
|
|
165
|
+
.e-vscroll .e-icons {
|
|
166
|
+
color: #adb5bd;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-vscroll.e-rtl.e-scroll-device .e-scroll-nav.e-scroll-right-nav {
|
|
170
|
+
border-color: #adb5bd;
|
|
171
|
+
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-vscroll.e-scroll-device .e-scroll-nav.e-scroll-right-nav {
|
|
175
|
+
background-color: #343a40;
|
|
176
|
+
border-color: #adb5bd;
|
|
177
|
+
border-width: 1px;
|
|
178
|
+
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.e-vscroll.e-scroll-device .e-scroll-nav.e-scroll-right-nav .e-nav-arrow {
|
|
182
|
+
color: #adb5bd;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.e-vscroll .e-scroll-overlay {
|
|
186
|
+
background-color: transparent;
|
|
187
|
+
background-repeat: repeat-x;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.e-vscroll .e-scroll-overlay.e-scroll-up-overlay {
|
|
191
|
+
background-image: linear-gradient(-270deg, #343a40 0%, rgba(52, 58, 64, 0) 100%);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.e-vscroll .e-scroll-overlay.e-scroll-down-overlay {
|
|
195
|
+
background-image: linear-gradient(-270deg, rgba(52, 58, 64, 0) 0%, #343a40 100%);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.e-vscroll.e-rtl .e-scroll-nav {
|
|
199
|
+
background: #343a40;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.e-vscroll.e-rtl .e-scroll-nav:hover {
|
|
203
|
+
background: #495057;
|
|
204
|
+
border: 0;
|
|
205
|
+
border-color: transparent;
|
|
206
|
+
color: #ced4da;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-vscroll:not(.e-scroll-device) .e-scroll-nav:hover {
|
|
210
|
+
background: #495057;
|
|
211
|
+
border: 0;
|
|
212
|
+
color: #ced4da;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-vscroll:not(.e-scroll-device) .e-scroll-nav:focus {
|
|
216
|
+
background: #495057;
|
|
217
|
+
border: 0;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
color: #ced4da;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.e-vscroll:not(.e-scroll-device) .e-scroll-nav:active {
|
|
223
|
+
background: #495057;
|
|
224
|
+
border: 0;
|
|
225
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
226
|
+
color: #ced4da;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.e-vscroll .e-scroll-nav {
|
|
230
|
+
background: #343a40;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.e-vscroll .e-scroll-nav.e-scroll-up-nav {
|
|
234
|
+
border-bottom: 1px solid #adb5bd;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.e-vscroll .e-scroll-nav.e-scroll-down-nav {
|
|
238
|
+
border-top: 1px solid #adb5bd;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.e-vscroll .e-scroll-nav::after {
|
|
242
|
+
content: '';
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.e-vscroll .e-scroll-nav:active::after {
|
|
246
|
+
content: '';
|
|
247
|
+
}
|