@syncfusion/ej2-navigations 19.3.53 → 19.4.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +56 -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 +528 -150
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +535 -151
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/accordion/accordion-model.d.ts +5 -5
- package/src/accordion/accordion.d.ts +5 -5
- package/src/accordion/accordion.js +2 -19
- package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
- package/src/breadcrumb/breadcrumb.d.ts +33 -10
- package/src/breadcrumb/breadcrumb.js +320 -78
- package/src/common/menu-base.js +2 -2
- package/src/common/v-scroll.js +1 -1
- package/src/sidebar/sidebar.js +4 -4
- package/src/tab/tab-model.d.ts +14 -6
- package/src/tab/tab.d.ts +26 -15
- package/src/tab/tab.js +59 -30
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +68 -5
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +317 -84
- package/styles/bootstrap.css +316 -83
- package/styles/bootstrap4.css +317 -76
- package/styles/bootstrap5-dark.css +340 -76
- package/styles/bootstrap5.css +342 -78
- package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
- package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
- package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
- package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
- package/styles/breadcrumb/_fabric-definition.scss +13 -0
- package/styles/breadcrumb/_fluent-definition.scss +59 -0
- package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
- package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
- package/styles/breadcrumb/_layout.scss +171 -22
- package/styles/breadcrumb/_material-dark-definition.scss +13 -0
- package/styles/breadcrumb/_material-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
- package/styles/breadcrumb/_tailwind-definition.scss +13 -0
- package/styles/breadcrumb/_theme.scss +27 -8
- package/styles/breadcrumb/bootstrap-dark.css +194 -17
- package/styles/breadcrumb/bootstrap.css +194 -17
- package/styles/breadcrumb/bootstrap4.css +194 -17
- package/styles/breadcrumb/bootstrap5-dark.css +198 -24
- package/styles/breadcrumb/bootstrap5.css +198 -24
- package/styles/breadcrumb/fabric-dark.css +197 -20
- package/styles/breadcrumb/fabric.css +197 -20
- package/styles/breadcrumb/highcontrast-light.css +200 -22
- package/styles/breadcrumb/highcontrast.css +200 -22
- package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
- package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
- package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
- package/styles/breadcrumb/icons/_fabric.scss +2 -1
- package/styles/breadcrumb/icons/_fluent.scss +25 -0
- package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
- package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
- package/styles/breadcrumb/icons/_material-dark.scss +2 -1
- package/styles/breadcrumb/icons/_material.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
- package/styles/breadcrumb/icons/_tailwind.scss +2 -1
- package/styles/breadcrumb/material-dark.css +186 -13
- package/styles/breadcrumb/material.css +186 -13
- package/styles/breadcrumb/tailwind-dark.css +195 -22
- package/styles/breadcrumb/tailwind.css +195 -22
- package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
- package/styles/context-menu/_bootstrap-definition.scss +1 -1
- package/styles/context-menu/_bootstrap4-definition.scss +1 -1
- package/styles/context-menu/_bootstrap5-definition.scss +5 -5
- package/styles/context-menu/_fluent-definition.scss +52 -0
- package/styles/context-menu/_material-dark-definition.scss +1 -1
- package/styles/context-menu/_material-definition.scss +1 -1
- package/styles/context-menu/_tailwind-definition.scss +1 -1
- package/styles/context-menu/bootstrap-dark.css +1 -1
- package/styles/context-menu/bootstrap.css +1 -1
- package/styles/context-menu/bootstrap4.css +1 -1
- package/styles/context-menu/bootstrap5-dark.css +5 -5
- package/styles/context-menu/bootstrap5.css +6 -6
- package/styles/context-menu/icons/_fluent.scss +32 -0
- package/styles/context-menu/material-dark.css +1 -1
- package/styles/context-menu/material.css +1 -1
- package/styles/context-menu/tailwind-dark.css +1 -1
- package/styles/context-menu/tailwind.css +1 -1
- package/styles/fabric-dark.css +305 -41
- package/styles/fabric.css +308 -44
- package/styles/h-scroll/_fluent-definition.scss +78 -0
- package/styles/h-scroll/_tailwind-definition.scss +78 -78
- package/styles/h-scroll/_theme.scss +1 -1
- package/styles/h-scroll/bootstrap-dark.css +1 -1
- package/styles/h-scroll/bootstrap.css +1 -1
- package/styles/h-scroll/bootstrap4.css +1 -1
- package/styles/h-scroll/bootstrap5-dark.css +1 -1
- package/styles/h-scroll/bootstrap5.css +1 -1
- package/styles/h-scroll/fabric-dark.css +1 -1
- package/styles/h-scroll/fabric.css +1 -1
- package/styles/h-scroll/highcontrast-light.css +1 -1
- package/styles/h-scroll/highcontrast.css +1 -1
- package/styles/h-scroll/icons/_fluent.scss +49 -0
- package/styles/h-scroll/icons/_tailwind.scss +49 -49
- package/styles/h-scroll/material-dark.css +1 -1
- package/styles/h-scroll/material.css +1 -1
- package/styles/h-scroll/tailwind-dark.css +1 -1
- package/styles/h-scroll/tailwind.css +1 -1
- package/styles/highcontrast-light.css +317 -47
- package/styles/highcontrast.css +322 -52
- package/styles/material-dark.css +295 -32
- package/styles/material.css +296 -33
- package/styles/menu/_fluent-definition.scss +68 -0
- package/styles/menu/_layout.scss +1 -1
- package/styles/menu/_theme.scss +9 -0
- package/styles/menu/bootstrap-dark.css +1 -1
- package/styles/menu/bootstrap.css +1 -1
- package/styles/menu/bootstrap4.css +1 -1
- package/styles/menu/bootstrap5-dark.css +4 -4
- package/styles/menu/bootstrap5.css +5 -5
- package/styles/menu/icons/_fluent.scss +133 -0
- package/styles/menu/material-dark.css +1 -1
- package/styles/menu/material.css +1 -1
- package/styles/menu/tailwind-dark.css +1 -1
- package/styles/menu/tailwind.css +1 -1
- package/styles/sidebar/_bootstrap5-definition.scss +5 -5
- package/styles/sidebar/_fluent-definition.scss +5 -0
- package/styles/sidebar/_theme.scss +4 -2
- package/styles/sidebar/bootstrap5-dark.css +0 -1
- package/styles/sidebar/bootstrap5.css +0 -1
- package/styles/sidebar/tailwind-dark.css +0 -1
- package/styles/sidebar/tailwind.css +0 -1
- package/styles/tab/_bootstrap-dark-definition.scss +10 -1
- package/styles/tab/_bootstrap-definition.scss +10 -1
- package/styles/tab/_bootstrap4-definition.scss +9 -1
- package/styles/tab/_bootstrap5-definition.scss +401 -401
- package/styles/tab/_fabric-dark-definition.scss +10 -0
- package/styles/tab/_fabric-definition.scss +10 -0
- package/styles/tab/_fluent-definition.scss +409 -0
- package/styles/tab/_highcontrast-definition.scss +10 -0
- package/styles/tab/_highcontrast-light-definition.scss +10 -0
- package/styles/tab/_layout.scss +145 -0
- package/styles/tab/_material-dark-definition.scss +10 -0
- package/styles/tab/_material-definition.scss +10 -0
- package/styles/tab/_tailwind-definition.scss +431 -420
- package/styles/tab/_theme.scss +188 -113
- package/styles/tab/bootstrap-dark.css +43 -18
- package/styles/tab/bootstrap.css +42 -17
- package/styles/tab/bootstrap4.css +47 -28
- package/styles/tab/bootstrap5-dark.css +54 -31
- package/styles/tab/bootstrap5.css +54 -31
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +313 -50
- package/styles/tailwind.css +313 -50
- package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
- package/styles/toolbar/_bootstrap-definition.scss +7 -1
- package/styles/toolbar/_bootstrap4-definition.scss +8 -2
- package/styles/toolbar/_bootstrap5-definition.scss +104 -86
- package/styles/toolbar/_fabric-dark-definition.scss +7 -0
- package/styles/toolbar/_fabric-definition.scss +7 -0
- package/styles/toolbar/_fluent-definition.scss +149 -0
- package/styles/toolbar/_highcontrast-definition.scss +7 -0
- package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
- package/styles/toolbar/_layout.scss +27 -72
- package/styles/toolbar/_material-dark-definition.scss +7 -1
- package/styles/toolbar/_material-definition.scss +7 -1
- package/styles/toolbar/_tailwind-definition.scss +149 -143
- package/styles/toolbar/_theme.scss +12 -15
- package/styles/toolbar/bootstrap-dark.css +17 -46
- package/styles/toolbar/bootstrap.css +17 -46
- package/styles/toolbar/bootstrap4.css +12 -26
- package/styles/toolbar/bootstrap5-dark.css +6 -7
- package/styles/toolbar/bootstrap5.css +6 -7
- package/styles/toolbar/fabric-dark.css +4 -0
- package/styles/toolbar/fabric.css +4 -0
- package/styles/toolbar/highcontrast-light.css +4 -1
- package/styles/toolbar/highcontrast.css +4 -1
- package/styles/toolbar/icons/_fluent.scss +16 -0
- package/styles/toolbar/icons/_tailwind.scss +16 -16
- package/styles/toolbar/material-dark.css +4 -1
- package/styles/toolbar/material.css +5 -2
- package/styles/toolbar/tailwind-dark.css +8 -6
- package/styles/toolbar/tailwind.css +8 -6
- package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
- package/styles/treeview/_bootstrap-definition.scss +11 -0
- package/styles/treeview/_bootstrap4-definition.scss +11 -0
- package/styles/treeview/_bootstrap5-definition.scss +120 -109
- package/styles/treeview/_fabric-dark-definition.scss +11 -0
- package/styles/treeview/_fabric-definition.scss +11 -0
- package/styles/treeview/_fluent-definition.scss +120 -0
- package/styles/treeview/_highcontrast-definition.scss +11 -0
- package/styles/treeview/_highcontrast-light-definition.scss +11 -0
- package/styles/treeview/_layout.scss +116 -20
- package/styles/treeview/_material-dark-definition.scss +13 -0
- package/styles/treeview/_material-definition.scss +11 -0
- package/styles/treeview/_tailwind-definition.scss +12 -0
- package/styles/treeview/_theme.scss +5 -5
- package/styles/treeview/bootstrap-dark.css +60 -0
- package/styles/treeview/bootstrap.css +60 -0
- package/styles/treeview/bootstrap4.css +60 -0
- package/styles/treeview/bootstrap5-dark.css +61 -1
- package/styles/treeview/bootstrap5.css +61 -1
- package/styles/treeview/fabric-dark.css +60 -0
- package/styles/treeview/fabric.css +60 -0
- package/styles/treeview/highcontrast-light.css +60 -0
- package/styles/treeview/highcontrast.css +60 -0
- package/styles/treeview/icons/_bootstrap5.scss +43 -43
- package/styles/treeview/icons/_fluent.scss +43 -0
- package/styles/treeview/icons/_tailwind-dark.scss +43 -43
- package/styles/treeview/material-dark.css +60 -0
- package/styles/treeview/material.css +60 -0
- package/styles/treeview/tailwind-dark.css +65 -1
- package/styles/treeview/tailwind.css +65 -1
- package/styles/v-scroll/_fluent-definition.scss +49 -0
- package/styles/v-scroll/_tailwind-definition.scss +49 -49
- package/styles/v-scroll/icons/_fluent.scss +26 -0
- package/styles/v-scroll/icons/_tailwind.scss +26 -26
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
/*! component's theme wise override definitions and variables */
|
|
2
|
-
$hscroll-skin: 'tailwind' !default;
|
|
3
|
-
$border-type: solid;
|
|
4
|
-
$hscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
-
$hscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
|
-
$hscroll-default-bg: $content-bg-color-alt2 !default;
|
|
7
|
-
$hscroll-press-bg: $content-bg-color-alt2 !default;
|
|
8
|
-
$hscroll-active-bg: $content-bg-color-alt2 !default;
|
|
9
|
-
$hscroll-border-size: 1px !default;
|
|
10
|
-
$hscroll-nav-nrml-minheight: 38px !default;
|
|
11
|
-
$hscroll-nav-bgr-minheight: 48px !default;
|
|
12
|
-
$hscroll-mob-nav-nrml-width: 40px !default;
|
|
13
|
-
$hscroll-nav-nrml-width: 28px !default;
|
|
14
|
-
$hscroll-nav-bgr-width: 48px !default;
|
|
15
|
-
$hscroll-nrml-padding: 0 $hscroll-nav-nrml-width !default;
|
|
16
|
-
$hscroll-bgr-padding: 0 $hscroll-nav-bgr-width !default;
|
|
17
|
-
$hscroll-border-type: $border-type !default;
|
|
18
|
-
$hscroll-box-shadow: none !default;
|
|
19
|
-
$hscroll-hover-bg: $content-bg-color-alt3 !default;
|
|
20
|
-
$hscroll-hover-border-color: $border-light !default;
|
|
21
|
-
$hscroll-default-icon-color: $icon-color !default;
|
|
22
|
-
$hscroll-focus-border: 0 !default;
|
|
23
|
-
$hscroll-active-border: 0 !default;
|
|
24
|
-
$hscroll-hover-border: 0 !default;
|
|
25
|
-
$hscroll-active-box-shadow: none !default;
|
|
26
|
-
$hscroll-overlay-opacity: .5 !default;
|
|
27
|
-
$hscroll-overlay-bg: $content-bg-color-alt2 !default;
|
|
28
|
-
$hscroll-overlay-start: rgba($hscroll-overlay-bg, 0) !default;
|
|
29
|
-
$hscroll-overlay-end: rgba($hscroll-overlay-bg, 1) !default;
|
|
30
|
-
$hscroll-right-bg: linear-gradient(-270deg, $hscroll-overlay-start 0%, $hscroll-overlay-end 100%) !default;
|
|
31
|
-
$hscroll-left-bg: linear-gradient(-270deg, $hscroll-overlay-end 0%, $hscroll-overlay-start 100%) !default;
|
|
32
|
-
|
|
33
|
-
$hscroll-device-arrow-box-shadow: $shadow !default;
|
|
34
|
-
$hscroll-device-arrow-rtl-box-shadow: $shadow !default;
|
|
35
|
-
$hscroll-device-arrow-bg: $content-bg-color-alt2 !default;
|
|
36
|
-
$hscroll-device-arrow-border-size: 1px !default;
|
|
37
|
-
$hscroll-device-arrow-border-color: $border-light !default;
|
|
38
|
-
$hscroll-device-arrow-color: $icon-color !default;
|
|
39
|
-
$hscroll-device-arrow-size: 18px !default;
|
|
40
|
-
$hscroll-device-arrow-size-bigger: 22px !default;
|
|
41
|
-
$hscroll-device-arrow-width: 48px !default;
|
|
42
|
-
|
|
43
|
-
$hscroll-default-border: $hscroll-hover-border-color !default;
|
|
44
|
-
$hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5) !default;
|
|
45
|
-
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame !default;
|
|
46
|
-
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12) !default;
|
|
47
|
-
|
|
48
|
-
@mixin hscroll-btn-animation {
|
|
49
|
-
background-color: transparent;
|
|
50
|
-
border-radius: 50%;
|
|
51
|
-
border-width: 1px;
|
|
52
|
-
box-sizing: border-box;
|
|
53
|
-
content: '' ;
|
|
54
|
-
height: 1px;
|
|
55
|
-
left: 50%;
|
|
56
|
-
position: absolute;
|
|
57
|
-
top: 50%;
|
|
58
|
-
visibility: hidden;
|
|
59
|
-
width: 1px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
@mixin hscroll-btn-animation-after {
|
|
63
|
-
animation: hscroll-popup-shadow .6s ease-out 0ms;
|
|
64
|
-
visibility: visible;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@keyframes hscroll-popup-shadow {
|
|
68
|
-
0% {
|
|
69
|
-
border-color: $hscroll-ribble-animation-border-frame;
|
|
70
|
-
box-shadow: $hscroll-ribble-animation-shadow-frame;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
100% {
|
|
74
|
-
box-shadow: $hscroll-ribble-animation-shadow-frame-end;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
1
|
+
/*! component's theme wise override definitions and variables */
|
|
2
|
+
$hscroll-skin: 'tailwind' !default;
|
|
3
|
+
$border-type: solid;
|
|
4
|
+
$hscroll-hover-font: $content-text-color-alt2 !default;
|
|
5
|
+
$hscroll-active-font-color: $content-text-color-alt2 !default;
|
|
6
|
+
$hscroll-default-bg: $content-bg-color-alt2 !default;
|
|
7
|
+
$hscroll-press-bg: $content-bg-color-alt2 !default;
|
|
8
|
+
$hscroll-active-bg: $content-bg-color-alt2 !default;
|
|
9
|
+
$hscroll-border-size: 1px !default;
|
|
10
|
+
$hscroll-nav-nrml-minheight: 38px !default;
|
|
11
|
+
$hscroll-nav-bgr-minheight: 48px !default;
|
|
12
|
+
$hscroll-mob-nav-nrml-width: 40px !default;
|
|
13
|
+
$hscroll-nav-nrml-width: 28px !default;
|
|
14
|
+
$hscroll-nav-bgr-width: 48px !default;
|
|
15
|
+
$hscroll-nrml-padding: 0 $hscroll-nav-nrml-width !default;
|
|
16
|
+
$hscroll-bgr-padding: 0 $hscroll-nav-bgr-width !default;
|
|
17
|
+
$hscroll-border-type: $border-type !default;
|
|
18
|
+
$hscroll-box-shadow: none !default;
|
|
19
|
+
$hscroll-hover-bg: $content-bg-color-alt3 !default;
|
|
20
|
+
$hscroll-hover-border-color: $border-light !default;
|
|
21
|
+
$hscroll-default-icon-color: $icon-color !default;
|
|
22
|
+
$hscroll-focus-border: 0 !default;
|
|
23
|
+
$hscroll-active-border: 0 !default;
|
|
24
|
+
$hscroll-hover-border: 0 !default;
|
|
25
|
+
$hscroll-active-box-shadow: none !default;
|
|
26
|
+
$hscroll-overlay-opacity: .5 !default;
|
|
27
|
+
$hscroll-overlay-bg: $content-bg-color-alt2 !default;
|
|
28
|
+
$hscroll-overlay-start: rgba($hscroll-overlay-bg, 0) !default;
|
|
29
|
+
$hscroll-overlay-end: rgba($hscroll-overlay-bg, 1) !default;
|
|
30
|
+
$hscroll-right-bg: linear-gradient(-270deg, $hscroll-overlay-start 0%, $hscroll-overlay-end 100%) !default;
|
|
31
|
+
$hscroll-left-bg: linear-gradient(-270deg, $hscroll-overlay-end 0%, $hscroll-overlay-start 100%) !default;
|
|
32
|
+
|
|
33
|
+
$hscroll-device-arrow-box-shadow: $shadow !default;
|
|
34
|
+
$hscroll-device-arrow-rtl-box-shadow: $shadow !default;
|
|
35
|
+
$hscroll-device-arrow-bg: $content-bg-color-alt2 !default;
|
|
36
|
+
$hscroll-device-arrow-border-size: 1px !default;
|
|
37
|
+
$hscroll-device-arrow-border-color: $border-light !default;
|
|
38
|
+
$hscroll-device-arrow-color: $icon-color !default;
|
|
39
|
+
$hscroll-device-arrow-size: 18px !default;
|
|
40
|
+
$hscroll-device-arrow-size-bigger: 22px !default;
|
|
41
|
+
$hscroll-device-arrow-width: 48px !default;
|
|
42
|
+
|
|
43
|
+
$hscroll-default-border: $hscroll-hover-border-color !default;
|
|
44
|
+
$hscroll-ribble-animation-border-frame: rgba(255, 255, 255, .5) !default;
|
|
45
|
+
$hscroll-ribble-animation-shadow-frame: 0 0 0 0 $hscroll-ribble-animation-border-frame !default;
|
|
46
|
+
$hscroll-ribble-animation-shadow-frame-end: 0 0 0 200px rgba(255, 255, 255, .12) !default;
|
|
47
|
+
|
|
48
|
+
@mixin hscroll-btn-animation {
|
|
49
|
+
background-color: transparent;
|
|
50
|
+
border-radius: 50%;
|
|
51
|
+
border-width: 1px;
|
|
52
|
+
box-sizing: border-box;
|
|
53
|
+
content: '' ;
|
|
54
|
+
height: 1px;
|
|
55
|
+
left: 50%;
|
|
56
|
+
position: absolute;
|
|
57
|
+
top: 50%;
|
|
58
|
+
visibility: hidden;
|
|
59
|
+
width: 1px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@mixin hscroll-btn-animation-after {
|
|
63
|
+
animation: hscroll-popup-shadow .6s ease-out 0ms;
|
|
64
|
+
visibility: visible;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes hscroll-popup-shadow {
|
|
68
|
+
0% {
|
|
69
|
+
border-color: $hscroll-ribble-animation-border-frame;
|
|
70
|
+
box-shadow: $hscroll-ribble-animation-shadow-frame;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
100% {
|
|
74
|
+
box-shadow: $hscroll-ribble-animation-shadow-frame-end;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
@include export-module('hscroll-fluent-icons') {
|
|
2
|
+
/*! hscroll icons */
|
|
3
|
+
#{&}.e-hscroll {
|
|
4
|
+
|
|
5
|
+
&.e-rtl {
|
|
6
|
+
|
|
7
|
+
&.e-scroll-device {
|
|
8
|
+
|
|
9
|
+
.e-nav-right-arrow::before {
|
|
10
|
+
content: '\e80e';
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-nav-left-arrow::before {
|
|
14
|
+
content: '\e80f';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-nav-left-arrow::before {
|
|
20
|
+
content: '\e7c2';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-nav-right-arrow::before {
|
|
24
|
+
content: '\e7c1';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.e-scroll-device {
|
|
29
|
+
|
|
30
|
+
.e-nav-right-arrow::before {
|
|
31
|
+
content: '\e80f';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-nav-left-arrow::before {
|
|
35
|
+
content: '\e80e';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-nav-left-arrow::before {
|
|
40
|
+
content: '\e7c1';
|
|
41
|
+
line-height: normal;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-nav-right-arrow::before {
|
|
45
|
+
content: '\e7c2';
|
|
46
|
+
line-height: normal;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
@include export-module('hscroll-tailwind-icons') {
|
|
2
|
-
/*! hscroll icons */
|
|
3
|
-
#{&}.e-hscroll {
|
|
4
|
-
|
|
5
|
-
&.e-rtl {
|
|
6
|
-
|
|
7
|
-
&.e-scroll-device {
|
|
8
|
-
|
|
9
|
-
.e-nav-right-arrow::before {
|
|
10
|
-
content: '\e70f';
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.e-nav-left-arrow::before {
|
|
14
|
-
content: '\e7b7';
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.e-nav-left-arrow::before {
|
|
20
|
-
content: '\e7b7';
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.e-nav-right-arrow::before {
|
|
24
|
-
content: '\e70f';
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
&.e-scroll-device {
|
|
29
|
-
|
|
30
|
-
.e-nav-right-arrow::before {
|
|
31
|
-
content: '\e7b7';
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.e-nav-left-arrow::before {
|
|
35
|
-
content: '\e70f';
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.e-nav-left-arrow::before {
|
|
40
|
-
content: '\e70f';
|
|
41
|
-
line-height: normal;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.e-nav-right-arrow::before {
|
|
45
|
-
content: '\e7b7';
|
|
46
|
-
line-height: normal;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
1
|
+
@include export-module('hscroll-tailwind-icons') {
|
|
2
|
+
/*! hscroll icons */
|
|
3
|
+
#{&}.e-hscroll {
|
|
4
|
+
|
|
5
|
+
&.e-rtl {
|
|
6
|
+
|
|
7
|
+
&.e-scroll-device {
|
|
8
|
+
|
|
9
|
+
.e-nav-right-arrow::before {
|
|
10
|
+
content: '\e70f';
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.e-nav-left-arrow::before {
|
|
14
|
+
content: '\e7b7';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-nav-left-arrow::before {
|
|
20
|
+
content: '\e7b7';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-nav-right-arrow::before {
|
|
24
|
+
content: '\e70f';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.e-scroll-device {
|
|
29
|
+
|
|
30
|
+
.e-nav-right-arrow::before {
|
|
31
|
+
content: '\e7b7';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-nav-left-arrow::before {
|
|
35
|
+
content: '\e70f';
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.e-nav-left-arrow::before {
|
|
40
|
+
content: '\e70f';
|
|
41
|
+
line-height: normal;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-nav-right-arrow::before {
|
|
45
|
+
content: '\e7b7';
|
|
46
|
+
line-height: normal;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|