@syncfusion/ej2-navigations 19.3.56 → 19.4.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
- package/CHANGELOG.md +57 -0
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +513 -144
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +520 -145
- 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/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 +33 -16
- package/src/tab/tab.js +66 -31
- package/src/toolbar/toolbar-model.d.ts +7 -7
- package/src/toolbar/toolbar.d.ts +6 -6
- package/src/toolbar/toolbar.js +81 -13
- package/src/treeview/treeview-model.d.ts +10 -0
- package/src/treeview/treeview.d.ts +13 -0
- package/src/treeview/treeview.js +48 -0
- package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
- package/styles/accordion/_bootstrap-definition.scss +4 -0
- package/styles/accordion/_bootstrap4-definition.scss +4 -0
- package/styles/accordion/_bootstrap5-definition.scss +39 -35
- package/styles/accordion/_fabric-dark-definition.scss +4 -0
- package/styles/accordion/_fabric-definition.scss +4 -0
- package/styles/accordion/_fluent-definition.scss +85 -0
- package/styles/accordion/_highcontrast-definition.scss +5 -1
- package/styles/accordion/_highcontrast-light-definition.scss +4 -0
- package/styles/accordion/_layout.scss +6 -14
- package/styles/accordion/_material-dark-definition.scss +4 -0
- package/styles/accordion/_material-definition.scss +4 -0
- package/styles/accordion/_tailwind-definition.scss +83 -79
- package/styles/accordion/_theme.scss +12 -11
- package/styles/accordion/bootstrap4.css +1 -2
- package/styles/accordion/bootstrap5-dark.css +11 -2
- package/styles/accordion/bootstrap5.css +11 -2
- package/styles/accordion/highcontrast-light.css +0 -4
- package/styles/accordion/highcontrast.css +1 -5
- package/styles/accordion/icons/_fluent.scss +17 -0
- package/styles/accordion/icons/_tailwind.scss +17 -17
- package/styles/bootstrap-dark.css +317 -84
- package/styles/bootstrap.css +316 -83
- package/styles/bootstrap4.css +317 -76
- package/styles/bootstrap5-dark.css +339 -75
- package/styles/bootstrap5.css +341 -77
- 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 +53 -30
- package/styles/tab/bootstrap5.css +53 -30
- package/styles/tab/fabric-dark.css +43 -20
- package/styles/tab/fabric.css +46 -23
- package/styles/tab/highcontrast-light.css +52 -19
- package/styles/tab/highcontrast.css +56 -23
- package/styles/tab/icons/_bootstrap-dark.scss +2 -2
- package/styles/tab/icons/_fabric-dark.scss +2 -2
- package/styles/tab/icons/_fluent.scss +140 -0
- package/styles/tab/icons/_tailwind.scss +140 -140
- package/styles/tab/material-dark.css +42 -15
- package/styles/tab/material.css +42 -15
- package/styles/tab/tailwind-dark.css +42 -17
- package/styles/tab/tailwind.css +42 -17
- package/styles/tailwind-dark.css +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
|
@@ -79,6 +79,12 @@ $treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
|
79
79
|
$treeview-border-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6) !default;
|
|
80
80
|
$treeview-drop-count-border-size: 1px !default;
|
|
81
81
|
$treeview-drop-count-font-size: 13px !default;
|
|
82
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
83
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
84
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
85
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
86
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
87
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
82
88
|
|
|
83
89
|
$treeview-big-item-height: 40px !default;
|
|
84
90
|
$treeview-big-text-height: 38px !default;
|
|
@@ -97,6 +103,11 @@ $treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
|
97
103
|
$treeview-drag-icon-padding: 6px !default;
|
|
98
104
|
$treeview-font-family: $font-family !default;
|
|
99
105
|
$treeview-drag-icon-font-size: 12px !default;
|
|
106
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
107
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
108
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
109
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
110
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
100
111
|
|
|
101
112
|
$treeview-font-family: $font-family !default;
|
|
102
113
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -77,6 +77,12 @@ $treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
|
77
77
|
$treeview-border-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6) !default;
|
|
78
78
|
$treeview-drop-count-border-size: 1px !default;
|
|
79
79
|
$treeview-drop-count-font-size: 13px !default;
|
|
80
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
81
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
82
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
83
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
84
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
85
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
80
86
|
|
|
81
87
|
$treeview-big-item-height: 40px !default;
|
|
82
88
|
$treeview-big-text-height: 38px !default;
|
|
@@ -92,6 +98,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
92
98
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
93
99
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
94
100
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
101
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
102
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
103
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
104
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
105
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
95
106
|
|
|
96
107
|
$treeview-font-family: $font-family !default;
|
|
97
108
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -91,6 +91,12 @@ $treeview-drop-count-border-size: 0px !default;
|
|
|
91
91
|
$treeview-big-drop-count-border-size: 1px !default;
|
|
92
92
|
$treeview-drop-count-font-size: 14px !default;
|
|
93
93
|
$treeview-drag-item-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.25) !default;
|
|
94
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
95
|
+
$treeview-check-wrap-width: calc(100% - 18px) !default;
|
|
96
|
+
$treeview-check-icon-wrap-width: calc(100% - 55px) !default;
|
|
97
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 83px) !default;
|
|
98
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
99
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
94
100
|
|
|
95
101
|
$treeview-big-item-height: 40px !default;
|
|
96
102
|
$treeview-big-text-height: 36px !default;
|
|
@@ -115,6 +121,11 @@ $treeview-big-check-text-padding: 0 12px !default;
|
|
|
115
121
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
116
122
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
117
123
|
$treeview-big-rtl-check-image-margin: 4px 16px 2px 0 !default;
|
|
124
|
+
$treeview-big-check-wrap-width: calc(100% - 24px) !default;
|
|
125
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 65px) !default;
|
|
126
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 93px) !default;
|
|
127
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
128
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
118
129
|
$treeview-drag-icon-padding: 8px!default;
|
|
119
130
|
$treeview-drag-icon-padding-right: 4px!default;
|
|
120
131
|
$treeview-drag-icon-font-size: 14px;
|
|
@@ -1,109 +1,120 @@
|
|
|
1
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
2
|
-
// sass-lint:disable-all
|
|
3
|
-
$treeview-font-size: $text-sm !default;
|
|
4
|
-
$treeview-icon-font-size: 20px !default;
|
|
5
|
-
$treeview-image-font-size: 20px !default;
|
|
6
|
-
$treeview-item-height: 36px !default;
|
|
7
|
-
$treeview-text-height: 34px !default;
|
|
8
|
-
$treeview-input-height: 30px !default;
|
|
9
|
-
$treeview-root-ul-padding: 0 0 0 12px !default;
|
|
10
|
-
$treeview-rtl-root-ul-padding: 0 12px 0 0 !default;
|
|
11
|
-
$treeview-child-ul-padding: 0 0 0 20px !default;
|
|
12
|
-
$treeview-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
13
|
-
$treeview-text-wrap-padding: 0 0 0 20px !default;
|
|
14
|
-
$treeview-rtl-text-wrap-padding: 0 20px 0 0 !default;
|
|
15
|
-
$treeview-icon-size: 20px !default;
|
|
16
|
-
$treeview-icon-margin: 0 0 0 -20px !default;
|
|
17
|
-
$treeview-rtl-icon-margin: 0 -20px 0 0 !default;
|
|
18
|
-
$treeview-icon-padding: 0px !default;
|
|
19
|
-
$treeview-text-padding: 0 8px !default;
|
|
20
|
-
$treeview-text-margin: 0 !default;
|
|
21
|
-
$treeview-image-size: 20px !default;
|
|
22
|
-
$treeview-image-margin: 0 0 0 8px !default;
|
|
23
|
-
$treeview-navigable-icon-image-anchor-margin-bigger: 0 12px 0 8px !default;
|
|
24
|
-
$treeview-navigable-icon-image-anchor-margin-reverse-bigger: 0 6px 0 10px !default;
|
|
25
|
-
$treeview-navigable-icon-image-anchor-margin: 0 8px 0 0 !default;
|
|
26
|
-
$treeview-navigable-icon-image-anchor-margin-reverse: 0 0 0 8px !default;
|
|
27
|
-
$treeview-navigable-rtl-margin-reverse: 0 12px 0 0 !default;
|
|
28
|
-
$treeview-rtl-image-margin: 0 8px 0 0 !default;
|
|
29
|
-
$treeview-image-text-padding: 0 8px !default;
|
|
30
|
-
$treeview-icon-image-margin: 0 0 0 8px !default;
|
|
31
|
-
$treeview-rtl-icon-image-margin: 0 8px 0 0 !default;
|
|
32
|
-
$treeview-check-margin: 0 0 0 8px !default;
|
|
33
|
-
$treeview-rtl-check-margin: 0 8px 0 0 !default;
|
|
34
|
-
$treeview-check-text-padding: 0 8px !default;
|
|
35
|
-
$treeview-check-image-margin: 0 0 0 8px !default;
|
|
36
|
-
$treeview-rtl-check-image-margin: 0 8px 0 0 !default;
|
|
37
|
-
$treeview-drop-count-border-size: 1px !default;
|
|
38
|
-
$treeview-drop-count-font-size: $text-xs !default;
|
|
39
|
-
|
|
40
|
-
$treeview-
|
|
41
|
-
$treeview-
|
|
42
|
-
$treeview-
|
|
43
|
-
$treeview-
|
|
44
|
-
$treeview-
|
|
45
|
-
|
|
46
|
-
$treeview-big-
|
|
47
|
-
$treeview-big-icon-
|
|
48
|
-
$treeview-big-
|
|
49
|
-
$treeview-big-
|
|
50
|
-
$treeview-big-
|
|
51
|
-
$treeview-big-
|
|
52
|
-
$treeview-big-
|
|
53
|
-
$treeview-big-
|
|
54
|
-
$treeview-big-
|
|
55
|
-
$treeview-big-rtl-
|
|
56
|
-
$treeview-big-
|
|
57
|
-
$treeview-big-rtl-
|
|
58
|
-
$treeview-big-
|
|
59
|
-
$treeview-big-rtl-
|
|
60
|
-
$treeview-big-image-
|
|
61
|
-
$treeview-big-
|
|
62
|
-
$treeview-big-
|
|
63
|
-
$treeview-big-
|
|
64
|
-
$treeview-big-
|
|
65
|
-
$treeview-big-
|
|
66
|
-
$treeview-big-
|
|
67
|
-
$treeview-big-
|
|
68
|
-
$treeview-big-
|
|
69
|
-
|
|
70
|
-
$treeview-
|
|
71
|
-
$treeview-drag-icon-font-size:
|
|
72
|
-
$treeview-drag-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
$
|
|
76
|
-
$
|
|
77
|
-
$
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
$treeview-
|
|
82
|
-
$treeview-
|
|
83
|
-
$treeview-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
$
|
|
87
|
-
$
|
|
88
|
-
$
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
$treeview-
|
|
92
|
-
$treeview-
|
|
93
|
-
$treeview-
|
|
94
|
-
$treeview-item-active-
|
|
95
|
-
$treeview-
|
|
96
|
-
$treeview-
|
|
97
|
-
$treeview-
|
|
98
|
-
$treeview-
|
|
99
|
-
$treeview-
|
|
100
|
-
$treeview-
|
|
101
|
-
$treeview-
|
|
102
|
-
$treeview-
|
|
103
|
-
$treeview-
|
|
104
|
-
$treeview-
|
|
105
|
-
$treeview-
|
|
106
|
-
$treeview-
|
|
107
|
-
$treeview-
|
|
108
|
-
$treeview-
|
|
109
|
-
$treeview-
|
|
1
|
+
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
2
|
+
// sass-lint:disable-all
|
|
3
|
+
$treeview-font-size: $text-sm !default;
|
|
4
|
+
$treeview-icon-font-size: 20px !default;
|
|
5
|
+
$treeview-image-font-size: 20px !default;
|
|
6
|
+
$treeview-item-height: 36px !default;
|
|
7
|
+
$treeview-text-height: 34px !default;
|
|
8
|
+
$treeview-input-height: 30px !default;
|
|
9
|
+
$treeview-root-ul-padding: 0 0 0 12px !default;
|
|
10
|
+
$treeview-rtl-root-ul-padding: 0 12px 0 0 !default;
|
|
11
|
+
$treeview-child-ul-padding: 0 0 0 20px !default;
|
|
12
|
+
$treeview-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
13
|
+
$treeview-text-wrap-padding: 0 0 0 20px !default;
|
|
14
|
+
$treeview-rtl-text-wrap-padding: 0 20px 0 0 !default;
|
|
15
|
+
$treeview-icon-size: 20px !default;
|
|
16
|
+
$treeview-icon-margin: 0 0 0 -20px !default;
|
|
17
|
+
$treeview-rtl-icon-margin: 0 -20px 0 0 !default;
|
|
18
|
+
$treeview-icon-padding: 0px !default;
|
|
19
|
+
$treeview-text-padding: 0 8px !default;
|
|
20
|
+
$treeview-text-margin: 0 !default;
|
|
21
|
+
$treeview-image-size: 20px !default;
|
|
22
|
+
$treeview-image-margin: 0 0 0 8px !default;
|
|
23
|
+
$treeview-navigable-icon-image-anchor-margin-bigger: 0 12px 0 8px !default;
|
|
24
|
+
$treeview-navigable-icon-image-anchor-margin-reverse-bigger: 0 6px 0 10px !default;
|
|
25
|
+
$treeview-navigable-icon-image-anchor-margin: 0 8px 0 0 !default;
|
|
26
|
+
$treeview-navigable-icon-image-anchor-margin-reverse: 0 0 0 8px !default;
|
|
27
|
+
$treeview-navigable-rtl-margin-reverse: 0 12px 0 0 !default;
|
|
28
|
+
$treeview-rtl-image-margin: 0 8px 0 0 !default;
|
|
29
|
+
$treeview-image-text-padding: 0 8px !default;
|
|
30
|
+
$treeview-icon-image-margin: 0 0 0 8px !default;
|
|
31
|
+
$treeview-rtl-icon-image-margin: 0 8px 0 0 !default;
|
|
32
|
+
$treeview-check-margin: 0 0 0 8px !default;
|
|
33
|
+
$treeview-rtl-check-margin: 0 8px 0 0 !default;
|
|
34
|
+
$treeview-check-text-padding: 0 8px !default;
|
|
35
|
+
$treeview-check-image-margin: 0 0 0 8px !default;
|
|
36
|
+
$treeview-rtl-check-image-margin: 0 8px 0 0 !default;
|
|
37
|
+
$treeview-drop-count-border-size: 1px !default;
|
|
38
|
+
$treeview-drop-count-font-size: $text-xs !default;
|
|
39
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
40
|
+
$treeview-check-wrap-width: calc(100% - 21px) !default;
|
|
41
|
+
$treeview-check-icon-wrap-width: calc(100% - 54px) !default;
|
|
42
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 82px) !default;
|
|
43
|
+
$treeview-icon-wrap-width: calc(100% - 32px) !default;
|
|
44
|
+
$treeview-icon-img-wrap-width: calc(100% - 60px) !default;
|
|
45
|
+
|
|
46
|
+
$treeview-big-font-size: $text-base !default;
|
|
47
|
+
$treeview-big-icon-font-size: 24px !default;
|
|
48
|
+
$treeview-big-item-height: 42px !default;
|
|
49
|
+
$treeview-big-text-height: 40px !default;
|
|
50
|
+
$treeview-big-input-height: 40px !default;
|
|
51
|
+
$treeview-big-text-padding: 0 12px !default;
|
|
52
|
+
$treeview-big-input-padding: 0 9px !default;
|
|
53
|
+
$treeview-big-icon-padding: 0px !default;
|
|
54
|
+
$treeview-big-image-margin: 0 0 0 12px !default;
|
|
55
|
+
$treeview-big-rtl-image-margin: 0 12px 0 0 !default;
|
|
56
|
+
$treeview-big-icon-image-margin: 0 0 0 12px !default;
|
|
57
|
+
$treeview-big-rtl-icon-image-margin: 0 12px 0 0 !default;
|
|
58
|
+
$treeview-big-check-margin: 0 0 0 12px !default;
|
|
59
|
+
$treeview-big-rtl-check-margin: 0 12px 0 0 !default;
|
|
60
|
+
$treeview-big-check-image-margin: 0 0 0 12px !default;
|
|
61
|
+
$treeview-big-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
62
|
+
$treeview-big-root-ul-padding: 0 0 0 16px !default;
|
|
63
|
+
$treeview-big-rtl-root-ul-padding: 0 16px 0 0 !default;
|
|
64
|
+
$treeview-big-child-ul-padding: 0 0 0 20px !default;
|
|
65
|
+
$treeview-big-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
66
|
+
$treeview-big-image-text-padding: 0 12px !default;
|
|
67
|
+
$treeview-big-icon-margin: 0 0 0 -24px !default;
|
|
68
|
+
$treeview-big-rtl-icon-margin: 0 -24px 0 0 !default;
|
|
69
|
+
$treeview-big-text-wrap-padding: 0 0 0 24px !default;
|
|
70
|
+
$treeview-big-rtl-text-wrap-padding: 0 24px 0 0 !default;
|
|
71
|
+
$treeview-big-drag-icon-font-size: 24px !default;
|
|
72
|
+
$treeview-big-drag-item-text-padding-left: 24px !default;
|
|
73
|
+
$treeview-big-drag-before-icon-padding: 6px !default;
|
|
74
|
+
$treeview-big-check-text-padding: 0 12px !default;
|
|
75
|
+
$treeview-big-check-wrap-width: calc(100% - 29px) !default;
|
|
76
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 65px) !default;
|
|
77
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 101px) !default;
|
|
78
|
+
$treeview-big-icon-wrap-width: calc(100% - 35px) !default;
|
|
79
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 71px) !default;
|
|
80
|
+
|
|
81
|
+
$treeview-font-family: $font-family !default;
|
|
82
|
+
$treeview-drag-icon-font-size: 20px !default;
|
|
83
|
+
$treeview-drag-icon-padding: 12px !default;
|
|
84
|
+
|
|
85
|
+
//treeview ripple effect variables
|
|
86
|
+
$ripple-size: -7px !default;
|
|
87
|
+
$ripple-height: 32px !default;
|
|
88
|
+
$ripple-width: 32px !default;
|
|
89
|
+
|
|
90
|
+
//color variables
|
|
91
|
+
$treeview-icon-color: $icon-color !default;
|
|
92
|
+
$treeview-text-color: $content-text-color !default;
|
|
93
|
+
$treeview-item-border-color: $transparent !default;
|
|
94
|
+
$treeview-item-active-bg: $content-bg-color-selected !default;
|
|
95
|
+
$treeview-icon-active-color: $content-text-color-selected !default;
|
|
96
|
+
$treeview-text-active-color: $content-text-color-selected !default;
|
|
97
|
+
$treeview-item-active-border-color: $content-bg-color-selected !default;
|
|
98
|
+
$treeview-item-hover-bg: $content-bg-color-hover !default;
|
|
99
|
+
$treeview-icon-hover-color: $icon-color-hover !default;
|
|
100
|
+
$treeview-text-hover-color: $content-text-color-hover !default;
|
|
101
|
+
$treeview-item-hover-border-color: $content-bg-color-hover !default;
|
|
102
|
+
$treeview-item-active-hover-bg: darken($treeview-item-active-bg, 5%) !default;
|
|
103
|
+
$treeview-icon-active-hover-color: $content-text-color-selected !default;
|
|
104
|
+
$treeview-text-active-hover-color: $content-text-color-selected !default;
|
|
105
|
+
$treeview-item-active-hover-border-color: $content-bg-color-selected !default;
|
|
106
|
+
$treeview-text-disable-color: $content-text-color-disabled !default;
|
|
107
|
+
$treeview-icon-disable-color: $icon-color-disabled !default;
|
|
108
|
+
$treeview-drag-line-bg: $primary !default;
|
|
109
|
+
$treeview-drag-line-color: $primary !default;
|
|
110
|
+
$treeview-popup-bg-color: $content-bg-color-hover !default;
|
|
111
|
+
$treeview-popup-border-color: $content-bg-color-hover !default;
|
|
112
|
+
$treeview-drop-count-bg: $primary !default;
|
|
113
|
+
$treeview-drop-count-border: $primary-text-color !default;
|
|
114
|
+
$treeview-drop-count-color: $primary-text-color !default;
|
|
115
|
+
$treeview-drag-item-bg: $content-bg-color-alt3 !default;
|
|
116
|
+
$treeview-drag-item-color: $content-text-color-alt1 !default;
|
|
117
|
+
$treeview-drag-icon-color: $content-text-color-alt1 !default;
|
|
118
|
+
$treeview-item-active-check-bg: $primary-text-color !default;
|
|
119
|
+
$treeview-item-active-check-border-color: $primary-text-color !default;
|
|
120
|
+
$treeview-item-active-check-color: $primary !default;
|
|
@@ -76,6 +76,12 @@ $treeview-check-image-margin: 0 0 0 12px !default;
|
|
|
76
76
|
$treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
77
77
|
$treeview-drop-count-border-size: 1px !default;
|
|
78
78
|
$treeview-drop-count-font-size: 13px !default;
|
|
79
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
80
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
81
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
82
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
83
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
84
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
79
85
|
|
|
80
86
|
$treeview-big-item-height: 40px !default;
|
|
81
87
|
$treeview-big-text-height: 38px !default;
|
|
@@ -91,6 +97,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
91
97
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
92
98
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
93
99
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
100
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
101
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
102
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
103
|
+
$treeview-big-icon-wrap-width: calc(100% - 35px) !default;
|
|
104
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
94
105
|
$treeview-drag-icon-padding: 6px !default;
|
|
95
106
|
$treeview-font-family: $font-family !default;
|
|
96
107
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -76,6 +76,12 @@ $treeview-check-image-margin: 0 0 0 12px !default;
|
|
|
76
76
|
$treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
77
77
|
$treeview-drop-count-border-size: 1px !default;
|
|
78
78
|
$treeview-drop-count-font-size: 13px !default;
|
|
79
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
80
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
81
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
82
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
83
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
84
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
79
85
|
|
|
80
86
|
$treeview-big-item-height: 40px !default;
|
|
81
87
|
$treeview-big-text-height: 38px !default;
|
|
@@ -91,6 +97,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
91
97
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
92
98
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
93
99
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
100
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
101
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
102
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
103
|
+
$treeview-big-icon-wrap-width: calc(100% - 35px) !default;
|
|
104
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
94
105
|
|
|
95
106
|
$treeview-font-family: $font-family !default;
|
|
96
107
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
2
|
+
// sass-lint:disable-all
|
|
3
|
+
$treeview-font-size: $text-sm !default;
|
|
4
|
+
$treeview-icon-font-size: 20px !default;
|
|
5
|
+
$treeview-image-font-size: 20px !default;
|
|
6
|
+
$treeview-item-height: 38px !default;
|
|
7
|
+
$treeview-text-height: 36px !default;
|
|
8
|
+
$treeview-input-height: 30px !default;
|
|
9
|
+
$treeview-root-ul-padding: 0 0 0 12px !default;
|
|
10
|
+
$treeview-rtl-root-ul-padding: 0 12px 0 0 !default;
|
|
11
|
+
$treeview-child-ul-padding: 0 0 0 20px !default;
|
|
12
|
+
$treeview-rtl-child-ul-padding: 0 20px 0 0 !default;
|
|
13
|
+
$treeview-text-wrap-padding: 0 0 0 20px !default;
|
|
14
|
+
$treeview-rtl-text-wrap-padding: 0 20px 0 0 !default;
|
|
15
|
+
$treeview-icon-size: 20px !default;
|
|
16
|
+
$treeview-icon-margin: 0 0 0 -20px !default;
|
|
17
|
+
$treeview-rtl-icon-margin: 0 -20px 0 0 !default;
|
|
18
|
+
$treeview-icon-padding: 0px !default;
|
|
19
|
+
$treeview-text-padding: 0 12px !default;
|
|
20
|
+
$treeview-text-margin: 0 !default;
|
|
21
|
+
$treeview-image-size: 20px !default;
|
|
22
|
+
$treeview-image-margin: 0 0 0 12px !default;
|
|
23
|
+
$treeview-navigable-icon-image-anchor-margin-bigger: 0 16px 0 12px !default;
|
|
24
|
+
$treeview-navigable-icon-image-anchor-margin-reverse-bigger: 0 10px 0 14px !default;
|
|
25
|
+
$treeview-navigable-icon-image-anchor-margin: 0 12px 0 0 !default;
|
|
26
|
+
$treeview-navigable-icon-image-anchor-margin-reverse: 0 0 0 12px !default;
|
|
27
|
+
$treeview-navigable-rtl-margin-reverse: 0 16px 0 0 !default;
|
|
28
|
+
$treeview-rtl-image-margin: 0 12px 0 0 !default;
|
|
29
|
+
$treeview-image-text-padding: 0 12px !default;
|
|
30
|
+
$treeview-icon-image-margin: 0 0 0 12px !default;
|
|
31
|
+
$treeview-rtl-icon-image-margin: 0 12px 0 0 !default;
|
|
32
|
+
$treeview-check-margin: 0 0 0 12px !default;
|
|
33
|
+
$treeview-rtl-check-margin: 0 12px 0 0 !default;
|
|
34
|
+
$treeview-check-text-padding: 0 12px !default;
|
|
35
|
+
$treeview-check-image-margin: 0 0 0 12px !default;
|
|
36
|
+
$treeview-rtl-check-image-margin: 0 12px 0 0 !default;
|
|
37
|
+
$treeview-drop-count-border-size: 1px !default;
|
|
38
|
+
$treeview-drop-count-font-size: $text-xs !default;
|
|
39
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
40
|
+
$treeview-check-wrap-width: calc(100% - 27px) !default;
|
|
41
|
+
$treeview-check-icon-wrap-width: calc(100% - 60px) !default;
|
|
42
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 88px) !default;
|
|
43
|
+
$treeview-icon-wrap-width: calc(100% - 32px) !default;
|
|
44
|
+
$treeview-icon-img-wrap-width: calc(100% - 60px) !default;
|
|
45
|
+
|
|
46
|
+
$treeview-big-font-size: $text-base !default;
|
|
47
|
+
$treeview-big-icon-font-size: 24px !default;
|
|
48
|
+
$treeview-big-item-height: 44px !default;
|
|
49
|
+
$treeview-big-text-height: 40px !default;
|
|
50
|
+
$treeview-big-input-height: 40px !default;
|
|
51
|
+
$treeview-big-text-padding: 0 16px !default;
|
|
52
|
+
$treeview-big-input-padding: 0 9px !default;
|
|
53
|
+
$treeview-big-icon-padding: 0px !default;
|
|
54
|
+
$treeview-big-image-margin: 0 0 0 16px !default;
|
|
55
|
+
$treeview-big-rtl-image-margin: 0 16px 0 0 !default;
|
|
56
|
+
$treeview-big-icon-image-margin: 0 0 0 16px !default;
|
|
57
|
+
$treeview-big-rtl-icon-image-margin: 0 16px 0 0 !default;
|
|
58
|
+
$treeview-big-check-margin: 0 0 0 16px !default;
|
|
59
|
+
$treeview-big-rtl-check-margin: 0 16px 0 0 !default;
|
|
60
|
+
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
61
|
+
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
62
|
+
$treeview-big-root-ul-padding: 0 0 0 16px !default;
|
|
63
|
+
$treeview-big-rtl-root-ul-padding: 0 16px 0 0 !default;
|
|
64
|
+
$treeview-big-child-ul-padding: 0 0 0 24px !default;
|
|
65
|
+
$treeview-big-rtl-child-ul-padding: 0 24px 0 0 !default;
|
|
66
|
+
$treeview-big-image-text-padding: 0 16px !default;
|
|
67
|
+
$treeview-big-icon-margin: 0 0 0 -24px !default;
|
|
68
|
+
$treeview-big-rtl-icon-margin: 0 -24px 0 0 !default;
|
|
69
|
+
$treeview-big-text-wrap-padding: 0 0 0 24px !default;
|
|
70
|
+
$treeview-big-rtl-text-wrap-padding: 0 24px 0 0 !default;
|
|
71
|
+
$treeview-big-drag-icon-font-size: 14px !default;
|
|
72
|
+
$treeview-big-drag-item-text-padding-left: 16px !default;
|
|
73
|
+
$treeview-big-drag-before-icon-padding: 14px !default;
|
|
74
|
+
$treeview-big-check-text-padding: 0 16px !default;
|
|
75
|
+
$treeview-big-check-wrap-width: calc(100% - 33px) !default;
|
|
76
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 70px) !default;
|
|
77
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 102px) !default;
|
|
78
|
+
$treeview-big-icon-wrap-width: calc(100% - 36px) !default;
|
|
79
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 69px) !default;
|
|
80
|
+
|
|
81
|
+
$treeview-font-family: $font-family !default;
|
|
82
|
+
$treeview-drag-icon-font-size: 12px !default;
|
|
83
|
+
$treeview-drag-icon-padding: 12px !default;
|
|
84
|
+
|
|
85
|
+
//treeview ripple effect variables
|
|
86
|
+
$ripple-size: -7px !default;
|
|
87
|
+
$ripple-height: 32px !default;
|
|
88
|
+
$ripple-width: 32px !default;
|
|
89
|
+
|
|
90
|
+
//color variables
|
|
91
|
+
$treeview-icon-color: $icon-color !default;
|
|
92
|
+
$treeview-text-color: $content-text-color !default;
|
|
93
|
+
$treeview-item-border-color: $transparent !default;
|
|
94
|
+
$treeview-item-active-bg: $content-bg-color-selected !default;
|
|
95
|
+
$treeview-icon-active-color: $content-text-color-selected !default;
|
|
96
|
+
$treeview-text-active-color: $content-text-color-selected !default;
|
|
97
|
+
$treeview-item-active-border-color: $content-bg-color-selected !default;
|
|
98
|
+
$treeview-item-hover-bg: $content-bg-color-hover !default;
|
|
99
|
+
$treeview-icon-hover-color: $icon-color-hover !default;
|
|
100
|
+
$treeview-text-hover-color: $content-text-color-hover !default;
|
|
101
|
+
$treeview-item-hover-border-color: $content-bg-color-hover !default;
|
|
102
|
+
$treeview-item-active-hover-bg: darken($treeview-item-active-bg, 5%) !default;
|
|
103
|
+
$treeview-icon-active-hover-color: $content-text-color-selected !default;
|
|
104
|
+
$treeview-text-active-hover-color: $content-text-color-selected !default;
|
|
105
|
+
$treeview-item-active-hover-border-color: $content-bg-color-selected !default;
|
|
106
|
+
$treeview-text-disable-color: $content-text-color-disabled !default;
|
|
107
|
+
$treeview-icon-disable-color: $icon-color-disabled !default;
|
|
108
|
+
$treeview-drag-line-bg: $primary !default;
|
|
109
|
+
$treeview-drag-line-color: $primary !default;
|
|
110
|
+
$treeview-popup-bg-color: $content-bg-color-hover !default;
|
|
111
|
+
$treeview-popup-border-color: $content-bg-color-hover !default;
|
|
112
|
+
$treeview-drop-count-bg: $primary !default;
|
|
113
|
+
$treeview-drop-count-border: $primary-text-color !default;
|
|
114
|
+
$treeview-drop-count-color: $primary-text-color !default;
|
|
115
|
+
$treeview-drag-item-bg: $content-bg-color-alt2 !default;
|
|
116
|
+
$treeview-drag-item-color: $content-text-color-alt1 !default;
|
|
117
|
+
$treeview-drag-icon-color: $content-text-color-alt1 !default;
|
|
118
|
+
$treeview-item-active-check-bg: $primary-text-color !default;
|
|
119
|
+
$treeview-item-active-check-border-color: $primary-text-color !default;
|
|
120
|
+
$treeview-item-active-check-color: $primary !default;
|
|
@@ -82,6 +82,12 @@ $treeview-border-shadow: 0 -1px 2px $hover-border, 0 1px 2px $hover-border !defa
|
|
|
82
82
|
$treeview-drop-count-border-size: 2px !default;
|
|
83
83
|
$treeview-drop-count-font-size: 12px !default;
|
|
84
84
|
$treeview-active-font-weight: 600 !default;
|
|
85
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
86
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
87
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
88
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
89
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
90
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
85
91
|
|
|
86
92
|
$treeview-big-item-height: 40px !default;
|
|
87
93
|
$treeview-big-text-height: 38px !default;
|
|
@@ -97,6 +103,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
97
103
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
98
104
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
99
105
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
106
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
107
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
108
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
109
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
110
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
100
111
|
|
|
101
112
|
$treeview-font-family: $font-family !default;
|
|
102
113
|
$treeview-drag-icon-font-size: 12px !default;
|
|
@@ -81,6 +81,12 @@ $treeview-border-shadow: 0 -1px 2px $hover-border, 0 1px 2px $hover-border !defa
|
|
|
81
81
|
$treeview-drop-count-border-size: 2px !default;
|
|
82
82
|
$treeview-drop-count-font-size: 12px !default;
|
|
83
83
|
$treeview-active-font-weight: 600 !default;
|
|
84
|
+
$treeview-edit-wrap-width: calc(100% - 2px) !default;
|
|
85
|
+
$treeview-check-wrap-width: calc(100% - 24px) !default;
|
|
86
|
+
$treeview-check-icon-wrap-width: calc(100% - 61px) !default;
|
|
87
|
+
$treeview-check-icon-img-wrap-width: calc(100% - 89px) !default;
|
|
88
|
+
$treeview-icon-wrap-width: calc(100% - 29px) !default;
|
|
89
|
+
$treeview-icon-img-wrap-width: calc(100% - 57px) !default;
|
|
84
90
|
|
|
85
91
|
$treeview-big-font-size: 15px !default;
|
|
86
92
|
$treeview-big-icon-font-size: 12px !default;
|
|
@@ -99,6 +105,11 @@ $treeview-big-check-margin: 0 0 0 10px !default;
|
|
|
99
105
|
$treeview-big-rtl-check-margin: 0 10px 0 0 !default;
|
|
100
106
|
$treeview-big-check-image-margin: 0 0 0 16px !default;
|
|
101
107
|
$treeview-big-rtl-check-image-margin: 0 16px 0 0 !default;
|
|
108
|
+
$treeview-big-check-wrap-width: calc(100% - 27px) !default;
|
|
109
|
+
$treeview-big-check-icon-wrap-width: calc(100% - 68px) !default;
|
|
110
|
+
$treeview-big-check-icon-img-wrap-width: calc(100% - 96px) !default;
|
|
111
|
+
$treeview-big-icon-wrap-width: calc(100% - 34px) !default;
|
|
112
|
+
$treeview-big-icon-img-wrap-width: calc(100% - 62px) !default;
|
|
102
113
|
$treeview-drag-icon-padding: 6px !default;
|
|
103
114
|
$treeview-font-family: $font-family !default;
|
|
104
115
|
$treeview-drag-icon-font-size: 12px !default;
|