@syncfusion/ej2-navigations 19.3.57 → 19.4.47
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +57 -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 +517 -142
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +524 -143
- 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 +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/menu-base.js +8 -2
- package/src/common/v-scroll.js +1 -1
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +33 -16
- package/src/tab/tab.js +66 -31
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +48 -0
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +319 -85
- package/styles/bootstrap.css +318 -84
- package/styles/bootstrap4.css +319 -77
- package/styles/bootstrap5-dark.css +341 -76
- package/styles/bootstrap5.css +343 -78
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +307 -42
- package/styles/fabric.css +310 -45
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +1 -1
- package/styles/h-scroll/bootstrap5-dark.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +319 -48
- package/styles/highcontrast.css +324 -53
- package/styles/material-dark.css +297 -33
- package/styles/material.css +298 -34
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +3 -2
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +3 -2
- package/styles/menu/bootstrap.css +3 -2
- package/styles/menu/bootstrap4.css +3 -2
- package/styles/menu/bootstrap5-dark.css +6 -5
- package/styles/menu/bootstrap5.css +7 -6
- package/styles/menu/fabric-dark.css +2 -1
- package/styles/menu/fabric.css +2 -1
- package/styles/menu/highcontrast-light.css +2 -1
- package/styles/menu/highcontrast.css +2 -1
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +3 -2
- package/styles/menu/material.css +3 -2
- package/styles/menu/tailwind-dark.css +3 -2
- package/styles/menu/tailwind.css +3 -2
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +53 -30
- package/styles/tab/bootstrap5.css +53 -30
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +315 -51
- package/styles/tailwind.css +315 -51
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
/*! h-scroll theme */
|
|
227
|
-
.e-hscroll .e-icons {
|
|
227
|
+
.e-hscroll .e-scroll-nav .e-icons {
|
|
228
228
|
color: #adb5bd;
|
|
229
229
|
}
|
|
230
230
|
|
|
@@ -587,6 +587,7 @@
|
|
|
587
587
|
}
|
|
588
588
|
|
|
589
589
|
/*! component's theme wise override definitions and variables */
|
|
590
|
+
/*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
590
591
|
/*! toolbar icons */
|
|
591
592
|
.e-toolbar .e-popup-down-icon::before {
|
|
592
593
|
content: '\e729';
|
|
@@ -818,7 +819,7 @@
|
|
|
818
819
|
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon,
|
|
819
820
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon,
|
|
820
821
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-control.e-tbtn-txt .e-icons.e-btn-icon {
|
|
821
|
-
padding:
|
|
822
|
+
padding-bottom: 3px;
|
|
822
823
|
}
|
|
823
824
|
|
|
824
825
|
.e-bigger .e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn,
|
|
@@ -1272,10 +1273,9 @@
|
|
|
1272
1273
|
align-items: center;
|
|
1273
1274
|
display: -ms-flexbox;
|
|
1274
1275
|
display: flex;
|
|
1275
|
-
height:
|
|
1276
|
+
height: 38px;
|
|
1276
1277
|
-ms-flex-pack: center;
|
|
1277
1278
|
justify-content: center;
|
|
1278
|
-
height: 38px;
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
1281
1281
|
.e-toolbar .e-toolbar-pop .e-toolbar-item > * {
|
|
@@ -1592,7 +1592,7 @@
|
|
|
1592
1592
|
}
|
|
1593
1593
|
|
|
1594
1594
|
.e-toolbar .e-toolbar-items .e-toolbar-item.e-popup-text .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
1595
|
-
padding:
|
|
1595
|
+
padding-bottom: 5px;
|
|
1596
1596
|
}
|
|
1597
1597
|
|
|
1598
1598
|
.e-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn {
|
|
@@ -1818,7 +1818,7 @@
|
|
|
1818
1818
|
}
|
|
1819
1819
|
|
|
1820
1820
|
.e-toolbar.e-extended-toolbar .e-toolbar-extended .e-toolbar-item .e-tbar-btn:active {
|
|
1821
|
-
background: #
|
|
1821
|
+
background: #565e64;
|
|
1822
1822
|
border-color: #444c54;
|
|
1823
1823
|
border-radius: 0;
|
|
1824
1824
|
box-shadow: none;
|
|
@@ -1835,10 +1835,9 @@
|
|
|
1835
1835
|
}
|
|
1836
1836
|
|
|
1837
1837
|
.e-toolbar .e-toolbar-pop {
|
|
1838
|
-
background: #
|
|
1838
|
+
background: #343a40;
|
|
1839
1839
|
border: 0 solid #444c54;
|
|
1840
1840
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
1841
|
-
background: #343a40;
|
|
1842
1841
|
}
|
|
1843
1842
|
|
|
1844
1843
|
.e-toolbar .e-toolbar-pop .e-toolbar-item .e-tbar-btn {
|
|
@@ -1985,7 +1984,7 @@
|
|
|
1985
1984
|
color: #ced4da;
|
|
1986
1985
|
}
|
|
1987
1986
|
|
|
1988
|
-
/*!
|
|
1987
|
+
/*! Accordion's bootstrap5 theme wise override definitions and variables */
|
|
1989
1988
|
/*! accordion icons */
|
|
1990
1989
|
.e-accordion .e-tgl-collapse-icon::before {
|
|
1991
1990
|
content: '\e729';
|
|
@@ -2166,10 +2165,11 @@
|
|
|
2166
2165
|
line-height: 22px;
|
|
2167
2166
|
min-height: 38px;
|
|
2168
2167
|
overflow: hidden;
|
|
2169
|
-
padding: 7px 12px;
|
|
2168
|
+
padding: 7px 12px 3px;
|
|
2170
2169
|
text-decoration: none;
|
|
2171
2170
|
text-overflow: ellipsis;
|
|
2172
2171
|
white-space: nowrap;
|
|
2172
|
+
margin-bottom: 4px;
|
|
2173
2173
|
}
|
|
2174
2174
|
|
|
2175
2175
|
.e-accordion .e-acrdn-item .e-acrdn-header > * {
|
|
@@ -2318,10 +2318,18 @@
|
|
|
2318
2318
|
border-radius: 4px 4px 0 0;
|
|
2319
2319
|
}
|
|
2320
2320
|
|
|
2321
|
+
.e-accordion .e-acrdn-item:last-child {
|
|
2322
|
+
border-bottom: 0;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2321
2325
|
.e-accordion .e-acrdn-item:last-child:not(.e-expand-state) .e-acrdn-header:focus {
|
|
2322
2326
|
border-radius: 0 0 4px 4px;
|
|
2323
2327
|
}
|
|
2324
2328
|
|
|
2329
|
+
.e-accordion .e-acrdn-item:last-child.e-selected .e-acrdn-header:focus {
|
|
2330
|
+
border-radius: 0;
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2325
2333
|
.e-accordion .e-acrdn-item.e-overlay {
|
|
2326
2334
|
background: #212529;
|
|
2327
2335
|
}
|
|
@@ -2443,7 +2451,7 @@
|
|
|
2443
2451
|
-ms-user-select: none;
|
|
2444
2452
|
user-select: none;
|
|
2445
2453
|
font-size: 14px;
|
|
2446
|
-
padding:
|
|
2454
|
+
padding: 0;
|
|
2447
2455
|
border: 1px solid #444c54;
|
|
2448
2456
|
border-radius: 4px;
|
|
2449
2457
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
@@ -2755,20 +2763,20 @@
|
|
|
2755
2763
|
|
|
2756
2764
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected,
|
|
2757
2765
|
.e-contextmenu-container ul .e-menu-item.e-selected {
|
|
2758
|
-
background-color: #
|
|
2766
|
+
background-color: #0d6efd;
|
|
2759
2767
|
color: #fff;
|
|
2760
|
-
outline: 0 solid #
|
|
2768
|
+
outline: 0 solid #0d6efd;
|
|
2761
2769
|
outline-offset: 0;
|
|
2762
2770
|
}
|
|
2763
2771
|
|
|
2764
2772
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-caret,
|
|
2765
2773
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-caret {
|
|
2766
|
-
color: #
|
|
2774
|
+
color: #fff;
|
|
2767
2775
|
}
|
|
2768
2776
|
|
|
2769
2777
|
.e-contextmenu-wrapper ul .e-menu-item.e-selected .e-menu-icon,
|
|
2770
2778
|
.e-contextmenu-container ul .e-menu-item.e-selected .e-menu-icon {
|
|
2771
|
-
color: #
|
|
2779
|
+
color: #fff;
|
|
2772
2780
|
}
|
|
2773
2781
|
|
|
2774
2782
|
.e-contextmenu-wrapper ul .e-disabled,
|
|
@@ -2797,6 +2805,8 @@
|
|
|
2797
2805
|
border-bottom-color: #444c54;
|
|
2798
2806
|
}
|
|
2799
2807
|
|
|
2808
|
+
/*! Toolbar's bootstrap5 theme wise override definitions and variables */
|
|
2809
|
+
/*! Tab's bootstrap5 theme wise override definitions and variables */
|
|
2800
2810
|
/*! Horizontal Tab */
|
|
2801
2811
|
/*! Bootstrap specific themes definition's */
|
|
2802
2812
|
/*! Vertical Tab */
|
|
@@ -4979,6 +4989,10 @@
|
|
|
4979
4989
|
top: 0;
|
|
4980
4990
|
}
|
|
4981
4991
|
|
|
4992
|
+
.e-tab .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
|
|
4993
|
+
display: none;
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4982
4996
|
.e-tab .e-tab-header.e-vertical {
|
|
4983
4997
|
max-width: 150px;
|
|
4984
4998
|
z-index: 1;
|
|
@@ -5236,6 +5250,11 @@
|
|
|
5236
5250
|
min-height: 62px;
|
|
5237
5251
|
}
|
|
5238
5252
|
|
|
5253
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap::before,
|
|
5254
|
+
.e-tab.e-vertical-icon .e-tab-header.e-reorder-active-item .e-toolbar-pop .e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
|
|
5255
|
+
display: none;
|
|
5256
|
+
}
|
|
5257
|
+
|
|
5239
5258
|
.e-tab.e-vertical-icon .e-tab-header .e-toolbar-items {
|
|
5240
5259
|
height: 62px;
|
|
5241
5260
|
}
|
|
@@ -6261,7 +6280,6 @@
|
|
|
6261
6280
|
}
|
|
6262
6281
|
|
|
6263
6282
|
.e-tab .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon {
|
|
6264
|
-
color: #0d6efd;
|
|
6265
6283
|
color: #adb5bd;
|
|
6266
6284
|
}
|
|
6267
6285
|
|
|
@@ -6344,6 +6362,10 @@
|
|
|
6344
6362
|
color: #6c757d;
|
|
6345
6363
|
}
|
|
6346
6364
|
|
|
6365
|
+
.e-tab .e-tab-header.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
|
|
6366
|
+
border: 1px solid #212529;
|
|
6367
|
+
}
|
|
6368
|
+
|
|
6347
6369
|
.e-tab .e-tab-header .e-toolbar-pop {
|
|
6348
6370
|
background: #343a40;
|
|
6349
6371
|
border: 1px #000;
|
|
@@ -6388,6 +6410,11 @@
|
|
|
6388
6410
|
color: #fff;
|
|
6389
6411
|
}
|
|
6390
6412
|
|
|
6413
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-text,
|
|
6414
|
+
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-active .e-tab-wrap .e-tab-icon {
|
|
6415
|
+
color: #ced4da;
|
|
6416
|
+
}
|
|
6417
|
+
|
|
6391
6418
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-text,
|
|
6392
6419
|
.e-tab .e-tab-header .e-toolbar-pop .e-toolbar-item.e-disable.e-overlay .e-tab-icon {
|
|
6393
6420
|
color: #6c757d;
|
|
@@ -6446,7 +6473,6 @@
|
|
|
6446
6473
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) {
|
|
6447
6474
|
background: transparent;
|
|
6448
6475
|
border: 0;
|
|
6449
|
-
border: 3px solid transparent;
|
|
6450
6476
|
}
|
|
6451
6477
|
|
|
6452
6478
|
.e-tab .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
@@ -6462,9 +6488,8 @@
|
|
|
6462
6488
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
6463
6489
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover {
|
|
6464
6490
|
background: #495057;
|
|
6465
|
-
border: 1px solid #444c54;
|
|
6466
|
-
border-radius: 4px;
|
|
6467
6491
|
border: 0;
|
|
6492
|
+
border-radius: 4px;
|
|
6468
6493
|
}
|
|
6469
6494
|
|
|
6470
6495
|
.e-tab .e-tab-header .e-hor-nav .e-popup-down-icon:hover,
|
|
@@ -6478,10 +6503,9 @@
|
|
|
6478
6503
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
6479
6504
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon {
|
|
6480
6505
|
background: #343a40;
|
|
6481
|
-
border:
|
|
6506
|
+
border: 0;
|
|
6482
6507
|
border-radius: 4px;
|
|
6483
6508
|
color: #adb5bd;
|
|
6484
|
-
border: 0;
|
|
6485
6509
|
}
|
|
6486
6510
|
|
|
6487
6511
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:hover,
|
|
@@ -6489,9 +6513,8 @@
|
|
|
6489
6513
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:hover,
|
|
6490
6514
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:hover {
|
|
6491
6515
|
background: #495057;
|
|
6492
|
-
border: 1px solid #444c54;
|
|
6493
|
-
border-radius: 4px;
|
|
6494
6516
|
border: 0;
|
|
6517
|
+
border-radius: 4px;
|
|
6495
6518
|
}
|
|
6496
6519
|
|
|
6497
6520
|
.e-tab .e-tab-header .e-hor-nav:focus .e-popup-up-icon:active,
|
|
@@ -6499,16 +6522,14 @@
|
|
|
6499
6522
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon:active,
|
|
6500
6523
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon:active {
|
|
6501
6524
|
background: #495057;
|
|
6502
|
-
border:
|
|
6525
|
+
border: 0;
|
|
6503
6526
|
border-radius: 4px;
|
|
6504
6527
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.075);
|
|
6505
|
-
border: 0;
|
|
6506
6528
|
}
|
|
6507
6529
|
|
|
6508
6530
|
.e-tab .e-tab-header .e-hor-nav:hover,
|
|
6509
6531
|
.e-tab .e-tab-header .e-hor-nav:not(.e-expended-nav):hover {
|
|
6510
6532
|
border: 0;
|
|
6511
|
-
border: 3px solid transparent;
|
|
6512
6533
|
}
|
|
6513
6534
|
|
|
6514
6535
|
.e-tab .e-tab-header .e-hor-nav:hover:active,
|
|
@@ -6536,11 +6557,10 @@
|
|
|
6536
6557
|
}
|
|
6537
6558
|
|
|
6538
6559
|
.e-tab .e-tab-header.e-horizontal-bottom .e-toolbar-item.e-active {
|
|
6539
|
-
border-bottom:
|
|
6560
|
+
border-bottom: 1px solid #444c54;
|
|
6540
6561
|
border-radius: 0 0 4px 4px;
|
|
6541
6562
|
border-top: 1px solid #212529;
|
|
6542
6563
|
border-top-color: #212529;
|
|
6543
|
-
border-bottom: 1px solid #444c54;
|
|
6544
6564
|
}
|
|
6545
6565
|
|
|
6546
6566
|
.e-tab .e-tab-header.e-vertical::before {
|
|
@@ -6654,6 +6674,10 @@
|
|
|
6654
6674
|
color: #0a58ca;
|
|
6655
6675
|
}
|
|
6656
6676
|
|
|
6677
|
+
.e-tab.e-focused > .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon {
|
|
6678
|
+
color: #adb5bd;
|
|
6679
|
+
}
|
|
6680
|
+
|
|
6657
6681
|
.e-tab.e-focused > .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
6658
6682
|
color: #adb5bd;
|
|
6659
6683
|
}
|
|
@@ -6829,7 +6853,7 @@
|
|
|
6829
6853
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-icon,
|
|
6830
6854
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-tab-text,
|
|
6831
6855
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item .e-tab-wrap:focus .e-close-icon {
|
|
6832
|
-
color: #
|
|
6856
|
+
color: #0a58ca;
|
|
6833
6857
|
}
|
|
6834
6858
|
|
|
6835
6859
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus {
|
|
@@ -6843,7 +6867,6 @@
|
|
|
6843
6867
|
|
|
6844
6868
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-text,
|
|
6845
6869
|
.e-tab.e-fill.e-focused .e-tab-header .e-toolbar-item.e-active .e-tab-wrap:focus .e-tab-icon {
|
|
6846
|
-
color: #ced4da;
|
|
6847
6870
|
color: #fff;
|
|
6848
6871
|
}
|
|
6849
6872
|
|
|
@@ -6877,6 +6900,16 @@
|
|
|
6877
6900
|
background: inherit;
|
|
6878
6901
|
}
|
|
6879
6902
|
|
|
6903
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-text,
|
|
6904
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-tab-icon,
|
|
6905
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon {
|
|
6906
|
+
color: #031633;
|
|
6907
|
+
}
|
|
6908
|
+
|
|
6909
|
+
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap .e-close-icon:hover {
|
|
6910
|
+
color: #fff;
|
|
6911
|
+
}
|
|
6912
|
+
|
|
6880
6913
|
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-wrap:hover {
|
|
6881
6914
|
background: transparent;
|
|
6882
6915
|
}
|
|
@@ -6891,21 +6924,6 @@
|
|
|
6891
6924
|
color: #fff;
|
|
6892
6925
|
}
|
|
6893
6926
|
|
|
6894
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-text,
|
|
6895
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-tab-icon,
|
|
6896
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6897
|
-
color: #031633;
|
|
6898
|
-
}
|
|
6899
|
-
|
|
6900
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon {
|
|
6901
|
-
color: #adb5bd;
|
|
6902
|
-
color: #fff;
|
|
6903
|
-
}
|
|
6904
|
-
|
|
6905
|
-
.e-tab.e-background .e-tab-header .e-toolbar-item .e-close-icon:hover {
|
|
6906
|
-
color: #fff;
|
|
6907
|
-
}
|
|
6908
|
-
|
|
6909
6927
|
.e-tab.e-background .e-tab-header .e-toolbar-item.e-active {
|
|
6910
6928
|
border: 0;
|
|
6911
6929
|
margin: 0;
|
|
@@ -6996,33 +7014,42 @@
|
|
|
6996
7014
|
color: #fff;
|
|
6997
7015
|
}
|
|
6998
7016
|
|
|
7017
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow,
|
|
6999
7018
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow {
|
|
7000
7019
|
color: #031633;
|
|
7001
7020
|
}
|
|
7002
7021
|
|
|
7022
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav .e-nav-arrow:hover,
|
|
7003
7023
|
.e-tab.e-background .e-tab-header .e-scroll-nav .e-nav-arrow:hover {
|
|
7004
7024
|
background: inherit;
|
|
7005
7025
|
color: #adb5bd;
|
|
7006
7026
|
}
|
|
7007
7027
|
|
|
7028
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow,
|
|
7008
7029
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow {
|
|
7009
7030
|
color: #adb5bd;
|
|
7010
7031
|
}
|
|
7011
7032
|
|
|
7033
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:focus .e-nav-arrow:hover,
|
|
7012
7034
|
.e-tab.e-background .e-tab-header .e-scroll-nav:focus .e-nav-arrow:hover {
|
|
7013
7035
|
background: inherit;
|
|
7014
7036
|
color: #adb5bd;
|
|
7015
7037
|
}
|
|
7016
7038
|
|
|
7039
|
+
.e-tab.e-background .e-tab-header .e-hscroll:not(.e-scroll-device) .e-scroll-nav:active::after,
|
|
7017
7040
|
.e-tab.e-background .e-tab-header .e-scroll-nav:active::after {
|
|
7018
7041
|
animation: none;
|
|
7019
7042
|
}
|
|
7020
7043
|
|
|
7044
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon,
|
|
7045
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon,
|
|
7021
7046
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon,
|
|
7022
7047
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon {
|
|
7023
7048
|
color: #031633;
|
|
7024
7049
|
}
|
|
7025
7050
|
|
|
7051
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-up-icon:hover,
|
|
7052
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav) .e-popup-down-icon:hover,
|
|
7026
7053
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-up-icon:hover,
|
|
7027
7054
|
.e-tab.e-background .e-tab-header .e-hor-nav .e-popup-down-icon:hover {
|
|
7028
7055
|
background: inherit;
|
|
@@ -7031,15 +7058,19 @@
|
|
|
7031
7058
|
background: #495057;
|
|
7032
7059
|
}
|
|
7033
7060
|
|
|
7061
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-up-icon,
|
|
7062
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):focus .e-popup-down-icon,
|
|
7034
7063
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-up-icon,
|
|
7035
7064
|
.e-tab.e-background .e-tab-header .e-hor-nav:focus .e-popup-down-icon {
|
|
7036
7065
|
color: #adb5bd;
|
|
7037
7066
|
}
|
|
7038
7067
|
|
|
7068
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav):active::after,
|
|
7039
7069
|
.e-tab.e-background .e-tab-header .e-hor-nav:active::after {
|
|
7040
7070
|
animation: none;
|
|
7041
7071
|
}
|
|
7042
7072
|
|
|
7073
|
+
.e-tab.e-background .e-tab-header .e-hor-nav:not(.e-expended-nav).e-nav-active .e-popup-up-icon,
|
|
7043
7074
|
.e-tab.e-background .e-tab-header .e-hor-nav.e-nav-active .e-popup-up-icon {
|
|
7044
7075
|
color: #adb5bd;
|
|
7045
7076
|
}
|
|
@@ -7384,6 +7415,35 @@
|
|
|
7384
7415
|
height: 42px;
|
|
7385
7416
|
}
|
|
7386
7417
|
|
|
7418
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text,
|
|
7419
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
7420
|
+
max-width: calc(100% - 29px);
|
|
7421
|
+
}
|
|
7422
|
+
|
|
7423
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
7424
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text,
|
|
7425
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
7426
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
7427
|
+
max-width: calc(100% - 65px);
|
|
7428
|
+
}
|
|
7429
|
+
|
|
7430
|
+
.e-bigger .e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text,
|
|
7431
|
+
.e-treeview.e-bigger.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
7432
|
+
max-width: calc(100% - 101px);
|
|
7433
|
+
}
|
|
7434
|
+
|
|
7435
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
7436
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-img + .e-list-text,
|
|
7437
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-text,
|
|
7438
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-img + .e-list-text {
|
|
7439
|
+
max-width: calc(100% - 35px);
|
|
7440
|
+
}
|
|
7441
|
+
|
|
7442
|
+
.e-bigger .e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text,
|
|
7443
|
+
.e-treeview.e-bigger.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
7444
|
+
max-width: calc(100% - 71px);
|
|
7445
|
+
}
|
|
7446
|
+
|
|
7387
7447
|
.e-bigger .e-treeview .e-list-text,
|
|
7388
7448
|
.e-treeview.e-bigger .e-list-text {
|
|
7389
7449
|
line-height: 40px;
|
|
@@ -7557,9 +7617,40 @@
|
|
|
7557
7617
|
|
|
7558
7618
|
.e-treeview.e-text-wrap .e-list-text {
|
|
7559
7619
|
white-space: normal;
|
|
7620
|
+
word-break: break-word;
|
|
7621
|
+
}
|
|
7622
|
+
|
|
7623
|
+
.e-treeview.e-text-wrap.e-ie-wrap .e-list-text {
|
|
7560
7624
|
word-break: break-all;
|
|
7561
7625
|
}
|
|
7562
7626
|
|
|
7627
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text,
|
|
7628
|
+
.e-treeview.e-text-wrap .e-editing .e-list-text .e-input-group {
|
|
7629
|
+
max-width: calc(100% - 2px);
|
|
7630
|
+
}
|
|
7631
|
+
|
|
7632
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-text {
|
|
7633
|
+
max-width: calc(100% - 21px);
|
|
7634
|
+
}
|
|
7635
|
+
|
|
7636
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-text,
|
|
7637
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-img + .e-list-text {
|
|
7638
|
+
max-width: calc(100% - 54px);
|
|
7639
|
+
}
|
|
7640
|
+
|
|
7641
|
+
.e-treeview.e-text-wrap .e-checkbox-wrapper + .e-list-icon + .e-list-img + .e-list-text {
|
|
7642
|
+
max-width: calc(100% - 82px);
|
|
7643
|
+
}
|
|
7644
|
+
|
|
7645
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-text,
|
|
7646
|
+
.e-treeview.e-text-wrap .e-list-img + .e-list-text {
|
|
7647
|
+
max-width: calc(100% - 32px);
|
|
7648
|
+
}
|
|
7649
|
+
|
|
7650
|
+
.e-treeview.e-text-wrap .e-list-icon + .e-list-img + .e-list-text {
|
|
7651
|
+
max-width: calc(100% - 60px);
|
|
7652
|
+
}
|
|
7653
|
+
|
|
7563
7654
|
.e-treeview .e-ul {
|
|
7564
7655
|
margin: 0;
|
|
7565
7656
|
padding: 0 0 0 12px;
|
|
@@ -7737,7 +7828,7 @@
|
|
|
7737
7828
|
}
|
|
7738
7829
|
|
|
7739
7830
|
.e-treeview .e-sibling {
|
|
7740
|
-
width:
|
|
7831
|
+
width: 144px;
|
|
7741
7832
|
position: absolute;
|
|
7742
7833
|
z-index: 2;
|
|
7743
7834
|
}
|
|
@@ -8323,7 +8414,6 @@ ejs-sidebar {
|
|
|
8323
8414
|
background-color: rgba(0, 0, 0, 0.4);
|
|
8324
8415
|
height: 100%;
|
|
8325
8416
|
left: 0;
|
|
8326
|
-
opacity: .5;
|
|
8327
8417
|
pointer-events: auto;
|
|
8328
8418
|
top: 0;
|
|
8329
8419
|
width: auto;
|
|
@@ -8491,7 +8581,7 @@ ejs-sidebar {
|
|
|
8491
8581
|
-webkit-user-select: none;
|
|
8492
8582
|
-ms-user-select: none;
|
|
8493
8583
|
user-select: none;
|
|
8494
|
-
font-size:
|
|
8584
|
+
font-size: 0;
|
|
8495
8585
|
padding: 0;
|
|
8496
8586
|
text-align: left;
|
|
8497
8587
|
white-space: nowrap;
|
|
@@ -8556,6 +8646,7 @@ ejs-sidebar {
|
|
|
8556
8646
|
position: relative;
|
|
8557
8647
|
display: -ms-inline-flexbox;
|
|
8558
8648
|
display: inline-flex;
|
|
8649
|
+
font-size: 14px;
|
|
8559
8650
|
height: 50px;
|
|
8560
8651
|
line-height: 50px;
|
|
8561
8652
|
padding: 0 12px;
|
|
@@ -8627,7 +8718,7 @@ ejs-sidebar {
|
|
|
8627
8718
|
.e-menu-wrapper .e-ul,
|
|
8628
8719
|
.e-menu-container .e-ul {
|
|
8629
8720
|
font-size: 14px;
|
|
8630
|
-
padding:
|
|
8721
|
+
padding: 0;
|
|
8631
8722
|
min-width: 120px;
|
|
8632
8723
|
}
|
|
8633
8724
|
|
|
@@ -9540,9 +9631,9 @@ ejs-sidebar {
|
|
|
9540
9631
|
|
|
9541
9632
|
.e-menu-wrapper .e-ul .e-menu-item.e-selected,
|
|
9542
9633
|
.e-menu-container .e-ul .e-menu-item.e-selected {
|
|
9543
|
-
background-color: #
|
|
9634
|
+
background-color: #0d6efd;
|
|
9544
9635
|
color: #fff;
|
|
9545
|
-
outline: 0 solid #
|
|
9636
|
+
outline: 0 solid #0d6efd;
|
|
9546
9637
|
outline-offset: 0;
|
|
9547
9638
|
}
|
|
9548
9639
|
|
|
@@ -9605,7 +9696,7 @@ ejs-sidebar {
|
|
|
9605
9696
|
|
|
9606
9697
|
.e-menu-wrapper.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active,
|
|
9607
9698
|
.e-menu-container.e-menu-popup .e-menu-vscroll.e-vscroll .e-scroll-nav:active {
|
|
9608
|
-
background: #
|
|
9699
|
+
background: #0d6efd;
|
|
9609
9700
|
}
|
|
9610
9701
|
|
|
9611
9702
|
.e-menu-wrapper.e-hamburger .e-menu-header,
|
|
@@ -9624,7 +9715,8 @@ ejs-sidebar {
|
|
|
9624
9715
|
}
|
|
9625
9716
|
|
|
9626
9717
|
/*! breadcrumb icons */
|
|
9627
|
-
.e-breadcrumb .e-breadcrumb-collapsed::before
|
|
9718
|
+
.e-breadcrumb .e-breadcrumb-collapsed::before,
|
|
9719
|
+
.e-breadcrumb .e-breadcrumb-menu::before {
|
|
9628
9720
|
content: '\e71c';
|
|
9629
9721
|
}
|
|
9630
9722
|
|
|
@@ -9646,6 +9738,31 @@ ejs-sidebar {
|
|
|
9646
9738
|
display: block;
|
|
9647
9739
|
}
|
|
9648
9740
|
|
|
9741
|
+
.e-breadcrumb.e-breadcrumb-wrap-mode {
|
|
9742
|
+
display: -ms-flexbox;
|
|
9743
|
+
display: flex;
|
|
9744
|
+
}
|
|
9745
|
+
|
|
9746
|
+
.e-breadcrumb .e-breadcrumb-first-ol {
|
|
9747
|
+
-ms-flex-align: start;
|
|
9748
|
+
align-items: flex-start;
|
|
9749
|
+
-ms-flex-negative: 0;
|
|
9750
|
+
flex-shrink: 0;
|
|
9751
|
+
padding-right: 0;
|
|
9752
|
+
}
|
|
9753
|
+
|
|
9754
|
+
.e-breadcrumb .e-breadcrumb-wrapped-ol {
|
|
9755
|
+
-ms-flex-wrap: wrap;
|
|
9756
|
+
flex-wrap: wrap;
|
|
9757
|
+
overflow: hidden;
|
|
9758
|
+
padding-left: 0;
|
|
9759
|
+
}
|
|
9760
|
+
|
|
9761
|
+
.e-breadcrumb.e-breadcrumb-scroll-mode {
|
|
9762
|
+
line-height: 30px;
|
|
9763
|
+
overflow: auto;
|
|
9764
|
+
}
|
|
9765
|
+
|
|
9649
9766
|
.e-breadcrumb ol {
|
|
9650
9767
|
-ms-flex-align: center;
|
|
9651
9768
|
align-items: center;
|
|
@@ -9668,14 +9785,19 @@ ejs-sidebar {
|
|
|
9668
9785
|
align-items: center;
|
|
9669
9786
|
display: -ms-flexbox;
|
|
9670
9787
|
display: flex;
|
|
9671
|
-
|
|
9788
|
+
-ms-flex-negative: 0;
|
|
9789
|
+
flex-shrink: 0;
|
|
9790
|
+
}
|
|
9791
|
+
|
|
9792
|
+
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
9793
|
+
padding: 4px 2px;
|
|
9672
9794
|
}
|
|
9673
9795
|
|
|
9674
|
-
.e-breadcrumb .e-breadcrumb-item.e-focus {
|
|
9796
|
+
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9675
9797
|
padding: 1px;
|
|
9676
9798
|
}
|
|
9677
9799
|
|
|
9678
|
-
.e-breadcrumb .e-breadcrumb-item.e-
|
|
9800
|
+
.e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text:focus {
|
|
9679
9801
|
padding: 2px 4px;
|
|
9680
9802
|
}
|
|
9681
9803
|
|
|
@@ -9733,7 +9855,7 @@ ejs-sidebar {
|
|
|
9733
9855
|
padding: 0;
|
|
9734
9856
|
}
|
|
9735
9857
|
|
|
9736
|
-
.e-breadcrumb .e-breadcrumb-item.e-icon-item {
|
|
9858
|
+
.e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text {
|
|
9737
9859
|
padding: 3px 5px;
|
|
9738
9860
|
}
|
|
9739
9861
|
|
|
@@ -9765,11 +9887,22 @@ ejs-sidebar {
|
|
|
9765
9887
|
padding-left: 5px;
|
|
9766
9888
|
}
|
|
9767
9889
|
|
|
9768
|
-
.e-breadcrumb .e-breadcrumb-collapsed
|
|
9890
|
+
.e-breadcrumb .e-breadcrumb-collapsed,
|
|
9891
|
+
.e-breadcrumb .e-breadcrumb-menu {
|
|
9769
9892
|
cursor: pointer;
|
|
9770
9893
|
font-size: 16px;
|
|
9771
9894
|
padding: 4px 4px;
|
|
9772
9895
|
vertical-align: bottom;
|
|
9896
|
+
margin-top: 2px;
|
|
9897
|
+
}
|
|
9898
|
+
|
|
9899
|
+
.e-breadcrumb .e-breadcrumb-menu {
|
|
9900
|
+
display: inline-block;
|
|
9901
|
+
}
|
|
9902
|
+
|
|
9903
|
+
.e-breadcrumb .e-breadcrumb-item-wrapper {
|
|
9904
|
+
display: -ms-flexbox;
|
|
9905
|
+
display: flex;
|
|
9773
9906
|
}
|
|
9774
9907
|
|
|
9775
9908
|
.e-breadcrumb.e-icon-right .e-breadcrumb-icon,
|
|
@@ -9778,7 +9911,8 @@ ejs-sidebar {
|
|
|
9778
9911
|
padding-right: 0;
|
|
9779
9912
|
}
|
|
9780
9913
|
|
|
9781
|
-
.e-breadcrumb.e-rtl
|
|
9914
|
+
.e-breadcrumb.e-rtl.e-icon-right .e-breadcrumb-icon,
|
|
9915
|
+
.e-breadcrumb.e-rtl .e-icon-right .e-breadcrumb-icon {
|
|
9782
9916
|
padding-left: 0;
|
|
9783
9917
|
padding-right: 8px;
|
|
9784
9918
|
}
|
|
@@ -9789,27 +9923,134 @@ ejs-sidebar {
|
|
|
9789
9923
|
|
|
9790
9924
|
.e-breadcrumb.e-disabled .e-breadcrumb-item,
|
|
9791
9925
|
.e-breadcrumb.e-disabled .e-breadcrumb-separator,
|
|
9792
|
-
.e-breadcrumb.e-disabled .e-breadcrumb-collapsed
|
|
9926
|
+
.e-breadcrumb.e-disabled .e-breadcrumb-collapsed,
|
|
9927
|
+
.e-breadcrumb.e-disabled .e-breadcrumb-menu {
|
|
9793
9928
|
pointer-events: none;
|
|
9794
9929
|
}
|
|
9795
9930
|
|
|
9796
|
-
.e-
|
|
9797
|
-
|
|
9798
|
-
|
|
9931
|
+
.e-breadcrumb-popup {
|
|
9932
|
+
border: 1px solid #444c54;
|
|
9933
|
+
border-radius: 4px;
|
|
9934
|
+
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
9935
|
+
position: absolute;
|
|
9936
|
+
}
|
|
9937
|
+
|
|
9938
|
+
.e-breadcrumb-popup ul {
|
|
9939
|
+
margin: 0;
|
|
9940
|
+
padding: 0;
|
|
9941
|
+
}
|
|
9942
|
+
|
|
9943
|
+
.e-breadcrumb-popup .e-breadcrumb-item {
|
|
9944
|
+
list-style-type: none;
|
|
9945
|
+
white-space: nowrap;
|
|
9946
|
+
}
|
|
9947
|
+
|
|
9948
|
+
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text {
|
|
9949
|
+
-ms-flex-align: center;
|
|
9950
|
+
align-items: center;
|
|
9951
|
+
display: -ms-flexbox;
|
|
9952
|
+
display: flex;
|
|
9953
|
+
font-size: 14px;
|
|
9954
|
+
height: 32px;
|
|
9955
|
+
line-height: 32px;
|
|
9956
|
+
padding: 0 12px;
|
|
9957
|
+
width: 100%;
|
|
9958
|
+
}
|
|
9959
|
+
|
|
9960
|
+
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text .e-anchor-wrap {
|
|
9961
|
+
-ms-flex-align: inherit;
|
|
9962
|
+
align-items: inherit;
|
|
9963
|
+
display: inherit;
|
|
9964
|
+
width: inherit;
|
|
9799
9965
|
}
|
|
9800
9966
|
|
|
9801
|
-
.e-
|
|
9802
|
-
|
|
9967
|
+
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-icon {
|
|
9968
|
+
font-size: 14px;
|
|
9969
|
+
padding-right: 8px;
|
|
9970
|
+
}
|
|
9971
|
+
|
|
9972
|
+
.e-breadcrumb-popup .e-breadcrumb-item.e-icon-item .e-breadcrumb-icon {
|
|
9973
|
+
padding: 0;
|
|
9974
|
+
}
|
|
9975
|
+
|
|
9976
|
+
.e-breadcrumb-popup .e-breadcrumb-item a.e-breadcrumb-text {
|
|
9977
|
+
text-decoration: none;
|
|
9978
|
+
}
|
|
9979
|
+
|
|
9980
|
+
.e-breadcrumb-popup.e-icon-right .e-breadcrumb-icon,
|
|
9981
|
+
.e-breadcrumb-popup .e-icon-right .e-breadcrumb-icon, .e-breadcrumb-popup.e-rtl .e-breadcrumb-icon {
|
|
9982
|
+
padding-left: 8px;
|
|
9983
|
+
padding-right: 0;
|
|
9984
|
+
}
|
|
9985
|
+
|
|
9986
|
+
.e-breadcrumb-popup.e-icon-right .e-breadcrumb-icon,
|
|
9987
|
+
.e-breadcrumb-popup .e-icon-right .e-breadcrumb-icon {
|
|
9988
|
+
display: -ms-flexbox;
|
|
9989
|
+
display: flex;
|
|
9990
|
+
-ms-flex-positive: 1;
|
|
9991
|
+
flex-grow: 1;
|
|
9992
|
+
-ms-flex-pack: end;
|
|
9993
|
+
justify-content: flex-end;
|
|
9994
|
+
}
|
|
9995
|
+
|
|
9996
|
+
.e-breadcrumb-popup.e-rtl.e-icon-right .e-breadcrumb-icon,
|
|
9997
|
+
.e-breadcrumb-popup.e-rtl .e-icon-right .e-breadcrumb-icon {
|
|
9998
|
+
padding-left: 0;
|
|
9999
|
+
padding-right: 8px;
|
|
10000
|
+
}
|
|
10001
|
+
|
|
10002
|
+
.e-bigger.e-breadcrumb-popup .e-breadcrumb-text,
|
|
10003
|
+
.e-bigger .e-breadcrumb-popup .e-breadcrumb-text {
|
|
10004
|
+
font-size: 16px;
|
|
10005
|
+
height: 36px;
|
|
10006
|
+
line-height: 36px;
|
|
10007
|
+
}
|
|
10008
|
+
|
|
10009
|
+
.e-bigger.e-breadcrumb-popup .e-breadcrumb-text .e-breadcrumb-icon,
|
|
10010
|
+
.e-bigger .e-breadcrumb-popup .e-breadcrumb-text .e-breadcrumb-icon {
|
|
10011
|
+
font-size: 16px;
|
|
10012
|
+
padding-right: 8px;
|
|
10013
|
+
}
|
|
10014
|
+
|
|
10015
|
+
.e-bigger.e-breadcrumb-popup .e-icon-item .e-breadcrumb-text .e-breadcrumb-icon,
|
|
10016
|
+
.e-bigger .e-breadcrumb-popup .e-icon-item .e-breadcrumb-text .e-breadcrumb-icon {
|
|
10017
|
+
padding: 0;
|
|
10018
|
+
}
|
|
10019
|
+
|
|
10020
|
+
.e-bigger.e-breadcrumb-popup.e-icon-right .e-breadcrumb-icon,
|
|
10021
|
+
.e-bigger.e-breadcrumb-popup .e-icon-right .e-breadcrumb-icon, .e-bigger.e-breadcrumb-popup.e-rtl .e-breadcrumb-icon,
|
|
10022
|
+
.e-bigger .e-breadcrumb-popup.e-icon-right .e-breadcrumb-icon,
|
|
10023
|
+
.e-bigger .e-breadcrumb-popup .e-icon-right .e-breadcrumb-icon,
|
|
10024
|
+
.e-bigger .e-breadcrumb-popup.e-rtl .e-breadcrumb-icon {
|
|
10025
|
+
padding-left: 8px;
|
|
10026
|
+
padding-right: 0;
|
|
10027
|
+
}
|
|
10028
|
+
|
|
10029
|
+
.e-bigger.e-breadcrumb-popup.e-rtl.e-icon-right .e-breadcrumb-icon,
|
|
10030
|
+
.e-bigger.e-breadcrumb-popup.e-rtl .e-icon-right .e-breadcrumb-icon,
|
|
10031
|
+
.e-bigger .e-breadcrumb-popup.e-rtl.e-icon-right .e-breadcrumb-icon,
|
|
10032
|
+
.e-bigger .e-breadcrumb-popup.e-rtl .e-icon-right .e-breadcrumb-icon {
|
|
10033
|
+
padding-left: 0;
|
|
10034
|
+
padding-right: 8px;
|
|
10035
|
+
}
|
|
10036
|
+
|
|
10037
|
+
.e-bigger.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text,
|
|
10038
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text {
|
|
10039
|
+
padding: 4px 2px;
|
|
10040
|
+
}
|
|
10041
|
+
|
|
10042
|
+
.e-bigger.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus,
|
|
10043
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9803
10044
|
padding: 1px;
|
|
9804
10045
|
}
|
|
9805
10046
|
|
|
9806
|
-
.e-bigger.e-breadcrumb .e-breadcrumb-item.e-
|
|
9807
|
-
.e-bigger .e-breadcrumb .e-breadcrumb-item.e-
|
|
10047
|
+
.e-bigger.e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text:focus,
|
|
10048
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text:focus {
|
|
9808
10049
|
padding: 1px 3px;
|
|
9809
10050
|
}
|
|
9810
10051
|
|
|
9811
|
-
.e-bigger.e-breadcrumb .e-breadcrumb-item.e-icon-item,
|
|
9812
|
-
.e-bigger .e-breadcrumb .e-breadcrumb-item.e-icon-item {
|
|
10052
|
+
.e-bigger.e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text,
|
|
10053
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-item.e-icon-item .e-breadcrumb-text {
|
|
9813
10054
|
padding: 2px 4px;
|
|
9814
10055
|
}
|
|
9815
10056
|
|
|
@@ -9846,7 +10087,9 @@ ejs-sidebar {
|
|
|
9846
10087
|
}
|
|
9847
10088
|
|
|
9848
10089
|
.e-bigger.e-breadcrumb .e-breadcrumb-collapsed,
|
|
9849
|
-
.e-bigger
|
|
10090
|
+
.e-bigger.e-breadcrumb .e-breadcrumb-menu,
|
|
10091
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-collapsed,
|
|
10092
|
+
.e-bigger .e-breadcrumb .e-breadcrumb-menu {
|
|
9850
10093
|
font-size: 18px;
|
|
9851
10094
|
padding: 5px 5px;
|
|
9852
10095
|
}
|
|
@@ -9889,11 +10132,11 @@ ejs-sidebar {
|
|
|
9889
10132
|
color: #adb5bd;
|
|
9890
10133
|
}
|
|
9891
10134
|
|
|
9892
|
-
.e-breadcrumb .e-breadcrumb-item.e-focus {
|
|
10135
|
+
.e-breadcrumb .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
9893
10136
|
border: 1px solid #0d6efd;
|
|
9894
10137
|
}
|
|
9895
10138
|
|
|
9896
|
-
.e-breadcrumb .e-breadcrumb-item
|
|
10139
|
+
.e-breadcrumb .e-breadcrumb-item[data-active-item] .e-breadcrumb-text {
|
|
9897
10140
|
color: #7b848d;
|
|
9898
10141
|
font-weight: 400;
|
|
9899
10142
|
}
|
|
@@ -9906,21 +10149,25 @@ ejs-sidebar {
|
|
|
9906
10149
|
color: #7b848d;
|
|
9907
10150
|
}
|
|
9908
10151
|
|
|
9909
|
-
.e-breadcrumb .e-breadcrumb-collapsed
|
|
10152
|
+
.e-breadcrumb .e-breadcrumb-collapsed,
|
|
10153
|
+
.e-breadcrumb .e-breadcrumb-menu {
|
|
9910
10154
|
color: #adb5bd;
|
|
9911
10155
|
}
|
|
9912
10156
|
|
|
9913
|
-
.e-breadcrumb .e-breadcrumb-collapsed:hover
|
|
10157
|
+
.e-breadcrumb .e-breadcrumb-collapsed:hover,
|
|
10158
|
+
.e-breadcrumb .e-breadcrumb-menu:hover {
|
|
9914
10159
|
background-color: #31373d;
|
|
9915
10160
|
color: #adb5bd;
|
|
9916
10161
|
}
|
|
9917
10162
|
|
|
9918
|
-
.e-breadcrumb .e-breadcrumb-collapsed:active
|
|
10163
|
+
.e-breadcrumb .e-breadcrumb-collapsed:active,
|
|
10164
|
+
.e-breadcrumb .e-breadcrumb-menu:active {
|
|
9919
10165
|
background-color: #495057;
|
|
9920
10166
|
color: #adb5bd;
|
|
9921
10167
|
}
|
|
9922
10168
|
|
|
9923
|
-
.e-breadcrumb .e-breadcrumb-collapsed:focus
|
|
10169
|
+
.e-breadcrumb .e-breadcrumb-collapsed:focus,
|
|
10170
|
+
.e-breadcrumb .e-breadcrumb-menu:focus {
|
|
9924
10171
|
background-color: #31373d;
|
|
9925
10172
|
color: #adb5bd;
|
|
9926
10173
|
}
|
|
@@ -9936,3 +10183,21 @@ ejs-sidebar {
|
|
|
9936
10183
|
.e-breadcrumb.e-disabled .e-breadcrumb-separator .e-breadcrumb-icon {
|
|
9937
10184
|
color: #6c757d;
|
|
9938
10185
|
}
|
|
10186
|
+
|
|
10187
|
+
.e-breadcrumb-popup {
|
|
10188
|
+
background-color: #343a40;
|
|
10189
|
+
}
|
|
10190
|
+
|
|
10191
|
+
.e-breadcrumb-popup .e-breadcrumb-text {
|
|
10192
|
+
color: #7b848d;
|
|
10193
|
+
}
|
|
10194
|
+
|
|
10195
|
+
.e-breadcrumb-popup .e-breadcrumb-text:hover {
|
|
10196
|
+
background-color: #444c54;
|
|
10197
|
+
color: #fff;
|
|
10198
|
+
}
|
|
10199
|
+
|
|
10200
|
+
.e-breadcrumb-popup .e-breadcrumb-item .e-breadcrumb-text:focus {
|
|
10201
|
+
background-color: #444c54;
|
|
10202
|
+
color: #fff;
|
|
10203
|
+
}
|