@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
|
@@ -35,7 +35,7 @@ $tbar-press-font: $active-font-color !default;
|
|
|
35
35
|
$tbar-default-font-overlay: rgba($default-icon-color, .4) !default;
|
|
36
36
|
$tbar-active-font-color: $theme-primary-font !default;
|
|
37
37
|
$tbar-default-icon-overlay: rgba($default-icon-color, .4) !default;
|
|
38
|
-
$tbar-popup-rtl-border-width: 0
|
|
38
|
+
$tbar-popup-rtl-border-width: 0 1px 0 0 !default;
|
|
39
39
|
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
40
40
|
$tbar-select-font: $tbar-hover-font !default;
|
|
41
41
|
$tbar-pressed-font: $tbar-hover-font !default;
|
|
@@ -108,7 +108,7 @@ $tbar-pop-btn-txt-nrml-pad: 0 10px !default;
|
|
|
108
108
|
$tbar-pop-btn-txt-bgr-pad: 0 12.5px !default;
|
|
109
109
|
|
|
110
110
|
$tbar-nav-press-border: 0 !default;
|
|
111
|
-
$tbar-nav-hover-border:
|
|
111
|
+
$tbar-nav-hover-border: 1px solid $tbar-default-border !default;
|
|
112
112
|
$tbar-nav-focus-border: 0 !default;
|
|
113
113
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
114
114
|
$tbar-btn-border-radius: 0 !default;
|
|
@@ -188,7 +188,7 @@ $tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
|
188
188
|
$tbar-popup-nav-hover-color: $tbar-hover-font !default;
|
|
189
189
|
$tbar-popup-nav-hover-icons-color: $tbar-hover-font !default;
|
|
190
190
|
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
191
|
-
$tbar-popup-nav-hover-border-size: 0 !default;
|
|
191
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
192
192
|
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
193
193
|
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
194
194
|
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
@@ -53,7 +53,7 @@ $tbar-separator-size: 1px !default;
|
|
|
53
53
|
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
54
54
|
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
55
55
|
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
56
|
-
$tbar-popup-rtl-border-width: 0
|
|
56
|
+
$tbar-popup-rtl-border-width: 0 1px 0 0 !default;
|
|
57
57
|
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
58
58
|
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
59
59
|
$tbar-nrml-size: 40px !default;
|
|
@@ -95,7 +95,7 @@ $tbar-pop-btn-txt-nrml-pad: 0 10px !default;
|
|
|
95
95
|
$tbar-pop-btn-txt-bgr-pad: 0 12.5px !default;
|
|
96
96
|
|
|
97
97
|
$tbar-nav-press-border: 0 !default;
|
|
98
|
-
$tbar-nav-hover-border:
|
|
98
|
+
$tbar-nav-hover-border: 1px solid $tbar-default-border !default;
|
|
99
99
|
$tbar-nav-focus-border: 0 !default;
|
|
100
100
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
101
101
|
$tbar-btn-border-radius: 0 !default;
|
|
@@ -176,7 +176,7 @@ $tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
|
176
176
|
$tbar-popup-nav-hover-color: $tbar-hover-font !default;
|
|
177
177
|
$tbar-popup-nav-hover-icons-color: $tbar-press-font !default;
|
|
178
178
|
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
179
|
-
$tbar-popup-nav-hover-border-size: 0 !default;
|
|
179
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
180
180
|
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
181
181
|
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
182
182
|
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
@@ -96,7 +96,7 @@ $tbar-pop-btn-txt-nrml-pad: 0 10px !default;
|
|
|
96
96
|
$tbar-pop-btn-txt-bgr-pad: 0 12.5px !default;
|
|
97
97
|
|
|
98
98
|
$tbar-nav-press-border: 0 !default;
|
|
99
|
-
$tbar-nav-hover-border:
|
|
99
|
+
$tbar-nav-hover-border: 1px solid $hover-border !default;
|
|
100
100
|
$tbar-nav-focus-border: 0 !default;
|
|
101
101
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
102
102
|
$tbar-btn-border-radius: 0 !default;
|
|
@@ -119,7 +119,7 @@ $tbar-pop-btn-txt-nrml-pad: 0 10px !default;
|
|
|
119
119
|
$tbar-pop-btn-txt-bgr-pad: 0 12.5px !default;
|
|
120
120
|
|
|
121
121
|
$tbar-nav-press-border: 0 !default;
|
|
122
|
-
$tbar-nav-hover-border:
|
|
122
|
+
$tbar-nav-hover-border: 1px solid $hover-border !default;
|
|
123
123
|
$tbar-nav-focus-border: 0 !default;
|
|
124
124
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
125
125
|
$tbar-btn-border-radius: 0 !default;
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
&:first-child:not(.e-toolbar-multirow) {
|
|
21
|
+
|
|
22
|
+
> .e-toolbar-item:last-child,
|
|
23
|
+
> .e-toolbar-right .e-toolbar-item:last-child {
|
|
24
|
+
margin-right: $tbar-item-bgr-mrgn;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
20
28
|
.e-hscroll-bar .e-hscroll-content {
|
|
21
29
|
|
|
22
30
|
> .e-toolbar-item:last-child {
|
|
@@ -50,7 +50,7 @@ $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
|
50
50
|
$tbar-btn-box-shadow: none !default;
|
|
51
51
|
$tbar-press-font: $active-font-color !default;
|
|
52
52
|
$tbar-default-icon-overlay: rgba($grey-dark-font, .3) !default;
|
|
53
|
-
$tbar-popup-rtl-border-width: 0
|
|
53
|
+
$tbar-popup-rtl-border-width: 0 1px 0 0 !default;
|
|
54
54
|
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
55
55
|
$tbar-default-bg: $grey-900 !default;
|
|
56
56
|
$tbar-items-default-bg: $tbar-default-bg !default;
|
|
@@ -110,7 +110,7 @@ $tbar-pop-btn-nrml-padding: $tbar-zero-value 16px !default;
|
|
|
110
110
|
$tbar-item-pop-bg-color: transparent !default;
|
|
111
111
|
|
|
112
112
|
$tbar-nav-press-border: 0 !default;
|
|
113
|
-
$tbar-nav-hover-border:
|
|
113
|
+
$tbar-nav-hover-border: 1px solid $grey-700 !default;
|
|
114
114
|
$tbar-nav-focus-border: 0 !default;
|
|
115
115
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
116
116
|
$tbar-border-nav-active-type: none !default;
|
|
@@ -187,7 +187,7 @@ $tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
|
187
187
|
$tbar-popup-nav-hover-color: $tbar-hover-font !default;
|
|
188
188
|
$tbar-popup-nav-hover-icons-color: $tbar-default-icon-color !default;
|
|
189
189
|
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
190
|
-
$tbar-popup-nav-hover-border-size: 0 !default;
|
|
190
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
191
191
|
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
192
192
|
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
193
193
|
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
@@ -93,7 +93,7 @@ $tbar-pop-btn-nrml-padding: $tbar-zero-value 16px !default;
|
|
|
93
93
|
|
|
94
94
|
$tbar-btn-border: none !default;
|
|
95
95
|
$tbar-nav-press-border: 0 !default;
|
|
96
|
-
$tbar-nav-hover-border:
|
|
96
|
+
$tbar-nav-hover-border: 1px solid rgba($grey-black, .12) !default;
|
|
97
97
|
$tbar-nav-focus-border: 0 !default;
|
|
98
98
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
99
99
|
$tbar-border-nav-active-type: none !default;
|
|
@@ -104,7 +104,7 @@ $tbar-separator-size: .5px !default;
|
|
|
104
104
|
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
105
105
|
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
106
106
|
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
107
|
-
$tbar-popup-rtl-border-width: 0
|
|
107
|
+
$tbar-popup-rtl-border-width: 0 1px 0 0 !default;
|
|
108
108
|
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
109
109
|
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
110
110
|
$tbar-item-pop-bg-color: transparent !default;
|
|
@@ -177,7 +177,7 @@ $tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
|
177
177
|
$tbar-popup-nav-hover-color: $tbar-hover-font !default;
|
|
178
178
|
$tbar-popup-nav-hover-icons-color: $tbar-default-icon-color !default;
|
|
179
179
|
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
180
|
-
$tbar-popup-nav-hover-border-size: 0 !default;
|
|
180
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
181
181
|
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
182
182
|
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
183
183
|
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3-definition.scss';
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
/*! Toolbar's material3 theme wise override definitions and variables */
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
$tbar-skin: 'material3' !default;
|
|
4
|
+
|
|
5
|
+
//font definitions
|
|
6
|
+
$tbar-icons-bgr-font-size: $text-2xl;
|
|
7
|
+
$tbar-btn-font-size: $text-lg !default;
|
|
8
|
+
$tbar-btn-txt-font-size: $text-sm !default;
|
|
9
|
+
|
|
10
|
+
// box shadow definitions
|
|
11
|
+
$tbar-pop-box-shadow: $shadow-md;
|
|
12
|
+
$tbar-btn-box-shadow: none !default;
|
|
13
|
+
$tbar-box-shadow: none !default;
|
|
14
|
+
$tbar-nav-pressed-box-shadow: none !default;
|
|
15
|
+
$tbar-btn-pressed-box-shadow: none !default;
|
|
16
|
+
|
|
17
|
+
// padding definitions
|
|
18
|
+
$tbar-item-bgr-padding: 8px 4px 8px 4px !default;
|
|
19
|
+
$tbar-item-nrml-padding: 8px 4px 8px 4px !default;
|
|
20
|
+
$tbar-btn-nrml-padding: 0 7px !default;
|
|
21
|
+
$tbar-btn-bgr-padding: 0 8px !default;
|
|
22
|
+
$tbar-btn-bgr-focus-padding: 0 8px !default;
|
|
23
|
+
$tbar-btn-icn-nrml-padding: 4px !default;
|
|
24
|
+
$tbar-btn-icn-bgr-padding: 4px !default;
|
|
25
|
+
$tbar-rtl-btn-icn-nrml-padding: 4px !default;
|
|
26
|
+
$tbar-rtl-btn-icn-bgr-padding: 4px !default;
|
|
27
|
+
$tbar-btn-icn-right-bgr-padding: 4px !default;
|
|
28
|
+
$tbar-btn-icn-right-nrml-padding: 4px !default;
|
|
29
|
+
$tbar-rtl-btn-icn-right-nrml-padding: 4px !default;
|
|
30
|
+
$tbar-rtl-btn-icn-right-bgr-padding: 4px !default;
|
|
31
|
+
$btn-txt-nrml-padding: 4px !default;
|
|
32
|
+
$btn-txt-bgr-padding: 4px !default;
|
|
33
|
+
$btn-rtl-txt-nrml-padding: 4px !default;
|
|
34
|
+
$btn-rtl-txt-bgr-padding: 4px !default;
|
|
35
|
+
$tbar-item-pop-nrml-padding: 0 !default;
|
|
36
|
+
$tbar-item-pop-bgr-padding: 0 !default;
|
|
37
|
+
$tbar-pop-btn-bgr-padding: 8px 16px !default;
|
|
38
|
+
$tbar-pop-btn-nrml-padding: 5px 12px !default;
|
|
39
|
+
$tbar-pop-icon-bgr-padding: 0 8px 0 0 !default;
|
|
40
|
+
$tbar-pop-icon-nrml-padding: 0 8px 0 0 !default;
|
|
41
|
+
$tbar-pop-btn-txt-nrml-pad: 0 0 0 8px !default;
|
|
42
|
+
$tbar-pop-btn-txt-bgr-pad: 0 0 0 8px !default;
|
|
43
|
+
$tbar-popup-padding: 0 !default;
|
|
44
|
+
|
|
45
|
+
// dimension definitions
|
|
46
|
+
$tbar-btn-nrml-minheight: 32px !default;
|
|
47
|
+
$tbar-btn-nrml-line-height: 22px !default;
|
|
48
|
+
$tbar-btn-icon-nrml-line-height: 18px !default;
|
|
49
|
+
$tbar-btn-bgr-minheight: 40px !default;
|
|
50
|
+
$tbar-btn-bgr-line-height: 24px !default;
|
|
51
|
+
$tbar-btn-icon-bgr-line-height: 24px !default;
|
|
52
|
+
$tbar-btn-nrml-minwidth: 32px !default;
|
|
53
|
+
$tbar-btn-weight: $font-weight-normal !default;
|
|
54
|
+
$tbar-btn-bgr-minwidth: 40px !default;
|
|
55
|
+
$tbar-nrml-size: 48px !default;
|
|
56
|
+
$tbar-bgr-size: 56px !default;
|
|
57
|
+
$tbar-nrml-items-size: 48px !default;
|
|
58
|
+
$tbar-bgr-items-size: 56px !default;
|
|
59
|
+
$tbar-nrml-item-size: 32px !default;
|
|
60
|
+
$tbar-item-height: 32px !default;
|
|
61
|
+
$tbar-item-nrml-minwidth: 32px !default;
|
|
62
|
+
$tbar-bgr-item-size: 40px !default;
|
|
63
|
+
$tbar-btn-icon-nrml-width: 18px !default;
|
|
64
|
+
$tbar-btn-icon-nrml-height: 18px !default;
|
|
65
|
+
$tbar-right-item-line-height: 24px !default;
|
|
66
|
+
$tbar-btn-icon-bgr-width: 24px !default;
|
|
67
|
+
$tbar-nav-nrml-width: 40px !default;
|
|
68
|
+
$tbar-nav-bgr-width: 46px !default;
|
|
69
|
+
$tbar-btn-pop-nrml-minheight: 32px !default;
|
|
70
|
+
$tbar-btn-pop-bgr-minheight: 40px !default;
|
|
71
|
+
$tbar-radius: 0;
|
|
72
|
+
$tbar-pop-radius: 4px;
|
|
73
|
+
$tbar-zero-value: 0 !default;
|
|
74
|
+
$tbar-separator-nrml-height: 20px !default;
|
|
75
|
+
$tbar-separator-bgr-height: 24px !default;
|
|
76
|
+
$tbar-separator-nrml-minheight: $tbar-separator-nrml-height !default;
|
|
77
|
+
$tbar-separator-bgr-minheight: $tbar-separator-bgr-height !default;
|
|
78
|
+
$tbar-separator-size: 1px !default;
|
|
79
|
+
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
80
|
+
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
81
|
+
|
|
82
|
+
// margin definitions
|
|
83
|
+
$tbar-item-nrml-mrgn: 8px !default;
|
|
84
|
+
$tbar-item-bgr-mrgn: 12px !default;
|
|
85
|
+
$tbar-multirow-items-mrgn-bigger: 12px !default;
|
|
86
|
+
$tbar-multirow-items-mrgn-small: 8px !default;
|
|
87
|
+
$tbar-multirow-item-top-btm-mrgn-bigger: 0 !default;
|
|
88
|
+
$tbar-multirow-item-top-btm-mrgn-small: 0 !default;
|
|
89
|
+
$tbar-btn-nrml-mrgn: 0 !default;
|
|
90
|
+
$tbar-separator-vertical-nrml-mrgn: 8px 4px 8px 4px !default;
|
|
91
|
+
$tbar-separator-bgr-mrgn: 8px 4px 8px 4px !default;
|
|
92
|
+
$tbar-separator-vertical-bgr-mrgn: 8px 4px 8px 4px !default;
|
|
93
|
+
$tbar-separator-nrml-mrgn: 8px 4px 8px 4px !default;
|
|
94
|
+
|
|
95
|
+
// border definitions
|
|
96
|
+
$border-size: 1px;
|
|
97
|
+
$border-type: solid;
|
|
98
|
+
$tbar-border-radius: 1px !default;
|
|
99
|
+
$tbar-border-nav-type: solid !default;
|
|
100
|
+
$tbar-border-size: 0;
|
|
101
|
+
$tbar-separator-border-type: $border-type;
|
|
102
|
+
$tbar-hover-border-color: rgba($border-light);
|
|
103
|
+
$tbar-pressed-border: rgba($border-light);
|
|
104
|
+
$tbar-separator-border: rgba($border-light) !default;
|
|
105
|
+
$tbar-default-border: rgba($border-light) !default;
|
|
106
|
+
$tbar-hover-border-color: rgba($border-light) !default;
|
|
107
|
+
$tbar-focus-border-color: rgba($border-light) !default;
|
|
108
|
+
$tbar-press-border-color: rgba($border-light) !default;
|
|
109
|
+
$tbar-border-nav-type: rgba($border-light) !default;
|
|
110
|
+
$tbar-border-nav-active-type: rgba($border-light) !default;
|
|
111
|
+
$tbar-btn-border: none !default;
|
|
112
|
+
$tbar-item-pop-bg-color: $transparent !default;
|
|
113
|
+
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
114
|
+
$tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
|
|
115
|
+
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
116
|
+
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
117
|
+
$tbar-border-type: $border-type !default;
|
|
118
|
+
$tbar-nav-press-border: 0 !default;
|
|
119
|
+
$tbar-nav-hover-border: 1px solid $tbar-default-border !default;
|
|
120
|
+
$tbar-nav-focus-border: 0 !default;
|
|
121
|
+
$tbar-btn-border-radius: 4px !default;
|
|
122
|
+
|
|
123
|
+
// color definitions
|
|
124
|
+
$tbar-default-bg: $content-bg-color-alt2 !default;
|
|
125
|
+
$tbar-items-default-bg: $transparent !default;
|
|
126
|
+
$tbar-default-font: rgba($icon-color) !default;
|
|
127
|
+
$tbar-active-bg: rgba($content-bg-color-selected) !default;
|
|
128
|
+
$tbar-active-icon-color: rgba($primary-darker) !default;
|
|
129
|
+
$tbar-tab-highlight-color: $content-bg-color-focus !default;
|
|
130
|
+
$tbar-press-bg: $content-bg-color-pressed !default;
|
|
131
|
+
$tbar-btn-press-bg: $content-bg-color-pressed !default;
|
|
132
|
+
$tbar-hover-bg: $content-bg-color-hover !default;
|
|
133
|
+
$tbar-hover-font: rgba($icon-color) !default;
|
|
134
|
+
$tbar-default-icon-color: rgba($icon-color) !default;
|
|
135
|
+
$tbar-pressed-bg: $content-bg-color-pressed !default;
|
|
136
|
+
$tbar-pressed-font: rgba($icon-color) !default;
|
|
137
|
+
$tbar-select-font: rgba($primary-darker) !default;
|
|
138
|
+
$tbar-default-icon-overlay: rgba($icon-color) !default;
|
|
139
|
+
$tbar-focus-bg: $content-bg-color-focus !default;
|
|
140
|
+
$tbar-press-font: rgba($primary-darker) !default;
|
|
141
|
+
$tbar-default-font-overlay: rgba($icon-color) !default;
|
|
142
|
+
$tbar-active-font-color: rgba($primary-darker) !default;
|
|
143
|
+
$tbar-pop-bg: $flyout-bg-color !default;
|
|
144
|
+
|
|
145
|
+
$tbar-bgr-btn-text-font-size: $text-sm !default;
|
|
146
|
+
$tbar-bgr-btn-icon-font-size: $text-xl !default;
|
|
147
|
+
$tbar-bgr-btn-focus-padding: 0 8px !default;
|
|
148
|
+
|
|
149
|
+
$tbar-nrml-btn-border-radius: 4px !default;
|
|
150
|
+
$tbar-nrml-btn-focus-padding: 0 7px !default;
|
|
151
|
+
$tbar-nrml-btn-focus-outline: 0 !default;
|
|
152
|
+
|
|
153
|
+
$tbar-btn-icons-focus-color: rgba($icon-color) !default;
|
|
154
|
+
$tbar-btn-text-focus-color: rgba($icon-color) !default;
|
|
155
|
+
$tbar-btn-focus-border-color: rgba($icon-color) !default;
|
|
156
|
+
$tbar-btn-hover-border-size: $tbar-border-size !default;
|
|
157
|
+
$tbar-btn-hover-active-icons-color: rgba($primary-darker) !default;
|
|
158
|
+
$tbar-btn-hover-active-text-color: rgba($primary-darker) !default;
|
|
159
|
+
$tbar-btn-overlay-opacity: .38 !default;
|
|
160
|
+
$tbar-btn-active-bg: $tbar-active-bg !default;
|
|
161
|
+
$tbar-btn-active-icons-color: rgba($primary-darker) !default;
|
|
162
|
+
$tbar-btn-active-text-color: rgba($primary-darker) !default;
|
|
163
|
+
$tbar-btn-text-color: rgba($icon-color) !default;
|
|
164
|
+
$tbar-btn-pressed-text-color: rgba($primary-darker) !default;
|
|
165
|
+
$tbar-btn-pressed-focus-box-shadow: $secondary-shadow-focus !default;
|
|
166
|
+
$tbar-btn-pressed-bg: $secondary-bg-color-pressed !default;
|
|
167
|
+
$tbar-flat-btn-active-box-shadow: none !default;
|
|
168
|
+
|
|
169
|
+
$tbar-ext-btn-focus-padding: 0 7px !default;
|
|
170
|
+
$tbar-ext-btn-icon-padding: 0 !default;
|
|
171
|
+
$tbar-ext-btn-icon-font-size: $text-lg !default;
|
|
172
|
+
$tbar-ext-btn-focus-box-shadow: $shadow-focus-ring1 !default;
|
|
173
|
+
$tbar-ext-btn-hover-border-color: $tbar-hover-border-color !default;
|
|
174
|
+
$tbar-ext-btn-border: none !default;
|
|
175
|
+
|
|
176
|
+
$tbar-popup-icon-font-size: $text-sm !default;
|
|
177
|
+
$tbar-popup-text-btn-icon-padding: 4px 4px 5px 4px !default;
|
|
178
|
+
$tbar-popup-bgr-text-btn-icon-padding: 4px 6px 3px 6px !default;
|
|
179
|
+
$tbar-popup-btn-border: none !default;
|
|
180
|
+
$tbar-popup-btn-border-radius: 4px !default;
|
|
181
|
+
$tbar-popup-bgr-height: 40px !default;
|
|
182
|
+
$tbar-popup-bgr-btn-icon-font-size: $text-base !default;
|
|
183
|
+
$tbar-popup-bgr-btn-text-font-size: $text-base !default;
|
|
184
|
+
$tbar-popup-nav-active-border-bottom-right-radius: 0 !default;
|
|
185
|
+
$tbar-popup-nav-active-bg: $tbar-default-bg !default;
|
|
186
|
+
$tbar-popup-nav-active-icons-color: $tbar-default-icon-color !default;
|
|
187
|
+
$tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
188
|
+
$tbar-popup-nav-hover-color: $tbar-active-icon-color !default;
|
|
189
|
+
$tbar-popup-nav-hover-icons-color: rgba($icon-color) !default;
|
|
190
|
+
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
191
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
192
|
+
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
193
|
+
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
194
|
+
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
195
|
+
$tbar-popup-nav-focus-bg: $tbar-hover-bg !default;
|
|
196
|
+
$tbar-popup-nav-focus-color: rgba($primary-text-color) !default;
|
|
197
|
+
$tbar-popup-nav-focus-border-color: rgba($border-light) !default;
|
|
198
|
+
$tbar-popup-nav-focus-border-size: 0 0 0 1px !default;
|
|
199
|
+
$tbar-popup-btn-bg: transparent !default;
|
|
200
|
+
$tbar-popup-btn-hover-bg: $tbar-hover-bg !default;
|
|
201
|
+
$tbar-popup-btn-hover-box-shadow: none !default;
|
|
202
|
+
$tbar-popup-btn-active-bg: transparent !default;
|
|
203
|
+
$tbar-popup-btn-active-box-shadow: none !default;
|
|
204
|
+
$tbar-popup-btn-focus-bg: $content-bg-color-focus !default;
|
|
205
|
+
$tbar-popup-btn-focus-box-shadow: none !default;
|
|
206
|
+
$tbar-popup-nav-pressed-icons-active-color: $tbar-active-font-color !default;
|
|
207
|
+
$tbar-popup-btn-focus-outline: 0 !default;
|
|
208
|
+
$tbar-popup-nav-pressed-border-color: $tbar-pressed-bg !default;
|
|
209
|
+
$tbar-popup-nav-pressed-border-size: 0 !default;
|
|
210
|
+
$tbar-popup-nav-pressed-focus-border-color: $tbar-pressed-bg !default;
|
|
211
|
+
$tbar-popup-nav-pressed-focus-border-size: 0 !default;
|
|
212
|
+
$tbar-popup-btn-hover-border-size: $tbar-zero-value !default;
|
|
213
|
+
|
|
214
|
+
@mixin tbar-btn-animation {
|
|
215
|
+
content: '';
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
@mixin tbar-btn-animation-after {
|
|
219
|
+
content: '';
|
|
220
|
+
}
|
|
@@ -53,7 +53,7 @@ $tbar-separator-size: 1px !default;
|
|
|
53
53
|
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
54
54
|
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
55
55
|
$tbar-popup-border-width: 0 0 0 1px !default;
|
|
56
|
-
$tbar-popup-rtl-border-width: 0
|
|
56
|
+
$tbar-popup-rtl-border-width: 0 1px 0 0 !default;
|
|
57
57
|
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
58
58
|
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
59
59
|
$tbar-nrml-size: 38px !default;
|
|
@@ -97,7 +97,7 @@ $tbar-pop-btn-txt-nrml-pad: 0 0 0 4px !default;
|
|
|
97
97
|
$tbar-pop-btn-txt-bgr-pad: 0 0 0 6px !default;
|
|
98
98
|
|
|
99
99
|
$tbar-nav-press-border: 0 !default;
|
|
100
|
-
$tbar-nav-hover-border:
|
|
100
|
+
$tbar-nav-hover-border: 1px solid $tbar-default-border !default;
|
|
101
101
|
$tbar-nav-focus-border: 0 !default;
|
|
102
102
|
$tbar-nav-pressed-box-shadow: none !default;
|
|
103
103
|
$tbar-btn-border-radius: 4px !default;
|
|
@@ -178,7 +178,7 @@ $tbar-popup-nav-hover-bg: $tbar-hover-bg !default;
|
|
|
178
178
|
$tbar-popup-nav-hover-color: $tbar-hover-font !default;
|
|
179
179
|
$tbar-popup-nav-hover-icons-color: $icon-color !default;
|
|
180
180
|
$tbar-popup-nav-hover-border-color: $tbar-default-border !default;
|
|
181
|
-
$tbar-popup-nav-hover-border-size: 0 !default;
|
|
181
|
+
$tbar-popup-nav-hover-border-size: 0 0 0 1px !default;
|
|
182
182
|
$tbar-popup-nav-hover-active-bg: $tbar-hover-bg !default;
|
|
183
183
|
$tbar-popup-nav-hover-active-border-color: $tbar-default-border !default;
|
|
184
184
|
$tbar-popup-nav-hover-active-border-size: 0 !default;
|
|
@@ -340,12 +340,13 @@
|
|
|
340
340
|
&.e-rtl .e-hor-nav {
|
|
341
341
|
background: $tbar-default-bg;
|
|
342
342
|
border: $tbar-border-nav-type $tbar-default-border;
|
|
343
|
-
border-left: 0;
|
|
344
343
|
border-width: $tbar-popup-rtl-border-width;
|
|
345
344
|
|
|
346
345
|
&:not(.e-nav-active):hover {
|
|
347
346
|
background: $tbar-hover-bg;
|
|
348
347
|
color: $tbar-hover-font;
|
|
348
|
+
border: $tbar-border-nav-type $tbar-default-border;
|
|
349
|
+
border-width: $tbar-popup-rtl-border-width;
|
|
349
350
|
}
|
|
350
351
|
}
|
|
351
352
|
}
|
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
22
22
|
margin-left: 15px;
|
|
23
23
|
}
|
|
24
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
26
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
27
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
28
|
+
margin-right: 15px;
|
|
29
|
+
}
|
|
24
30
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
25
31
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
26
32
|
margin-right: 15px;
|
|
@@ -1061,10 +1067,11 @@
|
|
|
1061
1067
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1062
1068
|
background: #131313;
|
|
1063
1069
|
border: solid #505050;
|
|
1064
|
-
border-left: 0;
|
|
1065
1070
|
border-width: 0 1px 0 0;
|
|
1066
1071
|
}
|
|
1067
1072
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1068
1073
|
background: #313131;
|
|
1069
1074
|
color: #fff;
|
|
1075
|
+
border: solid #505050;
|
|
1076
|
+
border-width: 0 1px 0 0;
|
|
1070
1077
|
}
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
23
23
|
margin-left: 3px;
|
|
24
24
|
}
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
26
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
27
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
28
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
29
|
+
margin-right: 3px;
|
|
30
|
+
}
|
|
25
31
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
26
32
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
27
33
|
margin-right: 3px;
|
|
@@ -1062,10 +1068,11 @@
|
|
|
1062
1068
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1063
1069
|
background: #f8f8f8;
|
|
1064
1070
|
border: solid #ccc;
|
|
1065
|
-
border-left: 0;
|
|
1066
1071
|
border-width: 0 1px 0 0;
|
|
1067
1072
|
}
|
|
1068
1073
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1069
1074
|
background: #e6e6e6;
|
|
1070
1075
|
color: #333;
|
|
1076
|
+
border: solid #ccc;
|
|
1077
|
+
border-width: 0 1px 0 0;
|
|
1071
1078
|
}
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
23
23
|
margin-left: 16px;
|
|
24
24
|
}
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
26
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
27
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
28
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
29
|
+
margin-right: 16px;
|
|
30
|
+
}
|
|
25
31
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
26
32
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
27
33
|
margin-right: 16px;
|
|
@@ -1062,10 +1068,11 @@
|
|
|
1062
1068
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1063
1069
|
background: #f8f9fa;
|
|
1064
1070
|
border: solid #dee2e6;
|
|
1065
|
-
border-left: 0;
|
|
1066
1071
|
border-width: 0 1px 0 0;
|
|
1067
1072
|
}
|
|
1068
1073
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1069
1074
|
background: #6c757d;
|
|
1070
1075
|
color: #fff;
|
|
1076
|
+
border: solid #dee2e6;
|
|
1077
|
+
border-width: 0 1px 0 0;
|
|
1071
1078
|
}
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
34
34
|
margin-left: 12px;
|
|
35
35
|
}
|
|
36
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
37
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
38
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
39
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
40
|
+
margin-right: 12px;
|
|
41
|
+
}
|
|
36
42
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
37
43
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
38
44
|
margin-right: 12px;
|
|
@@ -1073,10 +1079,11 @@
|
|
|
1073
1079
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1074
1080
|
background: #282d31;
|
|
1075
1081
|
border: solid #444c54;
|
|
1076
|
-
border-left: 0;
|
|
1077
1082
|
border-width: 0 0 0 0;
|
|
1078
1083
|
}
|
|
1079
1084
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1080
1085
|
background: #5c636a;
|
|
1081
1086
|
color: #adb5bd;
|
|
1087
|
+
border: solid #444c54;
|
|
1088
|
+
border-width: 0 0 0 0;
|
|
1082
1089
|
}
|
|
@@ -33,6 +33,12 @@
|
|
|
33
33
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
34
34
|
margin-left: 12px;
|
|
35
35
|
}
|
|
36
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
37
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
38
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
39
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
40
|
+
margin-right: 12px;
|
|
41
|
+
}
|
|
36
42
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
37
43
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
38
44
|
margin-right: 12px;
|
|
@@ -1073,10 +1079,11 @@
|
|
|
1073
1079
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1074
1080
|
background: #f8f9fa;
|
|
1075
1081
|
border: solid #dee2e6;
|
|
1076
|
-
border-left: 0;
|
|
1077
1082
|
border-width: 0 0 0 0;
|
|
1078
1083
|
}
|
|
1079
1084
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1080
1085
|
background: #5c636a;
|
|
1081
1086
|
color: #6c757d;
|
|
1087
|
+
border: solid #dee2e6;
|
|
1088
|
+
border-width: 0 0 0 0;
|
|
1082
1089
|
}
|
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
22
22
|
margin-left: 3px;
|
|
23
23
|
}
|
|
24
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
26
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
27
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
28
|
+
margin-right: 3px;
|
|
29
|
+
}
|
|
24
30
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
25
31
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
26
32
|
margin-right: 3px;
|
|
@@ -936,7 +942,7 @@
|
|
|
936
942
|
}
|
|
937
943
|
.e-toolbar .e-hor-nav:hover {
|
|
938
944
|
background: #414040;
|
|
939
|
-
border-left:
|
|
945
|
+
border-left: 1px solid #414040;
|
|
940
946
|
color: #dadada;
|
|
941
947
|
}
|
|
942
948
|
.e-toolbar .e-hor-nav:hover .e-icons {
|
|
@@ -945,7 +951,7 @@
|
|
|
945
951
|
.e-toolbar .e-hor-nav:hover:not(.e-nav-active) {
|
|
946
952
|
border-color: #414040;
|
|
947
953
|
border-style: solid;
|
|
948
|
-
border-width: 0;
|
|
954
|
+
border-width: 0 0 0 1px;
|
|
949
955
|
}
|
|
950
956
|
.e-toolbar .e-hor-nav:hover:active {
|
|
951
957
|
background: #414040;
|
|
@@ -1061,10 +1067,11 @@
|
|
|
1061
1067
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1062
1068
|
background: #333232;
|
|
1063
1069
|
border: solid #414040;
|
|
1064
|
-
border-left: 0;
|
|
1065
1070
|
border-width: 0 1px 0 0;
|
|
1066
1071
|
}
|
|
1067
1072
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1068
1073
|
background: #414040;
|
|
1069
1074
|
color: #dadada;
|
|
1075
|
+
border: solid #414040;
|
|
1076
|
+
border-width: 0 1px 0 0;
|
|
1070
1077
|
}
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
23
23
|
margin-left: 3px;
|
|
24
24
|
}
|
|
25
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
26
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
27
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
28
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
29
|
+
margin-right: 3px;
|
|
30
|
+
}
|
|
25
31
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
26
32
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
27
33
|
margin-right: 3px;
|
|
@@ -937,7 +943,7 @@
|
|
|
937
943
|
}
|
|
938
944
|
.e-toolbar .e-hor-nav:hover {
|
|
939
945
|
background: #f4f4f4;
|
|
940
|
-
border-left:
|
|
946
|
+
border-left: 1px solid #dadada;
|
|
941
947
|
color: #000;
|
|
942
948
|
}
|
|
943
949
|
.e-toolbar .e-hor-nav:hover .e-icons {
|
|
@@ -946,7 +952,7 @@
|
|
|
946
952
|
.e-toolbar .e-hor-nav:hover:not(.e-nav-active) {
|
|
947
953
|
border-color: #dadada;
|
|
948
954
|
border-style: solid;
|
|
949
|
-
border-width: 0;
|
|
955
|
+
border-width: 0 0 0 1px;
|
|
950
956
|
}
|
|
951
957
|
.e-toolbar .e-hor-nav:hover:active {
|
|
952
958
|
background: #f4f4f4;
|
|
@@ -1062,10 +1068,11 @@
|
|
|
1062
1068
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1063
1069
|
background: #fff;
|
|
1064
1070
|
border: solid #dadada;
|
|
1065
|
-
border-left: 0;
|
|
1066
1071
|
border-width: 0 1px 0 0;
|
|
1067
1072
|
}
|
|
1068
1073
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1069
1074
|
background: #f4f4f4;
|
|
1070
1075
|
color: #000;
|
|
1076
|
+
border: solid #dadada;
|
|
1077
|
+
border-width: 0 1px 0 0;
|
|
1071
1078
|
}
|
|
@@ -32,6 +32,12 @@
|
|
|
32
32
|
.e-toolbar.e-bigger .e-toolbar-items .e-toolbar-left .e-toolbar-item:first-child {
|
|
33
33
|
margin-left: 10px;
|
|
34
34
|
}
|
|
35
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
36
|
+
.e-bigger .e-toolbar .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child,
|
|
37
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-item:last-child,
|
|
38
|
+
.e-toolbar.e-bigger .e-toolbar-items:first-child:not(.e-toolbar-multirow) > .e-toolbar-right .e-toolbar-item:last-child {
|
|
39
|
+
margin-right: 10px;
|
|
40
|
+
}
|
|
35
41
|
.e-bigger .e-toolbar .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child,
|
|
36
42
|
.e-toolbar.e-bigger .e-toolbar-items .e-hscroll-bar .e-hscroll-content > .e-toolbar-item:last-child {
|
|
37
43
|
margin-right: 10px;
|
|
@@ -1072,10 +1078,11 @@
|
|
|
1072
1078
|
.e-toolbar.e-rtl .e-hor-nav {
|
|
1073
1079
|
background: #252423;
|
|
1074
1080
|
border: solid #292827;
|
|
1075
|
-
border-left: 0;
|
|
1076
1081
|
border-width: 0 0 0 0;
|
|
1077
1082
|
}
|
|
1078
1083
|
.e-toolbar.e-rtl .e-hor-nav:not(.e-nav-active):hover {
|
|
1079
1084
|
background: #292827;
|
|
1080
1085
|
color: #f3f2f1;
|
|
1086
|
+
border: solid #292827;
|
|
1087
|
+
border-width: 0 0 0 0;
|
|
1081
1088
|
}
|