@syncfusion/ej2-navigations 19.2.59 → 19.3.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +1 -1
- package/CHANGELOG.md +32 -0
- package/README.md +15 -0
- package/breadcrumb.d.ts +4 -0
- package/breadcrumb.js +4 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +545 -170
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +567 -172
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +13 -12
- package/src/accordion/accordion.d.ts +2 -8
- package/src/accordion/accordion.js +16 -85
- package/src/breadcrumb/breadcrumb-model.d.ts +147 -0
- package/src/breadcrumb/breadcrumb.d.ts +232 -0
- package/src/breadcrumb/breadcrumb.js +497 -0
- package/src/breadcrumb/index.d.ts +5 -0
- package/src/breadcrumb/index.js +4 -0
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/sidebar/sidebar.js +2 -2
- package/src/tab/tab-model.d.ts +1 -1
- package/src/tab/tab.d.ts +1 -1
- package/src/tab/tab.js +50 -84
- package/src/toolbar/toolbar.js +1 -1
- package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
- package/styles/accordion/_bootstrap5-definition.scss +81 -0
- package/styles/accordion/_fabric-dark-definition.scss +1 -0
- package/styles/accordion/_fabric-definition.scss +1 -0
- package/styles/accordion/_highcontrast-definition.scss +1 -1
- package/styles/accordion/_layout.scss +6 -8
- package/styles/accordion/_tailwind-dark-definition.scss +1 -77
- package/styles/accordion/_tailwind-definition.scss +79 -79
- package/styles/accordion/_theme.scss +57 -17
- package/styles/accordion/bootstrap5-dark.css +428 -0
- package/styles/accordion/bootstrap5-dark.scss +4 -0
- package/styles/accordion/bootstrap5.css +428 -0
- package/styles/accordion/bootstrap5.scss +4 -0
- package/styles/accordion/highcontrast-light.css +0 -1
- package/styles/accordion/highcontrast.css +0 -1
- package/styles/accordion/icons/_bootstrap4.scss +1 -1
- package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
- package/styles/accordion/icons/_bootstrap5.scss +18 -0
- package/styles/accordion/icons/_tailwind-dark.scss +1 -17
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/accordion/material-dark.css +2 -2
- package/styles/accordion/tailwind-dark.css +1 -1
- package/styles/bootstrap-dark.css +352 -60
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +349 -57
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +351 -60
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +9922 -0
- package/styles/bootstrap5-dark.scss +10 -0
- package/styles/bootstrap5.css +9922 -0
- package/styles/bootstrap5.scss +10 -0
- package/styles/breadcrumb/_all.scss +2 -0
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +41 -0
- package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-dark-definition.scss +46 -0
- package/styles/breadcrumb/_fabric-definition.scss +46 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +48 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +48 -0
- package/styles/breadcrumb/_layout.scss +291 -0
- package/styles/breadcrumb/_material-dark-definition.scss +37 -0
- package/styles/breadcrumb/_material-definition.scss +37 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +47 -0
- package/styles/breadcrumb/_tailwind-definition.scss +47 -0
- package/styles/breadcrumb/_theme.scss +134 -0
- package/styles/breadcrumb/bootstrap-dark.css +279 -0
- package/styles/breadcrumb/bootstrap-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap.css +279 -0
- package/styles/breadcrumb/bootstrap.scss +4 -0
- package/styles/breadcrumb/bootstrap4.css +279 -0
- package/styles/breadcrumb/bootstrap4.scss +4 -0
- package/styles/breadcrumb/bootstrap5-dark.css +297 -0
- package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
- package/styles/breadcrumb/bootstrap5.css +297 -0
- package/styles/breadcrumb/bootstrap5.scss +4 -0
- package/styles/breadcrumb/fabric-dark.css +277 -0
- package/styles/breadcrumb/fabric-dark.scss +4 -0
- package/styles/breadcrumb/fabric.css +277 -0
- package/styles/breadcrumb/fabric.scss +4 -0
- package/styles/breadcrumb/highcontrast-light.css +285 -0
- package/styles/breadcrumb/highcontrast-light.scss +4 -0
- package/styles/breadcrumb/highcontrast.css +285 -0
- package/styles/breadcrumb/highcontrast.scss +4 -0
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap4.scss +13 -0
- package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
- package/styles/breadcrumb/icons/_bootstrap5.scss +24 -0
- package/styles/breadcrumb/icons/_fabric-dark.scss +13 -0
- package/styles/breadcrumb/icons/_fabric.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +13 -0
- package/styles/breadcrumb/icons/_highcontrast.scss +13 -0
- package/styles/breadcrumb/icons/_material-dark.scss +24 -0
- package/styles/breadcrumb/icons/_material.scss +24 -0
- package/styles/breadcrumb/icons/_tailwind-dark.scss +13 -0
- package/styles/breadcrumb/icons/_tailwind.scss +13 -0
- package/styles/breadcrumb/material-dark.css +259 -0
- package/styles/breadcrumb/material-dark.scss +4 -0
- package/styles/breadcrumb/material.css +259 -0
- package/styles/breadcrumb/material.scss +4 -0
- package/styles/breadcrumb/tailwind-dark.css +280 -0
- package/styles/breadcrumb/tailwind-dark.scss +4 -0
- package/styles/breadcrumb/tailwind.css +280 -0
- package/styles/breadcrumb/tailwind.scss +4 -0
- package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/context-menu/_bootstrap5-definition.scss +52 -0
- package/styles/context-menu/_tailwind-dark-definition.scss +1 -53
- package/styles/context-menu/_tailwind-definition.scss +52 -51
- package/styles/context-menu/bootstrap5-dark.css +382 -0
- package/styles/context-menu/bootstrap5-dark.scss +4 -0
- package/styles/context-menu/bootstrap5.css +382 -0
- package/styles/context-menu/bootstrap5.scss +4 -0
- package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/context-menu/icons/_bootstrap5.scss +32 -0
- package/styles/context-menu/icons/_tailwind-dark.scss +32 -32
- package/styles/context-menu/icons/_tailwind.scss +32 -32
- package/styles/fabric-dark.css +352 -78
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +346 -72
- package/styles/fabric.scss +1 -0
- package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/h-scroll/_bootstrap5-definition.scss +78 -0
- package/styles/h-scroll/_fabric-dark-definition.scss +1 -1
- package/styles/h-scroll/_highcontrast-definition.scss +1 -1
- package/styles/h-scroll/_layout.scss +1 -1
- package/styles/h-scroll/_tailwind-dark-definition.scss +1 -78
- package/styles/h-scroll/bootstrap5-dark.css +328 -0
- package/styles/h-scroll/bootstrap5-dark.scss +4 -0
- package/styles/h-scroll/bootstrap5.css +328 -0
- package/styles/h-scroll/bootstrap5.scss +4 -0
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
- package/styles/h-scroll/icons/_tailwind-dark.scss +1 -49
- package/styles/highcontrast-light.css +354 -73
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +356 -75
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.css +360 -105
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +324 -69
- package/styles/material.scss +1 -0
- package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
- package/styles/menu/_bootstrap5-definition.scss +68 -0
- package/styles/menu/_layout.scss +12 -2
- package/styles/menu/_tailwind-dark-definition.scss +1 -66
- package/styles/menu/_tailwind-definition.scss +66 -64
- package/styles/menu/_theme.scss +1 -1
- package/styles/menu/bootstrap-dark.css +36 -36
- package/styles/menu/bootstrap.css +36 -36
- package/styles/menu/bootstrap4.css +34 -34
- package/styles/menu/bootstrap5-dark.css +1251 -0
- package/styles/menu/bootstrap5-dark.scss +8 -0
- package/styles/menu/bootstrap5.css +1251 -0
- package/styles/menu/bootstrap5.scss +8 -0
- package/styles/menu/fabric-dark.css +36 -36
- package/styles/menu/fabric.css +36 -36
- package/styles/menu/highcontrast-light.css +36 -36
- package/styles/menu/highcontrast.css +36 -36
- package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
- package/styles/menu/icons/_bootstrap5.scss +133 -0
- package/styles/menu/icons/_tailwind-dark.scss +133 -133
- package/styles/menu/icons/_tailwind.scss +133 -133
- package/styles/menu/material-dark.css +36 -36
- package/styles/menu/material.css +36 -36
- package/styles/menu/tailwind-dark.css +36 -36
- package/styles/menu/tailwind.css +36 -36
- package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/sidebar/_bootstrap5-definition.scss +5 -0
- package/styles/sidebar/_highcontrast-definition.scss +1 -1
- package/styles/sidebar/_tailwind-dark-definition.scss +1 -4
- package/styles/sidebar/_tailwind-definition.scss +2 -1
- package/styles/sidebar/_theme.scss +3 -3
- package/styles/sidebar/bootstrap5-dark.css +155 -0
- package/styles/sidebar/bootstrap5-dark.scss +3 -0
- package/styles/sidebar/bootstrap5.css +155 -0
- package/styles/sidebar/bootstrap5.scss +3 -0
- package/styles/sidebar/highcontrast.css +1 -1
- package/styles/tab/_bootstrap-dark-definition.scss +2 -2
- package/styles/tab/_bootstrap-definition.scss +1 -1
- package/styles/tab/_bootstrap4-definition.scss +2 -2
- package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
- package/styles/tab/_bootstrap5-definition.scss +401 -0
- package/styles/tab/_layout.scss +45 -51
- package/styles/tab/_material-dark-definition.scss +0 -1
- package/styles/tab/_tailwind-dark-definition.scss +1 -420
- package/styles/tab/_tailwind-definition.scss +420 -420
- package/styles/tab/_theme.scss +166 -53
- package/styles/tab/bootstrap-dark.css +15 -14
- package/styles/tab/bootstrap.css +12 -11
- package/styles/tab/bootstrap4.css +15 -14
- package/styles/tab/bootstrap5-dark.css +4442 -0
- package/styles/tab/bootstrap5-dark.scss +5 -0
- package/styles/tab/bootstrap5.css +4442 -0
- package/styles/tab/bootstrap5.scss +5 -0
- package/styles/tab/fabric-dark.css +16 -15
- package/styles/tab/fabric.css +14 -13
- package/styles/tab/highcontrast-light.css +14 -13
- package/styles/tab/highcontrast.css +14 -13
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
- package/styles/tab/icons/_bootstrap5.scss +141 -0
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_tailwind-dark.scss +1 -140
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +36 -35
- package/styles/tab/material.css +11 -10
- package/styles/tab/tailwind-dark.css +27 -39
- package/styles/tab/tailwind.css +22 -34
- package/styles/tailwind-dark.css +379 -111
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +364 -96
- package/styles/tailwind.scss +1 -0
- package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/toolbar/_bootstrap5-definition.scss +143 -0
- package/styles/toolbar/_fabric-dark-definition.scss +1 -3
- package/styles/toolbar/_layout.scss +18 -9
- package/styles/toolbar/_material-dark-definition.scss +0 -1
- package/styles/toolbar/_tailwind-dark-definition.scss +1 -143
- package/styles/toolbar/_tailwind-definition.scss +143 -143
- package/styles/toolbar/_theme.scss +98 -16
- package/styles/toolbar/bootstrap-dark.css +13 -10
- package/styles/toolbar/bootstrap.css +13 -10
- package/styles/toolbar/bootstrap4.css +14 -12
- package/styles/toolbar/bootstrap5-dark.css +1409 -0
- package/styles/toolbar/bootstrap5-dark.scss +8 -0
- package/styles/toolbar/bootstrap5.css +1409 -0
- package/styles/toolbar/bootstrap5.scss +8 -0
- package/styles/toolbar/fabric-dark.css +13 -26
- package/styles/toolbar/fabric.css +10 -23
- package/styles/toolbar/highcontrast-light.css +10 -23
- package/styles/toolbar/highcontrast.css +10 -23
- package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/toolbar/icons/_bootstrap5.scss +17 -0
- package/styles/toolbar/icons/_tailwind-dark.scss +1 -16
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +11 -24
- package/styles/toolbar/material.css +10 -23
- package/styles/toolbar/tailwind-dark.css +20 -29
- package/styles/toolbar/tailwind.css +16 -25
- package/styles/treeview/_bootstrap4-definition.scss +3 -3
- package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/treeview/_bootstrap5-definition.scss +109 -0
- package/styles/treeview/_layout.scss +64 -17
- package/styles/treeview/_tailwind-dark-definition.scss +1 -110
- package/styles/treeview/_tailwind-definition.scss +30 -28
- package/styles/treeview/_theme.scss +26 -6
- package/styles/treeview/bootstrap-dark.css +8 -0
- package/styles/treeview/bootstrap.css +8 -0
- package/styles/treeview/bootstrap4.css +8 -0
- package/styles/treeview/bootstrap5-dark.css +974 -0
- package/styles/treeview/bootstrap5-dark.scss +6 -0
- package/styles/treeview/bootstrap5.css +974 -0
- package/styles/treeview/bootstrap5.scss +6 -0
- package/styles/treeview/fabric-dark.css +8 -0
- package/styles/treeview/fabric.css +8 -0
- package/styles/treeview/highcontrast-light.css +8 -0
- package/styles/treeview/highcontrast.css +8 -0
- package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +15 -7
- package/styles/treeview/material.css +8 -0
- package/styles/treeview/tailwind-dark.css +10 -2
- package/styles/treeview/tailwind.css +9 -1
- package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
- package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-dark-definition.scss +1 -49
- package/styles/v-scroll/bootstrap5-dark.css +247 -0
- package/styles/v-scroll/bootstrap5-dark.scss +4 -0
- package/styles/v-scroll/bootstrap5.css +247 -0
- package/styles/v-scroll/bootstrap5.scss +4 -0
- package/styles/v-scroll/icons/_bootstrap4.scss +1 -1
- package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
- package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
- package/styles/v-scroll/icons/_tailwind-dark.scss +1 -26
- package/styles/v-scroll/material-dark.css +1 -1
- package/styles/v-scroll/tailwind-dark.css +4 -4
package/styles/tailwind.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
$tbar-skin: 'bootstrap5' !default;
|
|
2
|
+
$border-size: 0;
|
|
3
|
+
$border-type: solid;
|
|
4
|
+
$tbar-icons-bgr-font-size: $text-xl;
|
|
5
|
+
$tbar-separator-bgr-mrgn: 8px 4px;
|
|
6
|
+
$tbar-separator-vertical-bgr-mrgn: 5px 10px;
|
|
7
|
+
$tbar-radius: 0;
|
|
8
|
+
$tbar-separator-nrml-mrgn: 7px 3px;
|
|
9
|
+
$tbar-pop-radius: 4px;
|
|
10
|
+
$tbar-separator-vertical-nrml-mrgn: 3px 7px;
|
|
11
|
+
$tbar-border-size: $border-size;
|
|
12
|
+
$tbar-separator-border-type: $border-type;
|
|
13
|
+
$tbar-pop-box-shadow: $shadow-lg;
|
|
14
|
+
$tbar-hover-border-color: $icon-color;
|
|
15
|
+
$tbar-pressed-border: $tbar-hover-border-color;
|
|
16
|
+
$tbar-btn-bgr-line-height: 24px !default;
|
|
17
|
+
$tbar-zero-value: 0 !default;
|
|
18
|
+
$tbar-btn-nrml-line-height: 22px !default;
|
|
19
|
+
$tbar-btn-weight: $font-weight-normal !default;
|
|
20
|
+
$tbar-border-radius: 4px !default;
|
|
21
|
+
$tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
|
|
22
|
+
$tbar-border-nav-type: solid !default;
|
|
23
|
+
$tbar-btn-box-shadow: none !default;
|
|
24
|
+
|
|
25
|
+
$tbar-default-bg: $content-bg-color-alt1 !default;
|
|
26
|
+
$tbar-default-font: $content-text-color !default;
|
|
27
|
+
$tbar-active-bg: $secondary-bg-color-pressed !default;
|
|
28
|
+
$tbar-active-icon-color: $primary-text-color !default;
|
|
29
|
+
$tbar-btn-family: $font-family !default;
|
|
30
|
+
$tbar-press-bg: $content-bg-color-alt2 !default;
|
|
31
|
+
$tbar-press-border-color: $border-light !default;
|
|
32
|
+
$tbar-hover-bg: $secondary-bg-color-hover !default;
|
|
33
|
+
$tbar-hover-font: $icon-color !default;
|
|
34
|
+
$tbar-default-icon-color: $icon-color !default;
|
|
35
|
+
$tbar-pressed-bg: $content-bg-color-alt2 !default;
|
|
36
|
+
$tbar-pressed-font: $content-text-color-alt2 !default;
|
|
37
|
+
$tbar-select-font: $content-text-color-alt2 !default;
|
|
38
|
+
$tbar-default-font-overlay: $content-text-color-alt2 !default;
|
|
39
|
+
$tbar-default-icon-overlay: $content-text-color-alt2 !default;
|
|
40
|
+
$tbar-separator-border: $border-light !default;
|
|
41
|
+
$tbar-default-border: $border-light !default;
|
|
42
|
+
$tbar-hover-border-color: $icon-color !default;
|
|
43
|
+
$tbar-focus-border-color: $tbar-hover-border-color !default;
|
|
44
|
+
$tbar-focus-bg: $tbar-hover-bg !default;
|
|
45
|
+
$tbar-press-font: $content-text-color-alt2 !default;
|
|
46
|
+
|
|
47
|
+
$tbar-active-font-color: $tbar-press-font !default;
|
|
48
|
+
$tbar-border-nav-type: $border-light !default;
|
|
49
|
+
$tbar-border-nav-active-type: $border-light !default;
|
|
50
|
+
$tbar-btn-border: none !default;
|
|
51
|
+
|
|
52
|
+
$tbar-box-shadow: none !default;
|
|
53
|
+
$tbar-border-type: $border-type !default;
|
|
54
|
+
$tbar-separator-size: 1px !default;
|
|
55
|
+
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
56
|
+
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
57
|
+
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
58
|
+
$tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
|
|
59
|
+
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
60
|
+
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
61
|
+
$tbar-nrml-size: 38px !default;
|
|
62
|
+
$tbar-bgr-size: 48px !default;
|
|
63
|
+
$tbar-nrml-items-size: 38px !default;
|
|
64
|
+
$tbar-bgr-items-size: 48px !default;
|
|
65
|
+
$tbar-nrml-item-size: 38px !default;
|
|
66
|
+
$tbar-item-nrml-minwidth: 28px !default;
|
|
67
|
+
$tbar-bgr-item-size: 49px !default;
|
|
68
|
+
$tbar-btn-font-size: $text-lg !default;
|
|
69
|
+
$tbar-btn-txt-font-size: $text-sm !default;
|
|
70
|
+
$tbar-popup-btn-bg-color: transparent !default;
|
|
71
|
+
|
|
72
|
+
$tbar-item-bgr-padding: 5px 6px !default;
|
|
73
|
+
$tbar-item-nrml-padding: 4px !default;
|
|
74
|
+
$tbar-btn-nrml-padding: 0 4px !default;
|
|
75
|
+
$tbar-btn-bgr-padding: 0 8px !default;
|
|
76
|
+
$tbar-btn-icn-nrml-padding: 4px !default;
|
|
77
|
+
$tbar-btn-icn-bgr-padding: 4px 6px !default;
|
|
78
|
+
$tbar-btn-icn-right-bgr-padding: 4px 6px !default;
|
|
79
|
+
$tbar-btn-icn-right-nrml-padding: 4px !default;
|
|
80
|
+
$btn-txt-nrml-padding: 4px !default;
|
|
81
|
+
$btn-txt-bgr-padding: 4px !default;
|
|
82
|
+
|
|
83
|
+
$tbar-pop-bg: $flyout-bg-color;
|
|
84
|
+
$tbar-item-pop-nrml-padding: 0 !default;
|
|
85
|
+
$tbar-item-pop-bgr-padding: 0 !default;
|
|
86
|
+
$tbar-pop-btn-bgr-padding: 8px 18px !default;
|
|
87
|
+
$tbar-pop-btn-nrml-padding: 6px 12px !default;
|
|
88
|
+
$tbar-pop-icon-bgr-padding: 0 6px 0 0 !default;
|
|
89
|
+
$tbar-pop-icon-nrml-padding: 0 4px 0 0 !default;
|
|
90
|
+
$tbar-pop-btn-txt-nrml-pad: 0 0 0 4px !default;
|
|
91
|
+
$tbar-pop-btn-txt-bgr-pad: 0 0 0 6px !default;
|
|
92
|
+
|
|
93
|
+
$tbar-nav-press-border: 0 !default;
|
|
94
|
+
$tbar-nav-hover-border: 0 !default;
|
|
95
|
+
$tbar-nav-focus-border: 0 !default;
|
|
96
|
+
$tbar-nav-pressed-box-shadow: none !default;
|
|
97
|
+
$tbar-btn-border-radius: 0 !default;
|
|
98
|
+
$tbar-btn-pressed-box-shadow: none !default;
|
|
99
|
+
$tbar-btn-bgr-mrgn: 0 !default;
|
|
100
|
+
$tbar-btn-nrml-mrgn: 0 !default;
|
|
101
|
+
$tbar-v-btn-bgr-mrgn: 0 !default;
|
|
102
|
+
$tbar-v-btn-nrml-mrgn: 0 !default;
|
|
103
|
+
$tbar-popup-padding: 0 !default;
|
|
104
|
+
$tbar-btn-nrml-minheight: 30px !default;
|
|
105
|
+
$tbar-btn-bgr-minheight: 38px !default;
|
|
106
|
+
$tbar-btn-nrml-minwidth: 30px !default;
|
|
107
|
+
$tbar-btn-bgr-minwidth: 38px !default;
|
|
108
|
+
$tbar-btn-bgr-height: calc(100% - 11px) !default;
|
|
109
|
+
$tbar-btn-nrml-height: calc(100% - 10px) !default;
|
|
110
|
+
$tbar-separator-nrml-height: 24px !default;
|
|
111
|
+
$tbar-separator-bgr-height: 30px !default;
|
|
112
|
+
$tbar-separator-nrml-minheight: $tbar-separator-nrml-height !default;
|
|
113
|
+
$tbar-separator-bgr-minheight: $tbar-separator-bgr-height !default;
|
|
114
|
+
$tbar-btn-icon-nrml-width: 12px !default;
|
|
115
|
+
$tbar-btn-icon-nrml-height: 16px !default;
|
|
116
|
+
$tbar-btn-icon-nrml-line-height: 16px !default;
|
|
117
|
+
$tbar-left-item-line-height: 35px !default;
|
|
118
|
+
$tbar-right-item-line-height: 24px !default;
|
|
119
|
+
$tbar-btn-icon-bgr-width: 13px !default;
|
|
120
|
+
$tbar-btn-icon-bgr-height: 18px !default;
|
|
121
|
+
$tbar-btn-icon-bgr-line-height: 18px !default;
|
|
122
|
+
$tbar-btn-txt-line-height: inherit !default;
|
|
123
|
+
$tbar-nav-nrml-width: 28px !default;
|
|
124
|
+
$tbar-nav-bgr-width: 36px !default;
|
|
125
|
+
$tbar-item-nrml-mrgn: 8px !default;
|
|
126
|
+
$tbar-item-bgr-mrgn: 10px !default;
|
|
127
|
+
$tbar-btn-pop-nrml-minheight: 38px !default;
|
|
128
|
+
$tbar-btn-pop-bgr-minheight: 48px !default;
|
|
129
|
+
$tbar-multirow-items-mrgn-bigger: 12.5px !default;
|
|
130
|
+
$tbar-multirow-items-mrgn-small: 10px !default;
|
|
131
|
+
$tbar-multirow-item-top-btm-mrgn-bigger: 1.5px 0 !default;
|
|
132
|
+
$tbar-multirow-item-top-btm-mrgn-small: 1px 0 !default;
|
|
133
|
+
$tbar-multirow-item-mrgn: 0 !default;
|
|
134
|
+
$tbar-item-bgr-padding-bigger: 1.5px 0 !default;
|
|
135
|
+
$tbar-item-nrml-padding-small: 1px 0 !default;
|
|
136
|
+
|
|
137
|
+
@mixin tbar-btn-animation {
|
|
138
|
+
content: '';
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
@mixin tbar-btn-animation-after {
|
|
142
|
+
content: '';
|
|
143
|
+
}
|
|
@@ -15,7 +15,6 @@ $tbar-pressed-border: $tbar-hover-border-color !default;
|
|
|
15
15
|
$tbar-pop-btn-bgr-padding: $tbar-zero-value 4px !default;
|
|
16
16
|
$tbar-pop-btn-nrml-padding: $tbar-zero-value 4px !default;
|
|
17
17
|
$tbar-separator-bgr-minheight: 36px !default;
|
|
18
|
-
$tbar-btn-bgr-minwidth: 0 !default;
|
|
19
18
|
$tbar-separator-vertical-bgr-mrgn: 5px 10px !default;
|
|
20
19
|
$tbar-v-btn-bgr-mrgn: 0 !default;
|
|
21
20
|
$tbar-btn-nrml-minwidth: 40px !default;
|
|
@@ -36,7 +35,7 @@ $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
|
36
35
|
$tbar-btn-box-shadow: none !default;
|
|
37
36
|
$tbar-hover-font: $hover-font-color !default;
|
|
38
37
|
$tbar-press-font: $active-font-color !default;
|
|
39
|
-
$tbar-active-font-color: $
|
|
38
|
+
$tbar-active-font-color: $theme-primary-font !default;
|
|
40
39
|
$tbar-default-font-overlay: rgba($default-icon-color, .4) !default;
|
|
41
40
|
$tbar-default-icon-overlay: rgba($default-icon-color, .4) !default;
|
|
42
41
|
$tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
|
|
@@ -65,7 +64,6 @@ $tbar-focus-border-color: $tbar-hover-border-color !default;
|
|
|
65
64
|
$tbar-focus-bg: $tbar-hover-bg !default;
|
|
66
65
|
$tbar-press-font: $neutral-light-fontalt !default;
|
|
67
66
|
|
|
68
|
-
$tbar-active-font-color: $tbar-press-font !default;
|
|
69
67
|
$tbar-border-nav-type: solid !default;
|
|
70
68
|
$tbar-border-nav-active-type: solid !default;
|
|
71
69
|
$tbar-btn-border: none !default;
|
|
@@ -117,6 +117,9 @@
|
|
|
117
117
|
line-height: $tbar-btn-icon-bgr-line-height;
|
|
118
118
|
min-height: $tbar-btn-icon-bgr-height;
|
|
119
119
|
min-width: $tbar-btn-icon-bgr-width;
|
|
120
|
+
@if $tbar-skin == 'bootstrap5' {
|
|
121
|
+
padding-bottom: 4px;
|
|
122
|
+
}
|
|
120
123
|
}
|
|
121
124
|
}
|
|
122
125
|
|
|
@@ -129,7 +132,7 @@
|
|
|
129
132
|
line-height: inherit;
|
|
130
133
|
}
|
|
131
134
|
|
|
132
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
135
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
133
136
|
font-size: 16px;
|
|
134
137
|
}
|
|
135
138
|
}
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
.e-tbar-btn .e-icons.e-btn-icon {
|
|
151
154
|
min-width: $tbar-btn-icon-bgr-width;
|
|
152
155
|
|
|
153
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
156
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
154
157
|
font-size: 16px;
|
|
155
158
|
}
|
|
156
159
|
}
|
|
@@ -175,7 +178,7 @@
|
|
|
175
178
|
|
|
176
179
|
.e-tbar-btn-text {
|
|
177
180
|
padding: $tbar-pop-btn-txt-bgr-pad;
|
|
178
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
181
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
179
182
|
font-size: 16px;
|
|
180
183
|
}
|
|
181
184
|
}
|
|
@@ -658,7 +661,7 @@
|
|
|
658
661
|
.e-tbar-btn.e-btn {
|
|
659
662
|
line-height: $tbar-btn-nrml-line-height;
|
|
660
663
|
|
|
661
|
-
@if $tbar-skin == 'bootstrap' $tbar-skin == 'bootstrap4' {
|
|
664
|
+
@if $tbar-skin == 'bootstrap' or $tbar-skin == 'bootstrap4' {
|
|
662
665
|
&:focus {
|
|
663
666
|
padding: 0 1.5px;
|
|
664
667
|
}
|
|
@@ -690,7 +693,7 @@
|
|
|
690
693
|
min-width: $tbar-btn-icon-nrml-width;
|
|
691
694
|
padding: 0;
|
|
692
695
|
|
|
693
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
696
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
694
697
|
font-size: 16px;
|
|
695
698
|
padding: 5px 6px;
|
|
696
699
|
}
|
|
@@ -801,10 +804,12 @@
|
|
|
801
804
|
}
|
|
802
805
|
|
|
803
806
|
.e-tbar-btn.e-btn {
|
|
807
|
+
align-items: center;
|
|
804
808
|
display: inline-flex;
|
|
805
809
|
justify-content: flex-start;
|
|
806
810
|
min-height: $tbar-btn-pop-nrml-minheight;
|
|
807
811
|
padding: $tbar-pop-btn-nrml-padding;
|
|
812
|
+
|
|
808
813
|
@if $tbar-skin == 'bootstrap' or $tbar-skin == 'bootstrap4' {
|
|
809
814
|
border: 0;
|
|
810
815
|
border-radius: 0;
|
|
@@ -857,7 +862,7 @@
|
|
|
857
862
|
height: 36px;
|
|
858
863
|
}
|
|
859
864
|
|
|
860
|
-
@if $tbar-skin == 'tailwind'or $tbar-skin == '
|
|
865
|
+
@if $tbar-skin == 'tailwind'or $tbar-skin == 'bootstrap5' {
|
|
861
866
|
height: 38px;
|
|
862
867
|
}
|
|
863
868
|
|
|
@@ -1054,15 +1059,16 @@
|
|
|
1054
1059
|
|
|
1055
1060
|
.e-popup-down-icon.e-icons,
|
|
1056
1061
|
.e-popup-up-icon.e-icons {
|
|
1062
|
+
color: $tbar-default-icon-color;
|
|
1057
1063
|
display: table-cell;
|
|
1058
1064
|
text-align: center;
|
|
1059
1065
|
vertical-align: middle;
|
|
1060
1066
|
width: 100%;
|
|
1061
1067
|
|
|
1062
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
1068
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
1063
1069
|
font-size: $tbar-btn-font-size;
|
|
1064
1070
|
}
|
|
1065
|
-
|
|
1071
|
+
}
|
|
1066
1072
|
|
|
1067
1073
|
.e-toolbar-item {
|
|
1068
1074
|
|
|
@@ -1293,7 +1299,7 @@
|
|
|
1293
1299
|
min-width: $tbar-btn-nrml-minwidth;
|
|
1294
1300
|
padding: $tbar-btn-nrml-padding;
|
|
1295
1301
|
|
|
1296
|
-
@if $tbar-skin == 'tailwind' or $tbar-skin == '
|
|
1302
|
+
@if $tbar-skin == 'tailwind' or $tbar-skin == 'bootstrap5' {
|
|
1297
1303
|
border-radius: 4px;
|
|
1298
1304
|
}
|
|
1299
1305
|
|
|
@@ -1349,6 +1355,9 @@
|
|
|
1349
1355
|
margin: $tbar-zero-value;
|
|
1350
1356
|
min-width: $tbar-btn-icon-nrml-width;
|
|
1351
1357
|
width: auto;
|
|
1358
|
+
@if $tbar-skin == 'bootstrap5' {
|
|
1359
|
+
padding-bottom: 4px;
|
|
1360
|
+
}
|
|
1352
1361
|
}
|
|
1353
1362
|
}
|
|
1354
1363
|
|
|
@@ -43,7 +43,6 @@ $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
|
43
43
|
$tbar-btn-box-shadow: none !default;
|
|
44
44
|
$tbar-hover-font: $hover-font-color !default;
|
|
45
45
|
$tbar-press-font: $active-font-color !default;
|
|
46
|
-
$tbar-active-font-color: $active-font-color !default;
|
|
47
46
|
$tbar-default-font-overlay: rgba($grey-dark-font, .3) !default;
|
|
48
47
|
$tbar-default-icon-overlay: rgba($grey-dark-font, .3) !default;
|
|
49
48
|
$tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
|
|
@@ -1,143 +1 @@
|
|
|
1
|
-
|
|
2
|
-
$border-size: 1px;
|
|
3
|
-
$border-type: solid;
|
|
4
|
-
$tbar-icons-bgr-font-size: $text-xl;
|
|
5
|
-
$tbar-separator-bgr-mrgn: 8px 4px;
|
|
6
|
-
$tbar-separator-vertical-bgr-mrgn: 5px 10px;
|
|
7
|
-
$tbar-radius: 0;
|
|
8
|
-
$tbar-separator-nrml-mrgn: 7px 3px;
|
|
9
|
-
$tbar-pop-radius: 4px;
|
|
10
|
-
$tbar-separator-vertical-nrml-mrgn: 3px 7px;
|
|
11
|
-
$tbar-border-size: $border-size;
|
|
12
|
-
$tbar-separator-border-type: $border-type;
|
|
13
|
-
$tbar-pop-box-shadow: $shadow-lg;
|
|
14
|
-
$tbar-hover-border-color: $icon-color;
|
|
15
|
-
$tbar-pressed-border: $tbar-hover-border-color;
|
|
16
|
-
$tbar-btn-bgr-line-height: 24px !default;
|
|
17
|
-
$tbar-zero-value: 0 !default;
|
|
18
|
-
$tbar-btn-nrml-line-height: 22px !default;
|
|
19
|
-
$tbar-btn-weight: $font-weight-normal !default;
|
|
20
|
-
$tbar-border-radius: 4px !default;
|
|
21
|
-
$tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
|
|
22
|
-
$tbar-border-nav-type: solid !default;
|
|
23
|
-
$tbar-btn-box-shadow: none !default;
|
|
24
|
-
|
|
25
|
-
$tbar-default-bg: $content-bg-color-alt2 !default;
|
|
26
|
-
$tbar-default-font: $content-text-color !default;
|
|
27
|
-
$tbar-active-bg: $content-bg-color-alt3 !default;
|
|
28
|
-
$tbar-active-icon-color: $icon-color !default;
|
|
29
|
-
$tbar-btn-family: 'Inter' !default;
|
|
30
|
-
$tbar-press-bg: $content-bg-color-alt2 !default;
|
|
31
|
-
$tbar-press-border-color: $border-light !default;
|
|
32
|
-
$tbar-hover-bg: $content-bg-color-alt3 !default;
|
|
33
|
-
$tbar-hover-font: $content-text-color-alt2 !default;
|
|
34
|
-
$tbar-default-icon-color: $icon-color !default;
|
|
35
|
-
$tbar-pressed-bg: $content-bg-color-alt2 !default;
|
|
36
|
-
$tbar-pressed-font: $content-text-color-alt2 !default;
|
|
37
|
-
$tbar-select-font: $content-text-color-alt2 !default;
|
|
38
|
-
$tbar-default-font-overlay: $content-text-color-alt2 !default;
|
|
39
|
-
$tbar-default-icon-overlay: $content-text-color-alt2 !default;
|
|
40
|
-
$tbar-separator-border: $border-light !default;
|
|
41
|
-
$tbar-default-border: $border-light !default;
|
|
42
|
-
$tbar-hover-border-color: $icon-color !default;
|
|
43
|
-
$tbar-focus-border-color: $tbar-hover-border-color !default;
|
|
44
|
-
$tbar-focus-bg: $tbar-hover-bg !default;
|
|
45
|
-
$tbar-press-font: $content-text-color-alt2 !default;
|
|
46
|
-
|
|
47
|
-
$tbar-active-font-color: $tbar-press-font !default;
|
|
48
|
-
$tbar-border-nav-type: $border-light !default;
|
|
49
|
-
$tbar-border-nav-active-type: $border-light !default;
|
|
50
|
-
$tbar-btn-border: none !default;
|
|
51
|
-
|
|
52
|
-
$tbar-box-shadow: none !default;
|
|
53
|
-
$tbar-border-type: $border-type !default;
|
|
54
|
-
$tbar-separator-size: 1px !default;
|
|
55
|
-
$tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
|
|
56
|
-
$tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
|
|
57
|
-
$tbar-popup-border-width: 0 0 0 $border-size !default;
|
|
58
|
-
$tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
|
|
59
|
-
$tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
|
|
60
|
-
$tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
|
|
61
|
-
$tbar-popup-btn-bg-color: transparent !default;
|
|
62
|
-
$tbar-nrml-size: 38px !default;
|
|
63
|
-
$tbar-bgr-size: 48px !default;
|
|
64
|
-
$tbar-nrml-items-size: 38px !default;
|
|
65
|
-
$tbar-bgr-items-size: 48px !default;
|
|
66
|
-
$tbar-nrml-item-size: 38px !default;
|
|
67
|
-
$tbar-item-nrml-minwidth: 28px !default;
|
|
68
|
-
$tbar-bgr-item-size: 49px !default;
|
|
69
|
-
$tbar-btn-font-size: $text-lg !default;
|
|
70
|
-
$tbar-btn-txt-font-size: $text-sm !default;
|
|
71
|
-
|
|
72
|
-
$tbar-item-bgr-padding: 5px 6px !default;
|
|
73
|
-
$tbar-item-nrml-padding: 4px !default;
|
|
74
|
-
$tbar-btn-nrml-padding: 0 4px !default;
|
|
75
|
-
$tbar-btn-bgr-padding: 0 8px !default;
|
|
76
|
-
$tbar-btn-icn-nrml-padding: 4px !default;
|
|
77
|
-
$tbar-btn-icn-bgr-padding: 4px 6px !default;
|
|
78
|
-
$tbar-btn-icn-right-bgr-padding: 4px 6px !default;
|
|
79
|
-
$tbar-btn-icn-right-nrml-padding: 4px !default;
|
|
80
|
-
$btn-txt-nrml-padding: 4px !default;
|
|
81
|
-
$btn-txt-bgr-padding: 4px !default;
|
|
82
|
-
|
|
83
|
-
$tbar-pop-bg: $flyout-bg-color;
|
|
84
|
-
$tbar-item-pop-nrml-padding: 0 !default;
|
|
85
|
-
$tbar-item-pop-bgr-padding: 0 !default;
|
|
86
|
-
$tbar-pop-btn-bgr-padding: 8px 18px !default;
|
|
87
|
-
$tbar-pop-btn-nrml-padding: 6px 12px !default;
|
|
88
|
-
$tbar-pop-icon-bgr-padding: 3px 6px 0 0 !default;
|
|
89
|
-
$tbar-pop-icon-nrml-padding: 3px 4px 0 0 !default;
|
|
90
|
-
$tbar-pop-btn-txt-nrml-pad: 0 0 0 4px !default;
|
|
91
|
-
$tbar-pop-btn-txt-bgr-pad: 0 0 0 6px !default;
|
|
92
|
-
|
|
93
|
-
$tbar-nav-press-border: 0 !default;
|
|
94
|
-
$tbar-nav-hover-border: 0 !default;
|
|
95
|
-
$tbar-nav-focus-border: 0 !default;
|
|
96
|
-
$tbar-nav-pressed-box-shadow: none !default;
|
|
97
|
-
$tbar-btn-border-radius: 0 !default;
|
|
98
|
-
$tbar-btn-pressed-box-shadow: none !default;
|
|
99
|
-
$tbar-btn-bgr-mrgn: 0 !default;
|
|
100
|
-
$tbar-btn-nrml-mrgn: 0 !default;
|
|
101
|
-
$tbar-v-btn-bgr-mrgn: 0 !default;
|
|
102
|
-
$tbar-v-btn-nrml-mrgn: 0 !default;
|
|
103
|
-
$tbar-popup-padding: 0 !default;
|
|
104
|
-
$tbar-btn-nrml-minheight: 30px !default;
|
|
105
|
-
$tbar-btn-bgr-minheight: 38px !default;
|
|
106
|
-
$tbar-btn-nrml-minwidth: 30px !default;
|
|
107
|
-
$tbar-btn-bgr-minwidth: 38px !default;
|
|
108
|
-
$tbar-btn-bgr-height: calc(100% - 11px) !default;
|
|
109
|
-
$tbar-btn-nrml-height: calc(100% - 10px) !default;
|
|
110
|
-
$tbar-separator-nrml-height: 24px !default;
|
|
111
|
-
$tbar-separator-bgr-height: 30px !default;
|
|
112
|
-
$tbar-separator-nrml-minheight: $tbar-separator-nrml-height !default;
|
|
113
|
-
$tbar-separator-bgr-minheight: $tbar-separator-bgr-height !default;
|
|
114
|
-
$tbar-btn-icon-nrml-width: 12px !default;
|
|
115
|
-
$tbar-btn-icon-nrml-height: 16px !default;
|
|
116
|
-
$tbar-btn-icon-nrml-line-height: 16px !default;
|
|
117
|
-
$tbar-left-item-line-height: 35px !default;
|
|
118
|
-
$tbar-right-item-line-height: 24px !default;
|
|
119
|
-
$tbar-btn-icon-bgr-width: 13px !default;
|
|
120
|
-
$tbar-btn-icon-bgr-height: 18px !default;
|
|
121
|
-
$tbar-btn-icon-bgr-line-height: 18px !default;
|
|
122
|
-
$tbar-btn-txt-line-height: inherit !default;
|
|
123
|
-
$tbar-nav-nrml-width: 28px !default;
|
|
124
|
-
$tbar-nav-bgr-width: 36px !default;
|
|
125
|
-
$tbar-item-nrml-mrgn: 8px !default;
|
|
126
|
-
$tbar-item-bgr-mrgn: 10px !default;
|
|
127
|
-
$tbar-btn-pop-nrml-minheight: 38px !default;
|
|
128
|
-
$tbar-btn-pop-bgr-minheight: 48px !default;
|
|
129
|
-
$tbar-multirow-items-mrgn-bigger: 12.5px !default;
|
|
130
|
-
$tbar-multirow-items-mrgn-small: 10px !default;
|
|
131
|
-
$tbar-multirow-item-top-btm-mrgn-bigger: 1.5px 0 !default;
|
|
132
|
-
$tbar-multirow-item-top-btm-mrgn-small: 1px 0 !default;
|
|
133
|
-
$tbar-multirow-item-mrgn: 0 !default;
|
|
134
|
-
$tbar-item-bgr-padding-bigger: 1.5px 0 !default;
|
|
135
|
-
$tbar-item-nrml-padding-small: 1px 0 !default;
|
|
136
|
-
|
|
137
|
-
@mixin tbar-btn-animation {
|
|
138
|
-
content: '';
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
@mixin tbar-btn-animation-after {
|
|
142
|
-
content: '';
|
|
143
|
-
}
|
|
1
|
+
@import './tailwind-definition.scss';
|