@syncfusion/ej2-dropdowns 18.2.44-4568 → 18.2.44-4570
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 +244 -0
- package/CHANGELOG.md +1524 -1524
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -1
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +99 -60
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +191 -151
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -1
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +63 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.js +19 -19
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.js +19 -19
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.js +19 -19
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.js +19 -19
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +19 -19
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.js +19 -19
- package/src/multi-select/checkbox-selection.js +3 -1
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +58 -19
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/bootstrap-dark.css +13 -16
- package/styles/bootstrap.css +12 -15
- package/styles/bootstrap4.css +6 -10
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +61 -61
- package/styles/drop-down-tree/_bootstrap-definition.scss +61 -61
- package/styles/drop-down-tree/_bootstrap4-definition.scss +62 -62
- package/styles/drop-down-tree/_fabric-dark-definition.scss +62 -62
- package/styles/drop-down-tree/_fabric-definition.scss +62 -62
- package/styles/drop-down-tree/_highcontrast-definition.scss +62 -62
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +62 -62
- package/styles/drop-down-tree/_layout.scss +437 -437
- package/styles/drop-down-tree/_material-dark-definition.scss +60 -60
- package/styles/drop-down-tree/_material-definition.scss +60 -60
- package/styles/drop-down-tree/_theme.scss +68 -68
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/material.css +9 -0
- package/styles/fabric-dark.css +2 -5
- package/styles/fabric.css +1 -4
- package/styles/highcontrast-light.css +2 -5
- package/styles/highcontrast.css +2 -7
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/material-dark.css +8 -11
- package/styles/material.css +34 -10
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -259
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -389
- package/styles/multi-select/bootstrap-dark.css +13 -16
- package/styles/multi-select/bootstrap.css +12 -15
- package/styles/multi-select/bootstrap4.css +6 -10
- package/styles/multi-select/fabric-dark.css +2 -5
- package/styles/multi-select/fabric.css +1 -4
- package/styles/multi-select/highcontrast-light.css +2 -5
- package/styles/multi-select/highcontrast.css +2 -7
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material-dark.css +8 -11
- package/styles/multi-select/material.css +16 -10
package/styles/fabric.css
CHANGED
|
@@ -1698,7 +1698,7 @@ ejs-multiselect {
|
|
|
1698
1698
|
|
|
1699
1699
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1700
1700
|
font-size: 13px;
|
|
1701
|
-
line-height:
|
|
1701
|
+
line-height: 26px;
|
|
1702
1702
|
}
|
|
1703
1703
|
|
|
1704
1704
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1771,7 +1771,6 @@ ejs-multiselect {
|
|
|
1771
1771
|
}
|
|
1772
1772
|
|
|
1773
1773
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1774
|
-
-webkit-text-fill-color: #666;
|
|
1775
1774
|
color: #666;
|
|
1776
1775
|
font-family: inherit;
|
|
1777
1776
|
font-size: 14px;
|
|
@@ -1800,7 +1799,6 @@ ejs-multiselect {
|
|
|
1800
1799
|
}
|
|
1801
1800
|
|
|
1802
1801
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1803
|
-
-webkit-text-fill-color: #666;
|
|
1804
1802
|
color: #666;
|
|
1805
1803
|
font-size: 10px;
|
|
1806
1804
|
}
|
|
@@ -1923,7 +1921,6 @@ ejs-multiselect {
|
|
|
1923
1921
|
}
|
|
1924
1922
|
|
|
1925
1923
|
.e-multi-select-wrapper .e-delim-values {
|
|
1926
|
-
-webkit-text-fill-color: #666;
|
|
1927
1924
|
color: #666;
|
|
1928
1925
|
}
|
|
1929
1926
|
|
|
@@ -1832,7 +1832,7 @@ ejs-multiselect {
|
|
|
1832
1832
|
|
|
1833
1833
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1834
1834
|
font-size: 13px;
|
|
1835
|
-
line-height:
|
|
1835
|
+
line-height: 26px;
|
|
1836
1836
|
}
|
|
1837
1837
|
|
|
1838
1838
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1905,7 +1905,6 @@ ejs-multiselect {
|
|
|
1905
1905
|
}
|
|
1906
1906
|
|
|
1907
1907
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1908
|
-
-webkit-text-fill-color: #fff;
|
|
1909
1908
|
color: #fff;
|
|
1910
1909
|
font-family: inherit;
|
|
1911
1910
|
font-size: 14px;
|
|
@@ -1934,7 +1933,6 @@ ejs-multiselect {
|
|
|
1934
1933
|
}
|
|
1935
1934
|
|
|
1936
1935
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1937
|
-
-webkit-text-fill-color: #fff;
|
|
1938
1936
|
color: #fff;
|
|
1939
1937
|
font-size: 10px;
|
|
1940
1938
|
}
|
|
@@ -2065,7 +2063,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2065
2063
|
}
|
|
2066
2064
|
|
|
2067
2065
|
.e-multi-select-wrapper .e-delim-values {
|
|
2068
|
-
-webkit-text-fill-color: #fff;
|
|
2069
2066
|
color: #fff;
|
|
2070
2067
|
}
|
|
2071
2068
|
|
|
@@ -2074,7 +2071,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2074
2071
|
}
|
|
2075
2072
|
|
|
2076
2073
|
.e-small .e-multi-select-wrapper .e-chips {
|
|
2077
|
-
height:
|
|
2074
|
+
height: 22px;
|
|
2078
2075
|
}
|
|
2079
2076
|
|
|
2080
2077
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
package/styles/highcontrast.css
CHANGED
|
@@ -1187,12 +1187,10 @@ ejs-dropdownlist {
|
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
1189
1189
|
.e-multi-select-wrapper .e-delim-values.e-delim-view {
|
|
1190
|
-
-webkit-text-fill-color: #fff;
|
|
1191
1190
|
color: #fff;
|
|
1192
1191
|
}
|
|
1193
1192
|
|
|
1194
1193
|
.e-multi-select-wrapper.e-delimiter .e-delim-values {
|
|
1195
|
-
-webkit-text-fill-color: #fff;
|
|
1196
1194
|
color: #fff;
|
|
1197
1195
|
}
|
|
1198
1196
|
|
|
@@ -1839,7 +1837,7 @@ ejs-multiselect {
|
|
|
1839
1837
|
|
|
1840
1838
|
.e-small .e-multi-select-wrapper .e-delim-values {
|
|
1841
1839
|
font-size: 13px;
|
|
1842
|
-
line-height:
|
|
1840
|
+
line-height: 26px;
|
|
1843
1841
|
}
|
|
1844
1842
|
|
|
1845
1843
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
@@ -1912,7 +1910,6 @@ ejs-multiselect {
|
|
|
1912
1910
|
}
|
|
1913
1911
|
|
|
1914
1912
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1915
|
-
-webkit-text-fill-color: #000;
|
|
1916
1913
|
color: #000;
|
|
1917
1914
|
font-family: inherit;
|
|
1918
1915
|
font-size: 14px;
|
|
@@ -1941,7 +1938,6 @@ ejs-multiselect {
|
|
|
1941
1938
|
}
|
|
1942
1939
|
|
|
1943
1940
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1944
|
-
-webkit-text-fill-color: #000;
|
|
1945
1941
|
color: #000;
|
|
1946
1942
|
font-size: 10px;
|
|
1947
1943
|
}
|
|
@@ -2072,7 +2068,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2072
2068
|
}
|
|
2073
2069
|
|
|
2074
2070
|
.e-multi-select-wrapper .e-delim-values {
|
|
2075
|
-
-webkit-text-fill-color: #000;
|
|
2076
2071
|
color: #000;
|
|
2077
2072
|
}
|
|
2078
2073
|
|
|
@@ -2081,7 +2076,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
2081
2076
|
}
|
|
2082
2077
|
|
|
2083
2078
|
.e-small .e-multi-select-wrapper .e-chips {
|
|
2084
|
-
height:
|
|
2079
|
+
height: 22px;
|
|
2085
2080
|
}
|
|
2086
2081
|
|
|
2087
2082
|
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import 'layout.scss';
|
|
2
|
-
@import 'theme.scss';
|
|
1
|
+
@import 'layout.scss';
|
|
2
|
+
@import 'theme.scss';
|
|
@@ -1,118 +1,118 @@
|
|
|
1
|
-
//default
|
|
2
|
-
$skin-name: 'bootstrap' !default;
|
|
3
|
-
$listview-font-family: $font-family !default;
|
|
4
|
-
$listview-text-color: rgba($grey-dark-font, 1) !default;
|
|
5
|
-
$listview-text-disabled: $grey-light-font !default;
|
|
6
|
-
$listview-icon-color: $grey-dark-font !default;
|
|
7
|
-
$listview-icon-disabled: rgba($grey-dark-font, .5) !default;
|
|
8
|
-
$listview-icon-margin-right: 10px !default;
|
|
9
|
-
$listview-icon-back-margin: -2px !default;
|
|
10
|
-
$listview-rtl-icon-back-margin: -1px !default;
|
|
11
|
-
$listview-icon-line-height: 34px !default;
|
|
12
|
-
$listview-icon-collapsible: '\e943' !default;
|
|
13
|
-
$listview-icon-collapsible-rtl: '\e981' !default;
|
|
14
|
-
$listview-icon-back-rtl: '\e85f' !default;
|
|
15
|
-
$listview-back-icon: '\e94b' !default;
|
|
16
|
-
$listview-background: $grey-base !default;
|
|
17
|
-
$listview-line-color: rgba($grey-base, .1) !default;
|
|
18
|
-
$listview-item-hover-bg: $grey !default;
|
|
19
|
-
$listview-item-height: 40px !default;
|
|
20
|
-
$listview-item-line-height: 36px !default;
|
|
21
|
-
$listview-item-padding: 0 15px !default;
|
|
22
|
-
$checkmark-bgcolor: $grey-base !default;
|
|
23
|
-
$checkmark-border-color: $grey-dark-font !default;
|
|
24
|
-
$checkmark-color: $grey-dark-font !default;
|
|
25
|
-
$listview-border-bottom: 1px !default;
|
|
26
|
-
$listview-border-top: 0 !default;
|
|
27
|
-
$listview-border-left: 0 !default;
|
|
28
|
-
$listview-border-right: 0 !default;
|
|
29
|
-
$listview-hover-border-color: transparent !default;
|
|
30
|
-
$listview-border-bottom-color: rgba($grey-44, 1) !default;
|
|
31
|
-
$listview-border-top-color: transparent !default;
|
|
32
|
-
$listview-border-right-color: transparent !default;
|
|
33
|
-
$listview-border-left-color: transparent !default;
|
|
34
|
-
$listview-group-first-border-bottom: 1px !default;
|
|
35
|
-
$listview-group-border-top: 0 !default;
|
|
36
|
-
$listview-group-border-bottom: 1px !default;
|
|
37
|
-
$listview-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
38
|
-
$listview-item-active-bg: $grey-44 !default;
|
|
39
|
-
$listview-text-active-color: rgba($grey-light-font, .87) !default;
|
|
40
|
-
$listview-header-text-color: rgba($grey-light-font, .95) !default;
|
|
41
|
-
$listview-header-text-disabled: $grey-light-font !default;
|
|
42
|
-
$listview-header-text-padding: 20px !default;
|
|
43
|
-
$listview-header-bg: $grey-white !default;
|
|
44
|
-
$listview-header-icon-color: $grey-light-font !default;
|
|
45
|
-
$listview-header-icon-disabled: $grey-light-font !default;
|
|
46
|
-
$listview-header-border: $grey-44 !default;
|
|
47
|
-
$listview-header-font-size: 14px !default;
|
|
48
|
-
$listview-header-height: 40px !default;
|
|
49
|
-
$listview-header-font-weight: bold !default;
|
|
50
|
-
$listview-header-line-height: 1px !default;
|
|
51
|
-
$listview-header-padding-bottom: 4px !default;
|
|
52
|
-
$listview-groupheader-text-color: lighten($brand-primary, 15%) !default;
|
|
53
|
-
$listview-groupheader-bg: $grey-base !default;
|
|
54
|
-
$listview-groupheader-border: $grey-44 !default;
|
|
55
|
-
$listview-groupheader-icon: $grey-dark-font !default;
|
|
56
|
-
$listview-groupheader-item-height: 40px !default;
|
|
57
|
-
$listview-groupheader-item-line-height: 36px !default;
|
|
58
|
-
$listview-groupheader-font-size: 14px !default;
|
|
59
|
-
$listview-border-size: 0 !default;
|
|
60
|
-
$listview-font-size: 14px !default;
|
|
61
|
-
$listview-back-padding-right: 10px !default;
|
|
62
|
-
$listview-back-icon-height: 0 !default;
|
|
63
|
-
$listview-back-icon-font-size: 14px !default;
|
|
64
|
-
$listview-touch-item-height: 48px !default;
|
|
65
|
-
$listview-touch-item-line-height: 45px !default;
|
|
66
|
-
$listview-touch-item-font-size: 15px !default;
|
|
67
|
-
$listview-touch-groupheader-height: 48px !default;
|
|
68
|
-
$listview-touch-groupheader-line-height: 45px !default;
|
|
69
|
-
$listview-touch-header-height: 48px !default;
|
|
70
|
-
$listview-touch-header-font-weight: bold !default;
|
|
71
|
-
$listview-touch-back-icon-padding: 2px !default;
|
|
72
|
-
$listview-touch-header-font-size: 15px !default;
|
|
73
|
-
$listview-touch-header-line-height: 6px !default;
|
|
74
|
-
$listview-touch-header-icon-margin-top: 2px !default;
|
|
75
|
-
$listview-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
76
|
-
$listview-checkbox-right-margin: -4px 0 0 10px !default;
|
|
77
|
-
$listview-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
78
|
-
$listview-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
79
|
-
//ListView In-built template variables
|
|
80
|
-
$listview-template-padding: .7142em 1.0714em !default;
|
|
81
|
-
$listview-template-avatar-padding-right: 1.0714em !default;
|
|
82
|
-
$listview-template-avatar-padding-left: 4.6428em !default;
|
|
83
|
-
$listview-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
84
|
-
$listview-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
85
|
-
$listview-template-avatar-size: 2.8571em !default;
|
|
86
|
-
$listview-template-avatar-top: .7142em !default;
|
|
87
|
-
$listview-template-avatar-left: 1.0667em !default;
|
|
88
|
-
$listview-template-avatar-rightposition-right: 1.0667em !default;
|
|
89
|
-
$listview-template-badge-height: 1.333em !default;
|
|
90
|
-
$listview-template-badge-width: 2em !default;
|
|
91
|
-
$listview-template-badge-line-height: 1.433em !default;
|
|
92
|
-
$listview-template-badge-font-size: 15px !default;
|
|
93
|
-
$listview-template-badge-right: 1em !default;
|
|
94
|
-
$listview-template-avatar-badge-padding-right: 3.9285em !default;
|
|
95
|
-
$listview-template-avatar-badge-padding-left: 4.6428em !default;
|
|
96
|
-
$listview-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
97
|
-
$listview-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
98
|
-
$listview-template-item-padding: .83em 0 !default;
|
|
99
|
-
$listview-template-multiline-header-color: $grey-light-font !default;
|
|
100
|
-
$listview-template-multiline-content-color: $grey-light !default;
|
|
101
|
-
$listview-template-multiline-header-padding: .038em 0 !default;
|
|
102
|
-
$listview-template-multiline-content-padding: .038em 0 !default;
|
|
103
|
-
$listview-template-multiline-header-font-size: 18px !default;
|
|
104
|
-
$listview-template-multiline-padding: .7142em 1.0714em !default;
|
|
105
|
-
$listview-template-multiline-content-font-size: 14px !default;
|
|
106
|
-
$listview-template-multiline-avatar-top: .7142em !default;
|
|
107
|
-
//enddefault
|
|
108
|
-
|
|
109
|
-
$listbox-border-color: $grey-88;
|
|
110
|
-
$badge-color: $brand-primary-font !default;
|
|
111
|
-
$badge-bgcolor: $brand-primary !default;
|
|
112
|
-
|
|
113
|
-
$select-all-border-color: $grey-88 !default;
|
|
114
|
-
|
|
115
|
-
$listbox-filter-height: calc(100% - 52px) !default;
|
|
116
|
-
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
117
|
-
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
118
|
-
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|
|
1
|
+
//default
|
|
2
|
+
$skin-name: 'bootstrap' !default;
|
|
3
|
+
$listview-font-family: $font-family !default;
|
|
4
|
+
$listview-text-color: rgba($grey-dark-font, 1) !default;
|
|
5
|
+
$listview-text-disabled: $grey-light-font !default;
|
|
6
|
+
$listview-icon-color: $grey-dark-font !default;
|
|
7
|
+
$listview-icon-disabled: rgba($grey-dark-font, .5) !default;
|
|
8
|
+
$listview-icon-margin-right: 10px !default;
|
|
9
|
+
$listview-icon-back-margin: -2px !default;
|
|
10
|
+
$listview-rtl-icon-back-margin: -1px !default;
|
|
11
|
+
$listview-icon-line-height: 34px !default;
|
|
12
|
+
$listview-icon-collapsible: '\e943' !default;
|
|
13
|
+
$listview-icon-collapsible-rtl: '\e981' !default;
|
|
14
|
+
$listview-icon-back-rtl: '\e85f' !default;
|
|
15
|
+
$listview-back-icon: '\e94b' !default;
|
|
16
|
+
$listview-background: $grey-base !default;
|
|
17
|
+
$listview-line-color: rgba($grey-base, .1) !default;
|
|
18
|
+
$listview-item-hover-bg: $grey !default;
|
|
19
|
+
$listview-item-height: 40px !default;
|
|
20
|
+
$listview-item-line-height: 36px !default;
|
|
21
|
+
$listview-item-padding: 0 15px !default;
|
|
22
|
+
$checkmark-bgcolor: $grey-base !default;
|
|
23
|
+
$checkmark-border-color: $grey-dark-font !default;
|
|
24
|
+
$checkmark-color: $grey-dark-font !default;
|
|
25
|
+
$listview-border-bottom: 1px !default;
|
|
26
|
+
$listview-border-top: 0 !default;
|
|
27
|
+
$listview-border-left: 0 !default;
|
|
28
|
+
$listview-border-right: 0 !default;
|
|
29
|
+
$listview-hover-border-color: transparent !default;
|
|
30
|
+
$listview-border-bottom-color: rgba($grey-44, 1) !default;
|
|
31
|
+
$listview-border-top-color: transparent !default;
|
|
32
|
+
$listview-border-right-color: transparent !default;
|
|
33
|
+
$listview-border-left-color: transparent !default;
|
|
34
|
+
$listview-group-first-border-bottom: 1px !default;
|
|
35
|
+
$listview-group-border-top: 0 !default;
|
|
36
|
+
$listview-group-border-bottom: 1px !default;
|
|
37
|
+
$listview-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
38
|
+
$listview-item-active-bg: $grey-44 !default;
|
|
39
|
+
$listview-text-active-color: rgba($grey-light-font, .87) !default;
|
|
40
|
+
$listview-header-text-color: rgba($grey-light-font, .95) !default;
|
|
41
|
+
$listview-header-text-disabled: $grey-light-font !default;
|
|
42
|
+
$listview-header-text-padding: 20px !default;
|
|
43
|
+
$listview-header-bg: $grey-white !default;
|
|
44
|
+
$listview-header-icon-color: $grey-light-font !default;
|
|
45
|
+
$listview-header-icon-disabled: $grey-light-font !default;
|
|
46
|
+
$listview-header-border: $grey-44 !default;
|
|
47
|
+
$listview-header-font-size: 14px !default;
|
|
48
|
+
$listview-header-height: 40px !default;
|
|
49
|
+
$listview-header-font-weight: bold !default;
|
|
50
|
+
$listview-header-line-height: 1px !default;
|
|
51
|
+
$listview-header-padding-bottom: 4px !default;
|
|
52
|
+
$listview-groupheader-text-color: lighten($brand-primary, 15%) !default;
|
|
53
|
+
$listview-groupheader-bg: $grey-base !default;
|
|
54
|
+
$listview-groupheader-border: $grey-44 !default;
|
|
55
|
+
$listview-groupheader-icon: $grey-dark-font !default;
|
|
56
|
+
$listview-groupheader-item-height: 40px !default;
|
|
57
|
+
$listview-groupheader-item-line-height: 36px !default;
|
|
58
|
+
$listview-groupheader-font-size: 14px !default;
|
|
59
|
+
$listview-border-size: 0 !default;
|
|
60
|
+
$listview-font-size: 14px !default;
|
|
61
|
+
$listview-back-padding-right: 10px !default;
|
|
62
|
+
$listview-back-icon-height: 0 !default;
|
|
63
|
+
$listview-back-icon-font-size: 14px !default;
|
|
64
|
+
$listview-touch-item-height: 48px !default;
|
|
65
|
+
$listview-touch-item-line-height: 45px !default;
|
|
66
|
+
$listview-touch-item-font-size: 15px !default;
|
|
67
|
+
$listview-touch-groupheader-height: 48px !default;
|
|
68
|
+
$listview-touch-groupheader-line-height: 45px !default;
|
|
69
|
+
$listview-touch-header-height: 48px !default;
|
|
70
|
+
$listview-touch-header-font-weight: bold !default;
|
|
71
|
+
$listview-touch-back-icon-padding: 2px !default;
|
|
72
|
+
$listview-touch-header-font-size: 15px !default;
|
|
73
|
+
$listview-touch-header-line-height: 6px !default;
|
|
74
|
+
$listview-touch-header-icon-margin-top: 2px !default;
|
|
75
|
+
$listview-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
76
|
+
$listview-checkbox-right-margin: -4px 0 0 10px !default;
|
|
77
|
+
$listview-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
78
|
+
$listview-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
79
|
+
//ListView In-built template variables
|
|
80
|
+
$listview-template-padding: .7142em 1.0714em !default;
|
|
81
|
+
$listview-template-avatar-padding-right: 1.0714em !default;
|
|
82
|
+
$listview-template-avatar-padding-left: 4.6428em !default;
|
|
83
|
+
$listview-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
84
|
+
$listview-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
85
|
+
$listview-template-avatar-size: 2.8571em !default;
|
|
86
|
+
$listview-template-avatar-top: .7142em !default;
|
|
87
|
+
$listview-template-avatar-left: 1.0667em !default;
|
|
88
|
+
$listview-template-avatar-rightposition-right: 1.0667em !default;
|
|
89
|
+
$listview-template-badge-height: 1.333em !default;
|
|
90
|
+
$listview-template-badge-width: 2em !default;
|
|
91
|
+
$listview-template-badge-line-height: 1.433em !default;
|
|
92
|
+
$listview-template-badge-font-size: 15px !default;
|
|
93
|
+
$listview-template-badge-right: 1em !default;
|
|
94
|
+
$listview-template-avatar-badge-padding-right: 3.9285em !default;
|
|
95
|
+
$listview-template-avatar-badge-padding-left: 4.6428em !default;
|
|
96
|
+
$listview-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
97
|
+
$listview-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
98
|
+
$listview-template-item-padding: .83em 0 !default;
|
|
99
|
+
$listview-template-multiline-header-color: $grey-light-font !default;
|
|
100
|
+
$listview-template-multiline-content-color: $grey-light !default;
|
|
101
|
+
$listview-template-multiline-header-padding: .038em 0 !default;
|
|
102
|
+
$listview-template-multiline-content-padding: .038em 0 !default;
|
|
103
|
+
$listview-template-multiline-header-font-size: 18px !default;
|
|
104
|
+
$listview-template-multiline-padding: .7142em 1.0714em !default;
|
|
105
|
+
$listview-template-multiline-content-font-size: 14px !default;
|
|
106
|
+
$listview-template-multiline-avatar-top: .7142em !default;
|
|
107
|
+
//enddefault
|
|
108
|
+
|
|
109
|
+
$listbox-border-color: $grey-88;
|
|
110
|
+
$badge-color: $brand-primary-font !default;
|
|
111
|
+
$badge-bgcolor: $brand-primary !default;
|
|
112
|
+
|
|
113
|
+
$select-all-border-color: $grey-88 !default;
|
|
114
|
+
|
|
115
|
+
$listbox-filter-height: calc(100% - 52px) !default;
|
|
116
|
+
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
117
|
+
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
118
|
+
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
$skin-name: 'bootstrap' !default;
|
|
2
|
-
$listview-font-family: $font-family !default;
|
|
3
|
-
$listview-text-color: rgba($grey-light-font, 1) !default;
|
|
4
|
-
$listview-text-disabled: $grey-light-font !default;
|
|
5
|
-
$listview-icon-color: rgba(0, 0, 0, .75) !default;
|
|
6
|
-
$listview-icon-disabled: $grey-light-font !default;
|
|
7
|
-
$listview-icon-margin-right: 10px !default;
|
|
8
|
-
$listview-icon-line-height: 34px !default;
|
|
9
|
-
$listview-icon-back-margin: -2px !default;
|
|
10
|
-
$listview-rtl-icon-back-margin: -1px !default;
|
|
11
|
-
$listview-background: $grey-white !default;
|
|
12
|
-
$listview-line-color: rgba($grey-base, .1) !default;
|
|
13
|
-
$listview-item-hover-bg: $grey-f5 !default;
|
|
14
|
-
$listview-item-height: 40px !default;
|
|
15
|
-
$listview-item-line-height: 36px !default;
|
|
16
|
-
$listview-item-padding: 0 15px !default;
|
|
17
|
-
$checkmark-bgcolor: $grey-white !default;
|
|
18
|
-
$checkmark-border-color: $grey-cc !default;
|
|
19
|
-
$checkmark-color: $grey !default;
|
|
20
|
-
$listview-border-bottom: 1px !default;
|
|
21
|
-
$listview-border-top: 0 !default;
|
|
22
|
-
$listview-border-left: 0 !default;
|
|
23
|
-
$listview-border-right: 0 !default;
|
|
24
|
-
$listview-hover-border-color: transparent !default;
|
|
25
|
-
$listview-border-bottom-color: rgba($grey-base, .1) !default;
|
|
26
|
-
$listview-border-top-color: transparent !default;
|
|
27
|
-
$listview-border-right-color: transparent !default;
|
|
28
|
-
$listview-border-left-color: transparent !default;
|
|
29
|
-
$listview-group-first-border-bottom: 1px !default;
|
|
30
|
-
$listview-group-border-top: 0 !default;
|
|
31
|
-
$listview-group-border-bottom: 1px !default;
|
|
32
|
-
$listview-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
33
|
-
$listview-item-active-bg: $grey-e6 !default;
|
|
34
|
-
$listview-text-active-color: rgba($grey-light-font, .87) !default;
|
|
35
|
-
$listview-header-text-color: rgba($grey-light-font, .95) !default;
|
|
36
|
-
$listview-header-text-disabled: $grey-light-font !default;
|
|
37
|
-
$listview-header-text-padding: 20px !default;
|
|
38
|
-
$listview-header-bg: $grey-white !default;
|
|
39
|
-
$listview-header-icon-color: $grey-light-font !default;
|
|
40
|
-
$listview-header-icon-disabled: $grey-light-font !default;
|
|
41
|
-
$listview-header-border: rgba($grey-base, .12) !default;
|
|
42
|
-
$listview-header-font-size: 14px !default;
|
|
43
|
-
$listview-header-height: 40px !default;
|
|
44
|
-
$listview-header-font-weight: bold !default;
|
|
45
|
-
$listview-header-line-height: inherit !default;
|
|
46
|
-
$listview-header-padding-bottom: 4px !default;
|
|
47
|
-
$listview-groupheader-text-color: $grey-light-font !default;
|
|
48
|
-
$listview-groupheader-bg: $grey-white !default;
|
|
49
|
-
$listview-groupheader-border: $grey-base !default;
|
|
50
|
-
$listview-groupheader-icon: $grey-light-font !default;
|
|
51
|
-
$listview-groupheader-item-height: 40px !default;
|
|
52
|
-
$listview-groupheader-item-line-height: 36px !default;
|
|
53
|
-
$listview-groupheader-font-size: 14px !default;
|
|
54
|
-
$listview-border-size: 0 !default;
|
|
55
|
-
$listview-font-size: 14px !default;
|
|
56
|
-
$listview-back-padding-right: 10px !default;
|
|
57
|
-
$listview-back-icon-height: 0 !default;
|
|
58
|
-
$listview-back-icon-font-size: 14px !default;
|
|
59
|
-
$listview-touch-item-height: 48px !default;
|
|
60
|
-
$listview-touch-item-line-height: 45px !default;
|
|
61
|
-
$listview-touch-item-font-size: 15px !default;
|
|
62
|
-
$listview-touch-groupheader-height: 48px !default;
|
|
63
|
-
$listview-touch-groupheader-line-height: 45px !default;
|
|
64
|
-
$listview-touch-header-height: 48px !default;
|
|
65
|
-
$listview-touch-header-font-weight: bold !default;
|
|
66
|
-
$listview-touch-back-icon-padding: 2px !default;
|
|
67
|
-
$listview-touch-header-font-size: 15px !default;
|
|
68
|
-
$listview-touch-header-line-height: 6px !default;
|
|
69
|
-
$listview-touch-header-icon-margin-top: 2px !default;
|
|
70
|
-
$listview-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
71
|
-
$listview-checkbox-right-margin: -4px 0 0 10px !default;
|
|
72
|
-
$listview-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
73
|
-
$listview-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
74
|
-
//ListView In-built template variables
|
|
75
|
-
$listview-template-padding: .7142em 1.0714em !default;
|
|
76
|
-
$listview-template-avatar-padding-right: 1.0714em !default;
|
|
77
|
-
$listview-template-avatar-padding-left: 4.6428em !default;
|
|
78
|
-
$listview-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
79
|
-
$listview-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
80
|
-
$listview-template-avatar-size: 2.8571em !default;
|
|
81
|
-
$listview-template-avatar-top: .7142em !default;
|
|
82
|
-
$listview-template-avatar-left: 1.0667em !default;
|
|
83
|
-
$listview-template-avatar-rightposition-right: 1.0667em !default;
|
|
84
|
-
$listview-template-badge-height: 1.333em !default;
|
|
85
|
-
$listview-template-badge-width: 2em !default;
|
|
86
|
-
$listview-template-badge-line-height: 1.433em !default;
|
|
87
|
-
$listview-template-badge-font-size: 15px !default;
|
|
88
|
-
$listview-template-badge-right: 1em !default;
|
|
89
|
-
$listview-template-avatar-badge-padding-right: 3.9285em !default;
|
|
90
|
-
$listview-template-avatar-badge-padding-left: 4.6428em !default;
|
|
91
|
-
$listview-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
92
|
-
$listview-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
93
|
-
$listview-template-item-padding: .83em 0 !default;
|
|
94
|
-
$listview-template-multiline-header-color: $grey-light-font !default;
|
|
95
|
-
$listview-template-multiline-content-color: $grey-light !default;
|
|
96
|
-
$listview-template-multiline-header-padding: .038em 0 !default;
|
|
97
|
-
$listview-template-multiline-content-padding: .038em 0 !default;
|
|
98
|
-
$listview-template-multiline-header-font-size: 18px !default;
|
|
99
|
-
$listview-template-multiline-padding: .7142em 1.0714em !default;
|
|
100
|
-
$listview-template-multiline-content-font-size: 14px !default;
|
|
101
|
-
$listview-template-multiline-avatar-top: .7142em !default;
|
|
102
|
-
|
|
103
|
-
$listbox-border-color: $grey-dd;
|
|
104
|
-
$badge-color: $brand-primary-font !default;
|
|
105
|
-
$badge-bgcolor: $brand-primary !default;
|
|
106
|
-
|
|
107
|
-
$select-all-border-color: $grey-e6 !default;
|
|
108
|
-
|
|
109
|
-
$listbox-filter-height: calc(100% - 52px) !default;
|
|
110
|
-
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
111
|
-
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
112
|
-
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|
|
1
|
+
$skin-name: 'bootstrap' !default;
|
|
2
|
+
$listview-font-family: $font-family !default;
|
|
3
|
+
$listview-text-color: rgba($grey-light-font, 1) !default;
|
|
4
|
+
$listview-text-disabled: $grey-light-font !default;
|
|
5
|
+
$listview-icon-color: rgba(0, 0, 0, .75) !default;
|
|
6
|
+
$listview-icon-disabled: $grey-light-font !default;
|
|
7
|
+
$listview-icon-margin-right: 10px !default;
|
|
8
|
+
$listview-icon-line-height: 34px !default;
|
|
9
|
+
$listview-icon-back-margin: -2px !default;
|
|
10
|
+
$listview-rtl-icon-back-margin: -1px !default;
|
|
11
|
+
$listview-background: $grey-white !default;
|
|
12
|
+
$listview-line-color: rgba($grey-base, .1) !default;
|
|
13
|
+
$listview-item-hover-bg: $grey-f5 !default;
|
|
14
|
+
$listview-item-height: 40px !default;
|
|
15
|
+
$listview-item-line-height: 36px !default;
|
|
16
|
+
$listview-item-padding: 0 15px !default;
|
|
17
|
+
$checkmark-bgcolor: $grey-white !default;
|
|
18
|
+
$checkmark-border-color: $grey-cc !default;
|
|
19
|
+
$checkmark-color: $grey !default;
|
|
20
|
+
$listview-border-bottom: 1px !default;
|
|
21
|
+
$listview-border-top: 0 !default;
|
|
22
|
+
$listview-border-left: 0 !default;
|
|
23
|
+
$listview-border-right: 0 !default;
|
|
24
|
+
$listview-hover-border-color: transparent !default;
|
|
25
|
+
$listview-border-bottom-color: rgba($grey-base, .1) !default;
|
|
26
|
+
$listview-border-top-color: transparent !default;
|
|
27
|
+
$listview-border-right-color: transparent !default;
|
|
28
|
+
$listview-border-left-color: transparent !default;
|
|
29
|
+
$listview-group-first-border-bottom: 1px !default;
|
|
30
|
+
$listview-group-border-top: 0 !default;
|
|
31
|
+
$listview-group-border-bottom: 1px !default;
|
|
32
|
+
$listview-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
33
|
+
$listview-item-active-bg: $grey-e6 !default;
|
|
34
|
+
$listview-text-active-color: rgba($grey-light-font, .87) !default;
|
|
35
|
+
$listview-header-text-color: rgba($grey-light-font, .95) !default;
|
|
36
|
+
$listview-header-text-disabled: $grey-light-font !default;
|
|
37
|
+
$listview-header-text-padding: 20px !default;
|
|
38
|
+
$listview-header-bg: $grey-white !default;
|
|
39
|
+
$listview-header-icon-color: $grey-light-font !default;
|
|
40
|
+
$listview-header-icon-disabled: $grey-light-font !default;
|
|
41
|
+
$listview-header-border: rgba($grey-base, .12) !default;
|
|
42
|
+
$listview-header-font-size: 14px !default;
|
|
43
|
+
$listview-header-height: 40px !default;
|
|
44
|
+
$listview-header-font-weight: bold !default;
|
|
45
|
+
$listview-header-line-height: inherit !default;
|
|
46
|
+
$listview-header-padding-bottom: 4px !default;
|
|
47
|
+
$listview-groupheader-text-color: $grey-light-font !default;
|
|
48
|
+
$listview-groupheader-bg: $grey-white !default;
|
|
49
|
+
$listview-groupheader-border: $grey-base !default;
|
|
50
|
+
$listview-groupheader-icon: $grey-light-font !default;
|
|
51
|
+
$listview-groupheader-item-height: 40px !default;
|
|
52
|
+
$listview-groupheader-item-line-height: 36px !default;
|
|
53
|
+
$listview-groupheader-font-size: 14px !default;
|
|
54
|
+
$listview-border-size: 0 !default;
|
|
55
|
+
$listview-font-size: 14px !default;
|
|
56
|
+
$listview-back-padding-right: 10px !default;
|
|
57
|
+
$listview-back-icon-height: 0 !default;
|
|
58
|
+
$listview-back-icon-font-size: 14px !default;
|
|
59
|
+
$listview-touch-item-height: 48px !default;
|
|
60
|
+
$listview-touch-item-line-height: 45px !default;
|
|
61
|
+
$listview-touch-item-font-size: 15px !default;
|
|
62
|
+
$listview-touch-groupheader-height: 48px !default;
|
|
63
|
+
$listview-touch-groupheader-line-height: 45px !default;
|
|
64
|
+
$listview-touch-header-height: 48px !default;
|
|
65
|
+
$listview-touch-header-font-weight: bold !default;
|
|
66
|
+
$listview-touch-back-icon-padding: 2px !default;
|
|
67
|
+
$listview-touch-header-font-size: 15px !default;
|
|
68
|
+
$listview-touch-header-line-height: 6px !default;
|
|
69
|
+
$listview-touch-header-icon-margin-top: 2px !default;
|
|
70
|
+
$listview-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
71
|
+
$listview-checkbox-right-margin: -4px 0 0 10px !default;
|
|
72
|
+
$listview-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
73
|
+
$listview-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
74
|
+
//ListView In-built template variables
|
|
75
|
+
$listview-template-padding: .7142em 1.0714em !default;
|
|
76
|
+
$listview-template-avatar-padding-right: 1.0714em !default;
|
|
77
|
+
$listview-template-avatar-padding-left: 4.6428em !default;
|
|
78
|
+
$listview-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
79
|
+
$listview-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
80
|
+
$listview-template-avatar-size: 2.8571em !default;
|
|
81
|
+
$listview-template-avatar-top: .7142em !default;
|
|
82
|
+
$listview-template-avatar-left: 1.0667em !default;
|
|
83
|
+
$listview-template-avatar-rightposition-right: 1.0667em !default;
|
|
84
|
+
$listview-template-badge-height: 1.333em !default;
|
|
85
|
+
$listview-template-badge-width: 2em !default;
|
|
86
|
+
$listview-template-badge-line-height: 1.433em !default;
|
|
87
|
+
$listview-template-badge-font-size: 15px !default;
|
|
88
|
+
$listview-template-badge-right: 1em !default;
|
|
89
|
+
$listview-template-avatar-badge-padding-right: 3.9285em !default;
|
|
90
|
+
$listview-template-avatar-badge-padding-left: 4.6428em !default;
|
|
91
|
+
$listview-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
92
|
+
$listview-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
93
|
+
$listview-template-item-padding: .83em 0 !default;
|
|
94
|
+
$listview-template-multiline-header-color: $grey-light-font !default;
|
|
95
|
+
$listview-template-multiline-content-color: $grey-light !default;
|
|
96
|
+
$listview-template-multiline-header-padding: .038em 0 !default;
|
|
97
|
+
$listview-template-multiline-content-padding: .038em 0 !default;
|
|
98
|
+
$listview-template-multiline-header-font-size: 18px !default;
|
|
99
|
+
$listview-template-multiline-padding: .7142em 1.0714em !default;
|
|
100
|
+
$listview-template-multiline-content-font-size: 14px !default;
|
|
101
|
+
$listview-template-multiline-avatar-top: .7142em !default;
|
|
102
|
+
|
|
103
|
+
$listbox-border-color: $grey-dd;
|
|
104
|
+
$badge-color: $brand-primary-font !default;
|
|
105
|
+
$badge-bgcolor: $brand-primary !default;
|
|
106
|
+
|
|
107
|
+
$select-all-border-color: $grey-e6 !default;
|
|
108
|
+
|
|
109
|
+
$listbox-filter-height: calc(100% - 52px) !default;
|
|
110
|
+
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
111
|
+
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
112
|
+
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|