@syncfusion/ej2-navigations 21.2.8 → 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 +29 -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 +328 -107
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +332 -107
- 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 +9 -1
- 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 +5 -1
- package/src/toolbar/toolbar.js +33 -14
- 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
|
@@ -0,0 +1,661 @@
|
|
|
1
|
+
/*! Tab's material3 theme wise override definitions and variables */
|
|
2
|
+
/* stylelint-disable */
|
|
3
|
+
/*! Horizontal Tab */
|
|
4
|
+
$tab-skin: 'material3' !default;
|
|
5
|
+
|
|
6
|
+
// font definitions
|
|
7
|
+
$tab-font-family: $font-family !default;
|
|
8
|
+
$tab-big-vertical-nav-arrow-font-size: $text-2xl !default;
|
|
9
|
+
$tab-nrml-vertical-nav-arrow-font-size: $text-lg !default;
|
|
10
|
+
$tab-content-font-color: rgba($content-text-color-alt1) !default;
|
|
11
|
+
$tab-big-font-size: $text-sm !default;
|
|
12
|
+
$tab-nrml-font-size: $text-sm !default;
|
|
13
|
+
$tab-font-weight: 500 !default;
|
|
14
|
+
$tab-semi-font-weight: 500 !default;
|
|
15
|
+
$tab-light-font-weight: 500 !default;
|
|
16
|
+
|
|
17
|
+
// dimension definitions
|
|
18
|
+
$tab-big-height: 48px !default;
|
|
19
|
+
$tab-nrml-height: 40px !default;
|
|
20
|
+
$tab-focus-big-height: 48px !default;
|
|
21
|
+
$tab-focus-nrml-height: 40px !default;
|
|
22
|
+
$tab-active-big-height: 48px !default;
|
|
23
|
+
$tab-active-nrml-height: 40px !default;
|
|
24
|
+
$tab-active-focus-big-height: 48px !default;
|
|
25
|
+
$tab-active-focus-nrml-height: 40px !default;
|
|
26
|
+
$tab-big-fill-height: 48px !default;
|
|
27
|
+
$tab-nrml-fill-height: 40px !default;
|
|
28
|
+
$tab-mob-fill-height: 48px !default;
|
|
29
|
+
$tab-focus-big-fill-height: 48px !default;
|
|
30
|
+
$tab-focus-nrml-fill-height: 40px !default;
|
|
31
|
+
$tab-disable-cnt-opacity: .38 !default;
|
|
32
|
+
$tab-big-tb-icon-height: 78px !default;
|
|
33
|
+
$tab-nrml-tb-icon-height: 68px !default;
|
|
34
|
+
$tab-big-vertical-scroll-nav-top-bottom: 23px !default;
|
|
35
|
+
$tab-big-vertical-nav-arrow-size: 24px !default;
|
|
36
|
+
$tab-nrml-vertical-scroll-nav-top-bottom: 15px !default;
|
|
37
|
+
$tab-nrml-vertical-nav-arrow-size: 18px !default;
|
|
38
|
+
$tab-text-transform: capitalize !default;
|
|
39
|
+
$tab-border-width: 3px !default;
|
|
40
|
+
$tab-border-style: $tab-border-width Solid !default;
|
|
41
|
+
$tab-focus-outline: 0 !default;
|
|
42
|
+
$tab-active-focus-outline: 0 !default;
|
|
43
|
+
$tab-active-text-item-border: 0 !default;
|
|
44
|
+
$tab-pop-up-icon-hover-border: $tab-active-text-item-border !default;
|
|
45
|
+
$tab-pop-up-icon-focus-border: $tab-active-text-item-border !default;
|
|
46
|
+
$tab-pop-up-down-icon-hover-border: $tab-active-text-item-border !default;
|
|
47
|
+
$tab-pop-up-icon-active-border: $tab-active-text-item-border !default;
|
|
48
|
+
$tab-disable-active-text-item-border: 0 !default;
|
|
49
|
+
$tab-fill-hdr-border: 1px solid rgba($series-1) !default;
|
|
50
|
+
$tab-fill-disable-hdr-border: 0 !default;
|
|
51
|
+
$tab-anim-border-display: none !default;
|
|
52
|
+
$tab-border: none !default;
|
|
53
|
+
$tab-focus-hscroll-content-padding: 1px 0 !default;
|
|
54
|
+
$tab-hdr-border-width: 0 0 1px 0 !default;
|
|
55
|
+
$tab-alt-hdr-border: 0 !default;
|
|
56
|
+
$tab-items-border: 0 !default;
|
|
57
|
+
$tab-big-item-margin: 0 !default;
|
|
58
|
+
$tab-nrml-item-margin: 0 !default;
|
|
59
|
+
$tab-big-item-padding: 0 !default;
|
|
60
|
+
$tab-nrml-item-padding: 0 !default;
|
|
61
|
+
$tab-big-icon-top-bottom-item-height: 78px !default;
|
|
62
|
+
$tab-nrml-icon-top-bottom-item-height: 68px !default;
|
|
63
|
+
$tab-pop-big-icon-top-bottom-item-height: 48px !default;
|
|
64
|
+
$tab-pop-nrml-icon-top-bottom-item-height: 40px !default;
|
|
65
|
+
$tab-big-focus-icon-top-bottom-item-height: 78px !default;
|
|
66
|
+
$tab-nrml-focus-icon-top-bottom-item-height: 68px !default;
|
|
67
|
+
$tab-big-fill-icon-top-bottom-item-height: 78px !default;
|
|
68
|
+
$tab-nrml-fill-icon-top-bottom-item-height: 68px !default;
|
|
69
|
+
$tab-big-focus-fill-icon-top-bottom-item-height: 78px !default;
|
|
70
|
+
$tab-nrml-focus-fill-icon-top-bottom-item-height: 68px !default;
|
|
71
|
+
$tab-big-first-item-margin: 0 !default;
|
|
72
|
+
$tab-nrml-first-item-margin: 0 !default;
|
|
73
|
+
$tab-big-last-item-margin: 0 !default;
|
|
74
|
+
$tab-nrml-last-item-margin: 0 !default;
|
|
75
|
+
$tab-big-active-last-item-margin: 0 !default;
|
|
76
|
+
$tab-nrml-active-last-item-margin: 0 !default;
|
|
77
|
+
$tab-big-scroll-last-item-margin: 0 !default;
|
|
78
|
+
$tab-nrml-scroll-last-item-margin: 0 !default;
|
|
79
|
+
$tab-nrml-active-scroll-last-item-margin: 0 !default;
|
|
80
|
+
$tab-mob-last-item-margin: 0 !default;
|
|
81
|
+
$tab-big-even-last-item-margin: 0 !default;
|
|
82
|
+
$tab-nrml-even-last-item-margin: 0 !default;
|
|
83
|
+
$tab-mob-even-last-item-margin: 0 !default;
|
|
84
|
+
$tab-big-alt-first-item-margin: 0 !default;
|
|
85
|
+
$tab-nrml-alt-first-item-margin: 0 !default;
|
|
86
|
+
$tab-pop-item-margin: 0 !default;
|
|
87
|
+
$tab-big-pop-item-height: $tab-big-height !default;
|
|
88
|
+
$tab-nrml-pop-item-height: 40px !default;
|
|
89
|
+
$tab-alt-item-margin: 0 !default;
|
|
90
|
+
$tab-big-rtl-item-margin: 0 !default;
|
|
91
|
+
$tab-nrml-rtl-item-margin: 0 !default;
|
|
92
|
+
$tab-big-rtl-alt-item-margin: 0 !default;
|
|
93
|
+
$tab-nrml-rtl-alt-item-margin: 0 !default;
|
|
94
|
+
$tab-mob-pop-item-height: 50px !default;
|
|
95
|
+
$tab-item-border: none !default;
|
|
96
|
+
$tab-active-item-border: none !default;
|
|
97
|
+
$tab-active-item-hide-border: initial !default;
|
|
98
|
+
$tab-active-item-border-color: rgba($primary) !default;
|
|
99
|
+
$tab-big-boot-item-margin: 0 !default;
|
|
100
|
+
$tab-nrml-boot-item-margin: 0 !default;
|
|
101
|
+
$tab-big-scroll-boot-item-margin: 0 2px 0 0 !default;
|
|
102
|
+
$tab-nrml-scroll-boot-item-margin: 0 2px 0 0 !default;
|
|
103
|
+
$tab-mob-boot-item-margin: 0 !default;
|
|
104
|
+
$tab-big-even-boot-item-margin: 0 !default;
|
|
105
|
+
$tab-nrml-even-boot-item-margin: 0 !default;
|
|
106
|
+
$tab-mob-even-boot-item-margin: 0 !default;
|
|
107
|
+
$tab-big-boot-active-item-padding-bottom: 0 !default;
|
|
108
|
+
$tab-nrml-boot-active-item-padding-bottom: 0 !default;
|
|
109
|
+
$tab-big-even-boot-active-item-padding-bottom: 0 !default;
|
|
110
|
+
$tab-nrml-even-boot-active-item-padding-bottom: 0 !default;
|
|
111
|
+
$tab-active-item-border-radius: 0 !default;
|
|
112
|
+
$tab-item-wrap-border-radius: 0 !default;
|
|
113
|
+
$tab-top-active-item-border-radius: 0 !default;
|
|
114
|
+
$tab-bottom-active-item-border-radius: 0 !default;
|
|
115
|
+
$tab-left-active-item-border-radius: 0 !default;
|
|
116
|
+
$tab-right-active-item-border-radius: 0 !default;
|
|
117
|
+
$tab-hscroll-item-padding: 0 !default;
|
|
118
|
+
$tab-big-item-last-child-padding-bottom: 0 !default;
|
|
119
|
+
$tab-nrml-item-last-child-padding-bottom: 0 !default;
|
|
120
|
+
$tab-big-wrap-padding: 0 16px !default;
|
|
121
|
+
$tab-nrml-wrap-padding: 0 12px !default;
|
|
122
|
+
$tab-mob-wrap-padding: 0 15px !default;
|
|
123
|
+
$tab-pop-padding: 0 !default;
|
|
124
|
+
$tab-big-pop-item-wrap-padding: 0 16px !default;
|
|
125
|
+
$tab-nrml-pop-item-wrap-padding: 0 12px !default;
|
|
126
|
+
$tab-mob-pop-item-wrap-padding: 0 16px !default;
|
|
127
|
+
$tab-big-io-text-wrap-width: auto !default;
|
|
128
|
+
$tab-nrml-io-text-wrap-width: auto !default;
|
|
129
|
+
$tab-big-io-wrap-padding: 9px !default;
|
|
130
|
+
$tab-nrml-io-wrap-padding: 9px !default;
|
|
131
|
+
$tab-wrap-focus-margin-right: 0 !default;
|
|
132
|
+
$tab-wrap-focus-margin-left: 0 !default;
|
|
133
|
+
$tab-big-even-ileft-active-text-wrap-margin: 0 !default;
|
|
134
|
+
$tab-nrml-even-ileft-active-text-wrap-margin: 0 !default;
|
|
135
|
+
$tab-big-fill-tb-wrap-height: auto !default;
|
|
136
|
+
$tab-nrml-fill-tb-wrap-height: auto !default;
|
|
137
|
+
$tab-fill-active-wrap-corner: 3px 3px 0 0 !default;
|
|
138
|
+
$tab-fill-even-active-wrap-corner: 0 0 3px 3px !default;
|
|
139
|
+
$tab-alt-tb-active-bg-color: rgba($transparent, 0.0001) !default;
|
|
140
|
+
$tab-fill-big-wrap-padding: 0 16px !default;
|
|
141
|
+
$tab-fill-nrml-wrap-padding: 0 12px !default;
|
|
142
|
+
$tab-mob-fill-wrap-padding: 0 15px !default;
|
|
143
|
+
$tab-bg-big-wrap-padding: 0 16px !default;
|
|
144
|
+
$tab-bg-nrml-wrap-padding: 0 12px !default;
|
|
145
|
+
$tab-alt-disable-active-item-opacity: .38 !default;
|
|
146
|
+
$tab-big-active-item-wrap-margin-bottom: 1px !default;
|
|
147
|
+
$tab-nrml-active-item-wrap-margin-bottom: 0 !default;
|
|
148
|
+
$tab-fill-big-active-item-wrap-margin-bottom: 0 !default;
|
|
149
|
+
$tab-fill-nrml-active-item-wrap-margin-bottom: 0 !default;
|
|
150
|
+
$tab-bg-big-active-item-wrap-margin-bottom: 0 !default;
|
|
151
|
+
$tab-bg-nrml-active-item-wrap-margin-bottom: 0 !default;
|
|
152
|
+
$tab-alt-big-active-item-padding: 0 !default;
|
|
153
|
+
$tab-alt-nrml-active-item-padding: 0 !default;
|
|
154
|
+
$tab-active-text-container-margin: 0 !default;
|
|
155
|
+
$tab-big-text-container-margin-right: 20px !default;
|
|
156
|
+
$tab-nrml-text-container-margin-right: 20px !default;
|
|
157
|
+
$tab-rtl-big-text-container-margin-right: 0 !default;
|
|
158
|
+
$tab-rtl-nrml-text-container-margin-right: 0 !default;
|
|
159
|
+
$tab-rtl-big-text-container-margin-left: 9px !default;
|
|
160
|
+
$tab-rtl-nrml-text-container-margin-left: 9px !default;
|
|
161
|
+
$tab-big-active-text-container-height: 48px !default;
|
|
162
|
+
$tab-big-active-it-text-container-height: 48px !default;
|
|
163
|
+
$tab-fill-big-active-it-text-container-height: 48px !default;
|
|
164
|
+
$tab-fill-nrml-active-it-text-container-height: 40px !default;
|
|
165
|
+
$tab-big-even-active-text-container-height: 48px !default;
|
|
166
|
+
$tab-nrml-even-active-text-container-height: 40px !default;
|
|
167
|
+
$tab-even-active-text-container-margin: 0 !default;
|
|
168
|
+
$tab-big-it-text-margin: 0 0 0 4px !default;
|
|
169
|
+
$tab-nrml-it-text-margin: 0 0 0 4px !default;
|
|
170
|
+
$tab-mob-it-text-margin: 0 0 0 8px !default;
|
|
171
|
+
$tab-rtl-mob-it-text-margin: 0 8px 0 0 !default;
|
|
172
|
+
$tab-rtl-big-it-text-margin: 0 8px 0 0 !default;
|
|
173
|
+
$tab-rtl-nrml-it-text-margin: 0 8px 0 0 !default;
|
|
174
|
+
$tab-big-icon-top-margin: 4px 0 0 !default;
|
|
175
|
+
$tab-nrml-icon-top-margin: 4px 0 0 !default;
|
|
176
|
+
$tab-big-icon-bottom-margin: 0 0 10px !default;
|
|
177
|
+
$tab-nrml-icon-bottom-margin: 0 0 4px !default;
|
|
178
|
+
$tab-big-pop-text-padding-right: 12px !default;
|
|
179
|
+
$tab-nrml-pop-text-padding-right: 10px !default;
|
|
180
|
+
$tab-rtl-big-pop-text-padding-left: 12px !default;
|
|
181
|
+
$tab-rtl-nrml-pop-text-padding-left: 10px !default;
|
|
182
|
+
$tab-big-even-active-text-height: 48px !default;
|
|
183
|
+
$tab-nrml-even-active-text-height: 40px !default;
|
|
184
|
+
$tab-fill-big-even-active-text-height: 48px !default;
|
|
185
|
+
$tab-fill-nrml-even-active-text-height: 40px !default;
|
|
186
|
+
$tab-icon-container-width: auto !default;
|
|
187
|
+
$tab-big-nav-icon-container-size: 48px !default;
|
|
188
|
+
$tab-nrml-nav-icon-container-size: 40px !default;
|
|
189
|
+
$tab-big-nav-icon-size: $text-2xl !default;
|
|
190
|
+
$tab-nrml-nav-icon-size: $text-lg !default;
|
|
191
|
+
$tab-mob-nav-icon-size: $text-xl !default;
|
|
192
|
+
$tab-mob-nav-vicon-size: $text-xl !default;
|
|
193
|
+
$tab-big-icon-size: $text-sm !default;
|
|
194
|
+
$tab-nrml-icon-size: $text-sm !default;
|
|
195
|
+
$tab-mob-icon-size: $text-xl !default;
|
|
196
|
+
$tab-big-icon-container-size: 28px !default;
|
|
197
|
+
$tab-nrml-icon-container-size: 24px !default;
|
|
198
|
+
$tab-mob-icon-container-size: 20px !default;
|
|
199
|
+
$tab-big-nav-icon-top: 11px !default;
|
|
200
|
+
$tab-nrml-nav-icon-top: 5px !default;
|
|
201
|
+
$tab-big-nav-pop-icon-top: 13px !default;
|
|
202
|
+
$tab-nrml-nav-pop-icon-top: 8px !default;
|
|
203
|
+
$tab-big-safari-nav-icon-top: 4px !default;
|
|
204
|
+
$tab-nrml-safari-nav-icon-top: 4px !default;
|
|
205
|
+
$tab-big-safari-pop-icon-top: 6px !default;
|
|
206
|
+
$tab-nrml-safari-pop-icon-top: 6px !default;
|
|
207
|
+
$tab-big-ie-nav-icon-line-height: 24px !default;
|
|
208
|
+
$tab-nrml-ie-nav-icon-line-height: 18px !default;
|
|
209
|
+
$tab-big-ie-pop-icon-line-height: 24px !default;
|
|
210
|
+
$tab-nrml-ie-pop-icon-line-height: 18px !default;
|
|
211
|
+
$tab-big-edge-nav-icon-line-height: 24px !default;
|
|
212
|
+
$tab-nrml-edge-nav-icon-line-height: 18px !default;
|
|
213
|
+
$tab-big-edge-pop-icon-line-height: 24px !default;
|
|
214
|
+
$tab-nrml-edge-pop-icon-line-height: 18px !default;
|
|
215
|
+
$tab-close-icon-size: 14px !default;
|
|
216
|
+
$tab-big-close-icon-size: 14px !default;
|
|
217
|
+
$tab-nrml-close-icon-size: 14px !default;
|
|
218
|
+
$tab-mob-close-icon-size: 12px !default;
|
|
219
|
+
$tab-close-icon-minwidth: 14px !default;
|
|
220
|
+
$tab-big-close-icon-margin: 0 0 0 10px !default;
|
|
221
|
+
$tab-nrml-close-icon-margin: 0 0 0 10px !default;
|
|
222
|
+
$tab-mob-close-icon-margin: 0 0 0 4px !default;
|
|
223
|
+
$tab-rtl-mob-close-icon-margin: 0 4px 0 0 !default;
|
|
224
|
+
$tab-rtl-big-close-icon-margin: 0 8px 0 0 !default;
|
|
225
|
+
$tab-rtl-nrml-close-icon-margin: 0 4px 0 0 !default;
|
|
226
|
+
$tab-rtl-big-pop-close-icon-margin: 0 !default;
|
|
227
|
+
$tab-rtl-nrml-pop-close-icon-margin: 0 !default;
|
|
228
|
+
$tab-big-close-icon-top-bottom-right: 20px !default;
|
|
229
|
+
$tab-nrml-close-icon-top-bottom-right: 15px !default;
|
|
230
|
+
$tab-big-pop-close-icon-top-bottom-right: 24px !default;
|
|
231
|
+
$tab-nrml-pop-close-icon-top-bottom-right: 20px !default;
|
|
232
|
+
$tab-rtl-big-close-icon-top-bottom-right: 0 !default;
|
|
233
|
+
$tab-rtl-nrml-close-icon-top-bottom-right: 0 !default;
|
|
234
|
+
$tab-rtl-big-close-icon-top-bottom-left: 20px !default;
|
|
235
|
+
$tab-rtl-nrml-close-icon-top-bottom-left: 15px !default;
|
|
236
|
+
$tab-rtl-big-pop-close-icon-top-bottom-left: 24px !default;
|
|
237
|
+
$tab-rtl-nrml-pop-close-icon-top-bottom-left: 20px !default;
|
|
238
|
+
$tab-pop-close-icon-right: 16px !default;
|
|
239
|
+
$tab-rtl-pop-close-icon-left: 16px !default;
|
|
240
|
+
$tab-mob-close-icon-top-bottom-right: 12px !default;
|
|
241
|
+
$tab-rtl-mob-close-icon-top-bottom-left: 12px !default;
|
|
242
|
+
$tab-big-pop-close-top: 0 !default;
|
|
243
|
+
$tab-nrml-pop-close-top: 0 !default;
|
|
244
|
+
$tab-big-safari-close-icon-top: 0 !default;
|
|
245
|
+
$tab-nrml-safari-close-icon-top: -1px !default;
|
|
246
|
+
$tab-pop-border: 1px $black !default;
|
|
247
|
+
$tab-pop-border-radius: 4px !default;
|
|
248
|
+
$tab-big-nav-right-icon-padding: 0 !default;
|
|
249
|
+
$tab-nrml-nav-right-icon-padding: 0 !default;
|
|
250
|
+
$tab-mob-nav-right-icon-padding: 0 !default;
|
|
251
|
+
$tab-rtl-big-nav-right-icon-padding: 0 !default;
|
|
252
|
+
$tab-rtl-nrml-nav-right-icon-padding: 0 !default;
|
|
253
|
+
$tab-big-nav-left-icon-padding: 0 !default;
|
|
254
|
+
$tab-nrml-nav-left-icon-padding: 0 !default;
|
|
255
|
+
$tab-rtl-big-nav-left-icon-padding: 0 !default;
|
|
256
|
+
$tab-rtl-nrml-nav-left-icon-padding: 0 !default;
|
|
257
|
+
$tab-big-nav-tb-icon-top: 0 !default;
|
|
258
|
+
$tab-nrml-nav-tb-icon-top: 0 !default;
|
|
259
|
+
$tab-big-nav-icons-top: -2px !default;
|
|
260
|
+
$tab-nrml-nav-icons-top: 0 !default;
|
|
261
|
+
|
|
262
|
+
// color definitions
|
|
263
|
+
$tab-border-color: rgba($primary) !default;
|
|
264
|
+
$tab-hover-border-color: $transparent !default;
|
|
265
|
+
$tab-disable-border-color: rgba($transparent, .38) !default;
|
|
266
|
+
$tab-alt-border-color: rgba($primary-text-color) !default;
|
|
267
|
+
$tab-alt-disable-border-color: $transparent !default;
|
|
268
|
+
$tab-bg-color: $transparent !default;
|
|
269
|
+
$tab-focused-wrap-focus-border-color: $transparent !default;
|
|
270
|
+
$tab-alt-hdr-bg-color: rgba($primary) !default;
|
|
271
|
+
$tab-hdr-bdr-color: $transparent !default;
|
|
272
|
+
$tab-hdr-border: 0 !default;
|
|
273
|
+
$tab-ripple-bg-color: rgba($transparent, .12) !default;
|
|
274
|
+
$tab-fill-ripple-bg-color: rgba($primary, .05) !default;
|
|
275
|
+
$tab-alt-ripple-bg-color: rgba($transparent, .1) !default;
|
|
276
|
+
$tab-focus-bg-color: rgba($content-text-color-alt1, .16) !default;
|
|
277
|
+
$tab-fill-focus-bg-color: rgba($primary) !default;
|
|
278
|
+
$tab-active-focus-bg-color: rgba($primary, .16) !default;
|
|
279
|
+
$tab-hover-bg-color: ($content-bg-color-hover, .08) !default;
|
|
280
|
+
$tab-active-bg-color: rgba($content-text-color-alt1, .12) !default;
|
|
281
|
+
$tab-fill-active-bg-color: rgba($primary) !default;
|
|
282
|
+
$tab-fill-disable-active-bg-color: rgba($primary, .38) !default;
|
|
283
|
+
$tab-alt-active-bg-color: rgba($primary) !default;
|
|
284
|
+
$tab-alt-disable-active-bg-color: rgba($primary) !default;
|
|
285
|
+
$tab-alt-item-bg-color: inherit !default;
|
|
286
|
+
$tab-alt-active-focus-bg-color: rgba($primary, .16) !default;
|
|
287
|
+
$tab-key-alt-active-focus-bg-color: rgba($primary, .12) !default;
|
|
288
|
+
$tab-alt-hover-bg-color: $primary-bg-color-hover !default;
|
|
289
|
+
$tab-alt-focus-top-bottom-bg-color: inherit !default;
|
|
290
|
+
$tab-item-hover-bg-color: $transparent !default;
|
|
291
|
+
$tab-bg-item-wrap-hover-bg-color: rgba($primary-text-color, .08) !default;
|
|
292
|
+
$tab-mob-item-hover-bg-color: initial !default;
|
|
293
|
+
$tab-pop-text-color: rgba($flyout-text-color) !default;
|
|
294
|
+
$tab-text-color: rgba($content-text-color-alt1) !default;
|
|
295
|
+
$tab-disable-text-color: rgba($content-text-color, .38) !default;
|
|
296
|
+
$tab-mob-text-color: rgba($content-text-color-alt1) !default;
|
|
297
|
+
$tab-active-text-color: rgba($primary) !default;
|
|
298
|
+
$tab-disable-active-text-color: rgba($content-text-color) !default;
|
|
299
|
+
$tab-focus-text-color: rgba($content-text-color-alt1) !default;
|
|
300
|
+
$tab-hover-text-color: rgba($content-text-color-alt1) !default;
|
|
301
|
+
$tab-pop-active-item-text-color: rgba($flyout-text-color-selected) !default;
|
|
302
|
+
$tab-alt-text-color: rgba($primary-text-color) !default;
|
|
303
|
+
$tab-alt-disable-text-color: rgba($primary-text-color, .38) !default;
|
|
304
|
+
$tab-alt-active-style-hover-text-color: rgba($primary-text-color) !default;
|
|
305
|
+
$tab-alt-active-style-hover-icon-color: $tab-alt-active-style-hover-text-color !default;
|
|
306
|
+
$tab-alt-disable-active-text-color: rgba($primary-text-color) !default;
|
|
307
|
+
$tab-alt-hover-text-color: rgba($primary-text-color) !default;
|
|
308
|
+
$tab-alt-active-hover-text-color: rgba($primary-text-color) !default;
|
|
309
|
+
$tab-clone-item-bg-color: $content-bg-color-alt2 !default;
|
|
310
|
+
$tab-clone-text-color: rgba($content-text-color-alt1) !default;
|
|
311
|
+
$tab-comb-icon-color: rgba($primary) !default;
|
|
312
|
+
$tab-wrap-comb-icon-color: rgba($icon-color) !default;
|
|
313
|
+
$tab-comb-text-color: rgba($primary) !default;
|
|
314
|
+
$tab-close-icon-color: rgba($icon-color) !default;
|
|
315
|
+
$tab-mob-close-icon-color: rgba($icon-color) !default;
|
|
316
|
+
$tab-active-close-icon-color: rgba($primary) !default;
|
|
317
|
+
$tab-close-icon-hover-color: $tab-hover-text-color !default;
|
|
318
|
+
$tab-close-icon-active-color: rgba($primary) !default;
|
|
319
|
+
$tab-alt-active-text-color: rgba($primary-text-color) !default;
|
|
320
|
+
$tab-alt-close-icon-color: $tab-alt-hover-text-color !default;
|
|
321
|
+
$tab-alt-active-wrap-close-icon-color: $tab-alt-close-icon-color !default;
|
|
322
|
+
$tab-alt-active-close-icon-color: rgba($primary-text-color) !default;
|
|
323
|
+
$tab-alt-active-hover-close-icon-color: rgba($primary-text-color) !default;
|
|
324
|
+
$tab-pop-bg-color: $flyout-bg-color !default;
|
|
325
|
+
$tab-hover-nav-bg-color: $content-bg-color-hover !default;
|
|
326
|
+
$tab-bg-hover-nav-bg-color: inherit !default;
|
|
327
|
+
$tab-nav-icon-color: rgba($icon-color) !default;
|
|
328
|
+
$tab-alt-nav-icon-color: $tab-alt-text-color !default;
|
|
329
|
+
$tab-active-nav-icon-color: $tab-active-text-color !default;
|
|
330
|
+
$tab-hover-nav-icon-color: $tab-hover-text-color !default;
|
|
331
|
+
$tab-alt-hover-nav-icon-color: $tab-alt-hover-text-color !default;
|
|
332
|
+
$tab-disable-nav-icon-color: rgba($content-text-color-alt1) !default;
|
|
333
|
+
$tab-nav-focus-bg-color: ($content-bg-color-focus, 0.1) !default;
|
|
334
|
+
$tab-nav-focus-icon-color: rgba($icon-color) !default;
|
|
335
|
+
$tab-bg-nav-focus-icon-color: rgba($icon-color) !default;
|
|
336
|
+
$tab-pop-icon-color: rgba($icon-color) !default;
|
|
337
|
+
$tab-pop-icon-hover-bg-color: $content-bg-color-hover !default;
|
|
338
|
+
$tab-pop-icon-hover-border: 1px solid $transparent !default;
|
|
339
|
+
$tab-pop-icon-focus-border: 1px solid $transparent !default;
|
|
340
|
+
$tab-pop-icon-active-border: 1px solid $transparent !default;
|
|
341
|
+
$tab-pop-border-box-shadow: none !default;
|
|
342
|
+
$tab-bg-hover-nav-icon-color: rgba($primary-text-color) !default;
|
|
343
|
+
|
|
344
|
+
$tab-nav-pop-press-border: 3px solid $transparent !default;
|
|
345
|
+
$tab-nav-pop-press-active-border: 3px solid $transparent !default;
|
|
346
|
+
$tab-pop-box-shadow: $shadow-md rgba(0, 0, 0, 0.1), $shadow-md rgba(0, 0, 0, 0.13) !default;
|
|
347
|
+
$tab-pop-icon-transition: none !default;
|
|
348
|
+
$tab-pop-up-icon-transform: rotate(0deg) !default;
|
|
349
|
+
$tab-pop-down-icon-transform: rotate(0deg) !default;
|
|
350
|
+
|
|
351
|
+
$tab-bgr-active-last-margin: 0 !default;
|
|
352
|
+
$tab-bgr-hscroll-items-nav-width: 48px !default;
|
|
353
|
+
$tab-bgr-item-textwrap-height: 48px !default;
|
|
354
|
+
$tab-bgr-active-icon-top: -.5px !default;
|
|
355
|
+
$tab-bgr-icon-line-height: $tab-big-icon-container-size !default;
|
|
356
|
+
$tab-bgr-mob-item-iconright-margin: 0 !default;
|
|
357
|
+
$tab-bgr-pop-item-textwrap-height: $tab-big-pop-item-height !default;
|
|
358
|
+
$tab-bgr-scroll-nav-arrow-before-top: 0 !default;
|
|
359
|
+
$tab-bgr-hor-pop-lineheight: 48px !default;
|
|
360
|
+
$tab-bgr-hor-focus-pop-hover-top: -2px !default;
|
|
361
|
+
$tab-bgr-bottom-active-close-top: .5px !default;
|
|
362
|
+
$tab-bgr-bottom-active-itop-close-top: 1.5px !default;
|
|
363
|
+
$tab-bgr-bottom-active-text-padding-top: .5px !default;
|
|
364
|
+
$tab-bgr-bottom-active-last-close-top: 0 !default;
|
|
365
|
+
$tab-bgr-vertical-icon-min-height: 32px !default;
|
|
366
|
+
$tab-bgr-vertical-icon-min-width: auto !default;
|
|
367
|
+
$tab-bgr-rtl-bottom-item-margin: 0 !default;
|
|
368
|
+
$tab-bgr-rtl-bottom-active-margin: 0 !default;
|
|
369
|
+
$tab-bgr-fill-first-last-padding: 0 !default;
|
|
370
|
+
$tab-bgr-fill-item-textwrap-height: 48px !default;
|
|
371
|
+
$tab-bgr-fill-active-ileft-textwrap-height: 48px !default;
|
|
372
|
+
$tab-bgr-fill-focused-wrap-height: $tab-focus-big-fill-height !default;
|
|
373
|
+
$tab-bgr-rtl-icon-right-margin: 0 !default;
|
|
374
|
+
$tab-bgr-background-active-padding: $tab-alt-big-active-item-padding !default;
|
|
375
|
+
$tab-bgr-fill-active-item-padding: 0 !default;
|
|
376
|
+
$tab-bgr-item-text-margin-bottom: 0 !default;
|
|
377
|
+
|
|
378
|
+
$tab-nrml-hscroll-items-nav-width: 40px !default;
|
|
379
|
+
$tab-nrml-hscroll-items-bdr-radius: 4px !default;
|
|
380
|
+
$tab-nrml-item-text-wrap-height: 40px !default;
|
|
381
|
+
$tab-nrml-item-tabicon-line-height: $tab-nrml-icon-container-size !default;
|
|
382
|
+
$tab-nrml-pop-item-textwrap-height: $tab-nrml-pop-item-height !default;
|
|
383
|
+
$tab-nrml-scroll-nav-arrow-before-top: 0 !default;
|
|
384
|
+
$tab-nrml-hor-pop-lineheight: 40px !default;
|
|
385
|
+
$tab-nrml-mob-hor-pop-lineheight: 43px !default;
|
|
386
|
+
$tab-nrml-hor-focus-pop-lineheight: 40px !default;
|
|
387
|
+
$tab-nrml-hor-focus-pop-hover-top: -.5px !default;
|
|
388
|
+
$tab-nrml-vertical-icon-min-height: 40px !default;
|
|
389
|
+
$tab-nrml-vertical-icon-min-width: 33px !default;
|
|
390
|
+
$tab-nrml-vertical-tabicon-margin: 0 !default;
|
|
391
|
+
$tab-nrml-vertical-rtl-active-margin: 0 !default;
|
|
392
|
+
$tab-nrml-fill-item-textwrap-height: 40px !default;
|
|
393
|
+
$tab-nrml-fill-focused-wrap-height: $tab-focus-nrml-fill-height !default;
|
|
394
|
+
$tab-nrml-rtl-icon-right-margin: 0 !default;
|
|
395
|
+
$tab-nrml-hdr-before-display: block !default;
|
|
396
|
+
$tab-nrml-item-active-position: unset !default;
|
|
397
|
+
$tab-nrml-item-active-hover-before-left: unset !default;
|
|
398
|
+
$tab-nrml-item-active-hover-before-right: unset !default;
|
|
399
|
+
$tab-nrml-item-active-before-bg-font: unset !default;
|
|
400
|
+
$tab-nrml-item-active-before-bottom: unset !default;
|
|
401
|
+
$tab-nrml-item-active-before-content: unset !default;
|
|
402
|
+
$tab-nrml-item-active-before-height: unset !default;
|
|
403
|
+
$tab-nrml-item-active-before-left: unset !default;
|
|
404
|
+
$tab-nrml-item-active-before-position: unset !default;
|
|
405
|
+
$tab-nrml-item-active-before-transition: unset !default;
|
|
406
|
+
$tab-nrml-item-active-after-font: unset !default;
|
|
407
|
+
$tab-nrml-item-active-after-content: unset !default;
|
|
408
|
+
$tab-nrml-item-active-after-display: unset !default;
|
|
409
|
+
$tab-nrml-item-active-after-font-weight: unset !default;
|
|
410
|
+
$tab-nrml-item-active-after-height: unset !default;
|
|
411
|
+
$tab-nrml-item-active-after-overflow: unset !default;
|
|
412
|
+
$tab-nrml-hscroll-bar-padding: 0 !default;
|
|
413
|
+
$tab-nrml-vertical-indicator-bdr-radius: 3px 3px 0 0 !default;
|
|
414
|
+
$tab-nrml-indicator-transition: left .125s cubic-bezier(.35, 0, .25, 1), right .25s cubic-bezier(.35, 0, .25, 1) !default;
|
|
415
|
+
$tab-nrml-active-item-tabicon-before-top: 0 !default;
|
|
416
|
+
$tab-nrml-bottom-active-before-top: unset !default;
|
|
417
|
+
$tab-nrml-vertical-indicator-transition: top .125s cubic-bezier(.35, 0, .25, 1), bottom .25s cubic-bezier(.35, 0, .25, 1) !default;
|
|
418
|
+
$tab-nrml-vertical-hover-before-height: unset !default;
|
|
419
|
+
$tab-nrml-vertical-before-bottom: unset !default;
|
|
420
|
+
$tab-nrml-vertical-before-height: unset !default;
|
|
421
|
+
$tab-nrml-vertical-before-left: unset !default;
|
|
422
|
+
$tab-nrml-vertical-before-transition: unset !default;
|
|
423
|
+
$tab-nrml-vertical-text-position: unset !default;
|
|
424
|
+
$tab-nrml-vertical-wrap-before-content: unset !default;
|
|
425
|
+
$tab-nrml-vertical-wrap-before-display: unset !default;
|
|
426
|
+
$tab-nrml-vertical-wrap-before-position: unset !default;
|
|
427
|
+
$tab-nrml-vertical-wrap-before-top: unset !default;
|
|
428
|
+
$tab-nrml-vertical-wrap-before-width: unset !default;
|
|
429
|
+
$tab-nrml-vertical-wrap-before-border: unset !default;
|
|
430
|
+
$tab-nrml-vertical-indicator-width: 3px !default;
|
|
431
|
+
$tab-nrml-bottom-wrap-before-top: 1.6px solid rgba($primary-text-color) !default;
|
|
432
|
+
$tab-nrml-background-vertical-indicator-display: block !default;
|
|
433
|
+
$tab-nrml-background-active-padding: $tab-alt-nrml-active-item-padding !default;
|
|
434
|
+
$tab-nrml-item-text-margin-bottom: 0 !default;
|
|
435
|
+
|
|
436
|
+
@mixin tbar-alt-btn-animation-after {
|
|
437
|
+
animation: none;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
@mixin hscroll-alt-btn-animation-after {
|
|
441
|
+
animation: none;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
/*! Material3 specific themes definition's */
|
|
445
|
+
$tab-alt-focused-active-wrap-focus-or-hover-color: rgba($primary-text-color) !default;
|
|
446
|
+
$tab-alt-focused-active-wrap-focus-and-hover-color: rgba($primary) !default;
|
|
447
|
+
$tab-even-active-item-bottom-border-color: 1px solid rgba($series-1) !default;
|
|
448
|
+
$tab-fill-focused-active-wrap-focus-color: rgba($primary-text-color) !default;
|
|
449
|
+
$tab-alt-active-wrap-hover-close-color: rgba($primary-text-color) !default;
|
|
450
|
+
$tab-alt-pop-wrap-hover-color: rgba($content-text-color-alt1) !default;
|
|
451
|
+
$tab-alt-wrap-hover-color: darken-color($content-text-color-alt1, 15%) !default;
|
|
452
|
+
$tab-nav-active-box-shadow: inset 0 0 0 3px rgba($content-text-color-alt1, .5) !default;
|
|
453
|
+
$tab-nav-focus-border-color: rgba($content-text-color-alt1) !default;
|
|
454
|
+
$tab-alt-nav-hover-bg-color: $content-bg-color-hover !default;
|
|
455
|
+
|
|
456
|
+
/*! Vertical Tab */
|
|
457
|
+
$tab-vscroll-nrml-padding: 16px 0 !default;
|
|
458
|
+
$tab-vscroll-big-padding: 24px 0 !default;
|
|
459
|
+
$tab-big-v-wrap-padding: 0 16px !default;
|
|
460
|
+
$tab-nrml-v-wrap-padding: 0 12px !default;
|
|
461
|
+
$tab-indicator-display: block !default;
|
|
462
|
+
$tab-nrml-more-btn-line-height: 40px !default;
|
|
463
|
+
$tab-big-more-btn-line-height: 48px !default;
|
|
464
|
+
$tab-pop-more-icon-margin: 0 0 0 8px !default;
|
|
465
|
+
$tab-rtl-pop-more-icon-margin: 0 8px 0 0 !default;
|
|
466
|
+
$tab-vscroll-nav-border: 1px solid $transparent !default;
|
|
467
|
+
$tab-v-popup-box-shadow: $tab-pop-box-shadow !default;
|
|
468
|
+
$tab-v-nav-icon-border-width: 0 !default;
|
|
469
|
+
$tab-v-big-close-icon-top-bottom-right: -20px !default;
|
|
470
|
+
$tab-v-nrml-close-icon-top-bottom-right: -15px !default;
|
|
471
|
+
$tab-v-rtl-big-close-icon-top-bottom-right: 0 !default;
|
|
472
|
+
$tab-v-rtl-nrml-close-icon-top-bottom-right: 0 !default;
|
|
473
|
+
$tab-v-rtl-big-close-icon-top-bottom-left: -20px !default;
|
|
474
|
+
$tab-v-rtl-nrml-close-icon-top-bottom-left: -15px !default;
|
|
475
|
+
$tab-v-pop-focus-outline: 0 !default;
|
|
476
|
+
$tab-vscroll-nav-border-color: rgba($border-light, .12) !default;
|
|
477
|
+
$tab-v-nav-focus-bg-color: ($content-bg-color-focus, .12) !default;
|
|
478
|
+
$tab-v-nav-hover-bg-color: ($content-bg-color-hover, .12) !default;
|
|
479
|
+
|
|
480
|
+
$tab-header-font-weight: 400 !default;
|
|
481
|
+
$tab-header-before-border-color: $tab-hdr-bdr-color !default;
|
|
482
|
+
$tab-header-before-border-width: 0 !default;
|
|
483
|
+
$tab-header-border-bottom: 0 !default;
|
|
484
|
+
$tab-item-hover-bg: rgba($content-text-color-alt1, .08) !default;
|
|
485
|
+
$tab-item-wrap-border: 0 !default;
|
|
486
|
+
$tab-clone-item-wrap-border: $tab-vscroll-nav-border !default;
|
|
487
|
+
$tab-item-wrap-hover-border: 0 !default;
|
|
488
|
+
$tab-item-wrap-hover-border-radius: $tab-top-active-item-border-radius !default;
|
|
489
|
+
$tab-item-active-hover-bg: rgba($primary, .08) !default;
|
|
490
|
+
$tab-item-active-wrap-border: 0 !default;
|
|
491
|
+
$tab-active-wrap-position: relative !default;
|
|
492
|
+
$tab-active-wrap-before-border: 1.6px solid $tab-border-color !default;
|
|
493
|
+
$tab-active-wrap-before-content: '' !default;
|
|
494
|
+
$tab-active-wrap-before-display: block !default;
|
|
495
|
+
$tab-active-wrap-before-position: absolute !default;
|
|
496
|
+
$tab-active-wrap-before-top: 0 !default;
|
|
497
|
+
$tab-active-wrap-before-width: 100% !default;
|
|
498
|
+
$tab-focused-wrap-focus-border: 0 !default;
|
|
499
|
+
$tab-focused-wrap-focus-icon-color: rgba($icon-color) !default;
|
|
500
|
+
$tab-content-line-height: 18px !default;
|
|
501
|
+
$tab-content-font-size: 14px !default;
|
|
502
|
+
$tab-item-active-tabwrap-border: 0 !default;
|
|
503
|
+
$tab-item-left-icon-before-top: 0 !default;
|
|
504
|
+
$tab-item-icon-before-top: 1px !default;
|
|
505
|
+
$tab-item-icon-before-left: 5px !default;
|
|
506
|
+
$tab-item-active-border-bottom: initial !default;
|
|
507
|
+
|
|
508
|
+
$tab-pop-wrap-hover-border: 0 !default;
|
|
509
|
+
$tab-pop-wrap-hover-border-radius: 0 !default;
|
|
510
|
+
$tab-pop-wrap-hover-close-color: rgba($flyout-text-color) !default;
|
|
511
|
+
$tab-pop-wrap-active-border-color: transparent !default;
|
|
512
|
+
$tab-pop-wrap-active-icon-font: rgba($flyout-text-color) !default;
|
|
513
|
+
$tab-pop-icon-border: $tab-active-text-item-border !default;
|
|
514
|
+
$tab-pop-focus-icon-active-bg: $tab-pop-icon-hover-bg-color !default;
|
|
515
|
+
$tab-pop-focus-icon-active-color: $tab-nav-focus-icon-color !default;
|
|
516
|
+
$tab-pop-focus-bg: transparent !default;
|
|
517
|
+
$tab-pop-hover-bg: transparent !default;
|
|
518
|
+
$tab-pop-nav-active-bg: inherit !default;
|
|
519
|
+
$tab-pop-nav-active-border: 0 !default;
|
|
520
|
+
$tab-pop-nav-active-border-radius: $tab-active-item-border-radius !default;
|
|
521
|
+
$tab-pop-active-icons-color: rgba($icon-color) !default;
|
|
522
|
+
|
|
523
|
+
$tab-scroll-nav-bg: inherit !default;
|
|
524
|
+
$tab-scroll-nav-arrow-font: $tab-nav-icon-color !default;
|
|
525
|
+
$tab-scroll-arrow-hover-border: $tab-item-active-wrap-border !default;
|
|
526
|
+
$tab-scroll-arrow-active-border: $tab-item-active-wrap-border !default;
|
|
527
|
+
$tab-scroll-focus-arrow-border: $tab-item-active-wrap-border !default;
|
|
528
|
+
$tab-scroll-focus-arrow-active-bg: $tab-nav-focus-bg-color !default;
|
|
529
|
+
$tab-scroll-focus-arrow-active-border-color: unset !default;
|
|
530
|
+
$tab-scroll-focus-arrow-active-color: $tab-nav-focus-icon-color !default;
|
|
531
|
+
$tab-scroll-active-border: $tab-nav-pop-press-active-border !default;
|
|
532
|
+
$tab-scroll-overlay-arrow-color: $tab-disable-nav-icon-color !default;
|
|
533
|
+
$tab-scroll-overlay-arrow-hover-color: $tab-disable-nav-icon-color !default;
|
|
534
|
+
$tab-scroll-overlay-arrow-hover-bg: $tab-hover-nav-bg-color !default;
|
|
535
|
+
$tab-scroll-overlay-arrow-hover-border-color: unset !default;
|
|
536
|
+
$tab-scroll-focused-nav-focus-icon-bg: $tab-nav-focus-bg-color !default;
|
|
537
|
+
$tab-scroll-focused-nav-focus-icon-border: $tab-pop-up-icon-focus-border !default;
|
|
538
|
+
|
|
539
|
+
$tab-bottom-border-color: unset !default;
|
|
540
|
+
$tab-bottom-border-width: 0 !default;
|
|
541
|
+
$tab-bottom-hidden-items-border-color: rgba($primary-text-color) !default;
|
|
542
|
+
$tab-bottom-hidden-items-border-width: 0 !default;
|
|
543
|
+
$tab-bottom-active-border-color: none !default;
|
|
544
|
+
$tab-bottom-active-border-width: 0 !default;
|
|
545
|
+
$tab-bottom-active-margin-top: 0 !default;
|
|
546
|
+
|
|
547
|
+
$tab-vertical-scroll-hover-border-color: $tab-vscroll-nav-border-color transparent transparent !default;
|
|
548
|
+
$tab-vertical-scroll-hover-active-bg: $tab-v-nav-focus-bg-color !default;
|
|
549
|
+
$tab-vertical-focus-active-arrow-color: none !default;
|
|
550
|
+
$tab-vertical-pop-icon-hover-color: $tab-hover-text-color !default;
|
|
551
|
+
$tab-vertical-pop-icon-active-color: $tab-nav-focus-icon-color !default;
|
|
552
|
+
$tab-vertical-focused-nav-focus-border-color: $tab-vertical-scroll-hover-border-color !default;
|
|
553
|
+
$tab-vertical-before-border-width: 0 !default;
|
|
554
|
+
|
|
555
|
+
$tab-fill-wrap-hover-icon-color: $tab-hover-text-color !default;
|
|
556
|
+
$tab-fill-active-tabwrap-border-color: unset !default;
|
|
557
|
+
$tab-fill-active-text-before-border: unset !default;
|
|
558
|
+
$tab-fill-active-close-hover-color: $tab-alt-active-close-icon-color !default;
|
|
559
|
+
$tab-fill-pop-active-icon-color: $tab-pop-text-color !default;
|
|
560
|
+
$tab-fill-pop-wrap-hover-bg: $flyout-bg-color-hover !default;
|
|
561
|
+
$tab-fill-pop-wrap-hover-text-color: rgba($flyout-text-color) !default;
|
|
562
|
+
$tab-fill-pop-wrap-hover-icon-color: rgba($flyout-text-color) !default;
|
|
563
|
+
$tab-fill-pop-wrap-hover-close-color: rgba($flyout-text-color) !default;
|
|
564
|
+
$tab-fill-focused-active-tabwrap-focus-border-color: $tab-focused-wrap-focus-border-color !default;
|
|
565
|
+
$tab-fill-focused-active-wrap-focus-text-color: $tab-fill-focused-active-wrap-focus-color !default;
|
|
566
|
+
$tab-fill-focused-active-wrap-focus-close-color: $tab-fill-focused-active-wrap-focus-color !default;
|
|
567
|
+
|
|
568
|
+
$tab-background-indicator-bottom: 0 !default;
|
|
569
|
+
$tab-background-wrap-border-color: transparent !default;
|
|
570
|
+
$tab-background-close-hover-color: $tab-alt-active-wrap-close-icon-color !default;
|
|
571
|
+
$tab-background-pop-icon-hover-bg: $tab-pop-icon-hover-bg-color !default;
|
|
572
|
+
$tab-background-pop-icon-hover-border-color: unset !default;
|
|
573
|
+
$tab-background-focused-active-wrap-focus-bg: $tab-key-alt-active-focus-bg-color !default;
|
|
574
|
+
$tab-background-focused-active-wrap-focus-border-color: $tab-alt-active-bg-color !default;
|
|
575
|
+
$tab-background-wrap-hover-text-color: rgba($primary-text-color) !default;
|
|
576
|
+
$tab-background-wrap-hover-icon-color: rgba($primary-text-color) !default;
|
|
577
|
+
$tab-background-wrap-hover-close-color: rgba($primary-text-color) !default;
|
|
578
|
+
$tab-background-close-hover-active-color: rgba($primary-text-color) !default;
|
|
579
|
+
$tab-background-wrap-hover-bg-color: $tab-bg-item-wrap-hover-bg-color !default;
|
|
580
|
+
$tab-background-wrap-hover-border-color: $tab-hover-border-color !default;
|
|
581
|
+
$tab-background-active-bg: inherit !default;
|
|
582
|
+
$tab-background-active-text-color: rgba($primary-text-color) !default;
|
|
583
|
+
$tab-background-active-icon-color: rgba($primary-text-color) !default;
|
|
584
|
+
$tab-background-active-close-color: rgba($primary-text-color) !default;
|
|
585
|
+
$tab-background-active-wrap-bg: $tab-active-item-border-color !default;
|
|
586
|
+
$tab-background-active-wrap-border-color: $tab-alt-active-bg-color !default;
|
|
587
|
+
$tab-background-active-wrap-border-radius: $tab-top-active-item-border-radius !default;
|
|
588
|
+
$tab-background-active-wrap-border-width: 0 !default;
|
|
589
|
+
$tab-background-active-hover-text-color: rgba($primary-text-color) !default;
|
|
590
|
+
$tab-background-active-hover-icon-color: rgba($primary-text-color) !default;
|
|
591
|
+
$tab-background-active-hover-close-color: rgba($primary-text-color) !default;
|
|
592
|
+
$tab-background-active-hover-bg: $tab-background-active-wrap-bg !default;
|
|
593
|
+
$tab-background-active-hover-border-color: $tab-background-active-wrap-border-color !default;
|
|
594
|
+
$tab-background-active-close-hover-color: $tab-background-active-hover-close-color !default;
|
|
595
|
+
$tab-background-activeitem-close-active-color: $tab-background-active-hover-close-color !default;
|
|
596
|
+
$tab-background-active-wrap-focus-bg: $tab-active-item-border-color !default;
|
|
597
|
+
$tab-background-active-wrap-focus-text-color: $tab-alt-active-hover-text-color !default;
|
|
598
|
+
$tab-background-active-wrap-focus-icon: $tab-alt-active-hover-text-color !default;
|
|
599
|
+
$tab-background-active-wrap-focushover-text-color: rgba($primary-text-color) !default;
|
|
600
|
+
$tab-background-active-wrap-focushover-close-color: rgba($primary-text-color) !default;
|
|
601
|
+
$tab-background-active-text-icon-color: rgba($primary-text-color) !default;
|
|
602
|
+
$tab-background-active-close-icon-color: rgba($primary-text-color) !default;
|
|
603
|
+
$tab-background-active-close-text-hover-color: rgba($primary-text-color) !default;
|
|
604
|
+
$tab-background-pop-text-color: rgba($flyout-text-color) !default;
|
|
605
|
+
$tab-background-pop-wrap-hover-bg: $tab-active-bg-color !default;
|
|
606
|
+
$tab-background-pop-wrap-hover-text-color: rgba($flyout-text-color) !default;
|
|
607
|
+
$tab-background-pop-wrap-active-text-color: rgba($flyout-text-color) !default;
|
|
608
|
+
$tab-background-pop-wrap-active-icon-color: rgba($flyout-text-color) !default;
|
|
609
|
+
$tab-background-pop-wrap-active-close-color: rgba($flyout-text-color) !default;
|
|
610
|
+
$tab-background-scroll-bg: inherit !default;
|
|
611
|
+
$tab-background-scroll-arrow-border: 0 !default;
|
|
612
|
+
$tab-background-scroll-arrow-hover-bg: $tab-bg-hover-nav-bg-color !default;
|
|
613
|
+
$tab-background-scroll-arrow-hover-border-color: unset !default;
|
|
614
|
+
$tab-background-scroll-arrow-active-bg: unset !default;
|
|
615
|
+
$tab-background-scroll-arrow-active-color: $tab-alt-nav-icon-color !default;
|
|
616
|
+
$tab-background-scroll-focus-arrow-border: 0 !default;
|
|
617
|
+
$tab-background-scroll-focus-arrow-bg: $tab-nav-focus-bg-color !default;
|
|
618
|
+
$tab-background-nav-focus-active-bg: $tab-nav-focus-bg-color !default;
|
|
619
|
+
$tab-background-nav-focus-active-border-color: unset !default;
|
|
620
|
+
$tab-background-nav-focus-active-color: rgba($primary-text-color) !default;
|
|
621
|
+
$tab-background-hor-nav-bg: transparent !default;
|
|
622
|
+
$tab-background-pop-icon-color: $tab-alt-nav-icon-color !default;
|
|
623
|
+
$tab-background-pop-icon-border: 0 !default;
|
|
624
|
+
$tab-background-pop-active-hover-bg: $tab-background-pop-icon-hover-bg !default;
|
|
625
|
+
$tab-background-pop-active-hover-color: rgba($primary-text-color) !default;
|
|
626
|
+
$tab-background-focus-pop-bg: $tab-nav-focus-bg-color !default;
|
|
627
|
+
$tab-background-focus-pop-border: $tab-pop-up-icon-focus-border !default;
|
|
628
|
+
$tab-background-focus-pop-hover-bg: $tab-background-pop-icon-hover-bg !default;
|
|
629
|
+
$tab-background-focused-wrap-focus-bg: rgba($primary-text-color, .08) !default;
|
|
630
|
+
$tab-background-focused-wrap-focus-border-color: $tab-focused-wrap-focus-border-color !default;
|
|
631
|
+
$tab-background-popicon-focus-active-bg: $tab-pop-focus-icon-active-bg !default;
|
|
632
|
+
$tab-background-popicon-focus-active-border-color: unset !default;
|
|
633
|
+
$tab-background-popicon-focus-active-color: rgba($primary-text-color) !default;
|
|
634
|
+
$tab-background-bottom-active-wrap-border-color: $tab-alt-active-bg-color !default;
|
|
635
|
+
$tab-background-bottom-active-wrap-border-radius: 0 !default;
|
|
636
|
+
$tab-background-bottom-active-wrap-border-width: 0 !default;
|
|
637
|
+
$tab-background-vertical-left-active-border-color: unset !default;
|
|
638
|
+
$tab-background-vertical-left-active-border-width: 0 !default;
|
|
639
|
+
$tab-background-vertical-left-active-wrap-border-radius: 0 !default;
|
|
640
|
+
$tab-background-vertical-left-active-wrap-border-width: 0 !default;
|
|
641
|
+
$tab-background-vertical-right-active-border-width: 0 !default;
|
|
642
|
+
$tab-background-vertical-right-active-wrap-border-radius: 0 !default;
|
|
643
|
+
$tab-background-vertical-right-active-wrap-border-width: 0 !default;
|
|
644
|
+
$tab-background-focused-active-wrap-hover-bg: $tab-background-active-wrap-bg !default;
|
|
645
|
+
$tab-background-focused-active-wrap-hover-border: 0 !default;
|
|
646
|
+
$tab-background-focused-active-wrap-hover-border-radius: $tab-top-active-item-border-radius !default;
|
|
647
|
+
$tab-background-focused-active-wrap-focus-text-color: $tab-alt-focused-active-wrap-focus-or-hover-color !default;
|
|
648
|
+
$tab-background-focused-active-wrap-focus-icon-color: $tab-alt-active-hover-text-color !default;
|
|
649
|
+
$tab-background-focused-active-wrap-focus-close-color: $tab-alt-focused-active-wrap-focus-or-hover-color !default;
|
|
650
|
+
$tab-background-focused-active-wrap-hover-text-color: $tab-alt-focused-active-wrap-focus-or-hover-color !default;
|
|
651
|
+
$tab-background-focused-active-wrap-hover-icon-color: $tab-background-active-hover-icon-color !default;
|
|
652
|
+
$tab-background-focused-active-wrap-hover-close-color: $tab-alt-focused-active-wrap-focus-or-hover-color !default;
|
|
653
|
+
$tab-background-focused-active-focus-hover-text-color: $tab-alt-focused-active-wrap-focus-and-hover-color !default;
|
|
654
|
+
$tab-background-focused-active-focus-hover-close-color: $tab-alt-focused-active-wrap-focus-and-hover-color !default;
|
|
655
|
+
$tab-background-focused-wrap-focus-close-color: $tab-alt-text-color !default;
|
|
656
|
+
$tab-background-focused-active-wrap-icon-color: $tab-alt-active-hover-text-color !default;
|
|
657
|
+
$tab-background-accent-indicator-bg: rgba($primary-text-color) !default;
|
|
658
|
+
$tab-background-active-text-font-weight: $tab-light-font-weight !default;
|
|
659
|
+
$tab-background-text-color: $tab-alt-text-color !default;
|
|
660
|
+
|
|
661
|
+
$tab-fill-background-disable-text-color: rgba($primary-text-color, .38) !default;
|