@syncfusion/ej2-angular-kanban 20.2.38-ngcc → 20.2.43
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +7 -0
- package/esm2020/src/kanban/columns.directive.mjs +66 -0
- package/esm2020/src/kanban/kanban-all.module.mjs +23 -0
- package/esm2020/src/kanban/kanban.component.mjs +100 -0
- package/esm2020/src/kanban/kanban.module.mjs +43 -0
- package/esm2020/src/kanban/stackedheaders.directive.mjs +58 -0
- package/esm2020/syncfusion-ej2-angular-kanban.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/package.json +29 -15
- package/schematics/utils/lib-details.ts +2 -2
- package/src/kanban/columns.directive.d.ts +5 -0
- package/src/kanban/kanban-all.module.d.ts +6 -0
- package/src/kanban/kanban.component.d.ts +3 -0
- package/src/kanban/kanban.module.d.ts +8 -0
- package/src/kanban/stackedheaders.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +18 -16
- package/styles/bootstrap.css +18 -16
- package/styles/bootstrap4.css +18 -15
- package/styles/bootstrap5-dark.css +20 -17
- package/styles/bootstrap5.css +20 -17
- package/styles/fabric-dark.css +19 -17
- package/styles/fabric.css +19 -17
- package/styles/fluent-dark.css +19 -16
- package/styles/fluent.css +19 -16
- package/styles/highcontrast-light.css +22 -17
- package/styles/highcontrast.css +22 -17
- package/styles/kanban/_all.scss +2 -0
- package/styles/kanban/_bootstrap-dark-definition.scss +224 -0
- package/styles/kanban/_bootstrap-definition.scss +223 -0
- package/styles/kanban/_bootstrap4-definition.scss +224 -0
- package/styles/kanban/_bootstrap5-dark-definition.scss +1 -0
- package/styles/kanban/_bootstrap5-definition.scss +233 -0
- package/styles/kanban/_fabric-dark-definition.scss +223 -0
- package/styles/kanban/_fabric-definition.scss +223 -0
- package/styles/kanban/_fluent-dark-definition.scss +1 -0
- package/styles/kanban/_fluent-definition.scss +225 -0
- package/styles/kanban/_fusionnew-definition.scss +233 -0
- package/styles/kanban/_highcontrast-definition.scss +224 -0
- package/styles/kanban/_highcontrast-light-definition.scss +224 -0
- package/styles/kanban/_layout.scss +976 -0
- package/styles/kanban/_material-dark-definition.scss +223 -0
- package/styles/kanban/_material-definition.scss +223 -0
- package/styles/kanban/_material3-definition.scss +233 -0
- package/styles/kanban/_tailwind-dark-definition.scss +1 -0
- package/styles/kanban/_tailwind-definition.scss +234 -0
- package/styles/kanban/_theme.scss +148 -0
- package/styles/kanban/bootstrap-dark.css +18 -16
- package/styles/kanban/bootstrap-dark.scss +15 -1
- package/styles/kanban/bootstrap.css +18 -16
- package/styles/kanban/bootstrap.scss +15 -1
- package/styles/kanban/bootstrap4.css +18 -15
- package/styles/kanban/bootstrap4.scss +15 -1
- package/styles/kanban/bootstrap5-dark.css +20 -17
- package/styles/kanban/bootstrap5-dark.scss +15 -1
- package/styles/kanban/bootstrap5.css +20 -17
- package/styles/kanban/bootstrap5.scss +15 -1
- package/styles/kanban/fabric-dark.css +19 -17
- package/styles/kanban/fabric-dark.scss +15 -1
- package/styles/kanban/fabric.css +19 -17
- package/styles/kanban/fabric.scss +15 -1
- package/styles/kanban/fluent-dark.css +19 -16
- package/styles/kanban/fluent-dark.scss +15 -1
- package/styles/kanban/fluent.css +19 -16
- package/styles/kanban/fluent.scss +15 -1
- package/styles/kanban/highcontrast-light.css +22 -17
- package/styles/kanban/highcontrast-light.scss +15 -1
- package/styles/kanban/highcontrast.css +22 -17
- package/styles/kanban/highcontrast.scss +15 -1
- package/styles/kanban/icons/_bootstrap-dark.scss +47 -0
- package/styles/kanban/icons/_bootstrap.scss +47 -0
- package/styles/kanban/icons/_bootstrap4.scss +47 -0
- package/styles/kanban/icons/_bootstrap5-dark.scss +1 -0
- package/styles/kanban/icons/_bootstrap5.scss +47 -0
- package/styles/kanban/icons/_fabric-dark.scss +47 -0
- package/styles/kanban/icons/_fabric.scss +47 -0
- package/styles/kanban/icons/_fluent-dark.scss +1 -0
- package/styles/kanban/icons/_fluent.scss +47 -0
- package/styles/kanban/icons/_fusionnew.scss +47 -0
- package/styles/kanban/icons/_highcontrast-light.scss +47 -0
- package/styles/kanban/icons/_highcontrast.scss +47 -0
- package/styles/kanban/icons/_material-dark.scss +47 -0
- package/styles/kanban/icons/_material.scss +47 -0
- package/styles/kanban/icons/_material3.scss +47 -0
- package/styles/kanban/icons/_tailwind-dark.scss +1 -0
- package/styles/kanban/icons/_tailwind.scss +47 -0
- package/styles/kanban/material-dark.css +18 -16
- package/styles/kanban/material-dark.scss +15 -1
- package/styles/kanban/material.css +18 -16
- package/styles/kanban/material.scss +15 -1
- package/styles/kanban/tailwind-dark.css +20 -17
- package/styles/kanban/tailwind-dark.scss +15 -1
- package/styles/kanban/tailwind.css +20 -17
- package/styles/kanban/tailwind.scss +15 -1
- package/styles/material-dark.css +18 -16
- package/styles/material.css +18 -16
- package/styles/tailwind-dark.css +20 -17
- package/styles/tailwind.css +20 -17
- package/syncfusion-ej2-angular-kanban.d.ts +5 -0
- package/@syncfusion/ej2-angular-kanban.es5.js +0 -355
- package/@syncfusion/ej2-angular-kanban.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-kanban.js +0 -323
- package/@syncfusion/ej2-angular-kanban.js.map +0 -1
- package/CHANGELOG.md +0 -387
- package/dist/ej2-angular-kanban.umd.js +0 -397
- package/dist/ej2-angular-kanban.umd.js.map +0 -1
- package/dist/ej2-angular-kanban.umd.min.js +0 -11
- package/dist/ej2-angular-kanban.umd.min.js.map +0 -1
- package/ej2-angular-kanban.d.ts +0 -5
- package/ej2-angular-kanban.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fabric-dark-definition.scss';
|
|
13
|
+
@import 'fabric-dark-definition.scss';
|
|
14
|
+
@import 'icons/fabric-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
package/styles/kanban/fabric.css
CHANGED
|
@@ -91,7 +91,9 @@
|
|
|
91
91
|
margin: 2px 2px 2px 0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
/*! component's theme wise override material-definitions and variables */ /*! TreeView's fabric theme wise override definitions and variables */
|
|
94
|
+
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override material-definitions and variables */ /*! TreeView's fabric theme wise override definitions and variables */
|
|
95
|
+
/* stylelint-disable */
|
|
96
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
95
97
|
@keyframes material-spinner-rotate {
|
|
96
98
|
0% {
|
|
97
99
|
transform: rotate(0);
|
|
@@ -176,7 +178,7 @@
|
|
|
176
178
|
}
|
|
177
179
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
178
180
|
font-size: 14px;
|
|
179
|
-
font-weight:
|
|
181
|
+
font-weight: normal;
|
|
180
182
|
line-height: 20px;
|
|
181
183
|
padding: 2px;
|
|
182
184
|
}
|
|
@@ -366,7 +368,7 @@
|
|
|
366
368
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
367
369
|
display: inline-block;
|
|
368
370
|
font-size: 13px;
|
|
369
|
-
font-weight:
|
|
371
|
+
font-weight: normal;
|
|
370
372
|
opacity: 0.57;
|
|
371
373
|
}
|
|
372
374
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -602,7 +604,7 @@
|
|
|
602
604
|
}
|
|
603
605
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
604
606
|
font-size: 14px;
|
|
605
|
-
font-weight:
|
|
607
|
+
font-weight: normal;
|
|
606
608
|
line-height: 20px;
|
|
607
609
|
padding: 2px;
|
|
608
610
|
}
|
|
@@ -949,15 +951,15 @@
|
|
|
949
951
|
width: 100%;
|
|
950
952
|
}
|
|
951
953
|
|
|
952
|
-
.e-kanban-dialog {
|
|
954
|
+
.e-kanban-dialog.e-dialog {
|
|
953
955
|
min-width: 350px;
|
|
954
956
|
}
|
|
955
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
956
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
957
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
958
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
957
959
|
width: 100%;
|
|
958
960
|
}
|
|
959
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
960
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
961
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
962
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
961
963
|
color: inherit;
|
|
962
964
|
font-size: 14px;
|
|
963
965
|
font-weight: 400;
|
|
@@ -967,17 +969,17 @@
|
|
|
967
969
|
padding: 5px 0;
|
|
968
970
|
text-align: left;
|
|
969
971
|
}
|
|
970
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
971
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
972
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
973
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
972
974
|
padding-right: 10px;
|
|
973
975
|
vertical-align: top;
|
|
974
976
|
width: 70px;
|
|
975
977
|
}
|
|
976
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
977
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
978
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
979
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
978
980
|
width: 100%;
|
|
979
981
|
}
|
|
980
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
982
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
981
983
|
float: left;
|
|
982
984
|
margin-left: 0;
|
|
983
985
|
}
|
|
@@ -1068,12 +1070,12 @@
|
|
|
1068
1070
|
color: #333;
|
|
1069
1071
|
}
|
|
1070
1072
|
|
|
1071
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1073
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1072
1074
|
background-color: initial;
|
|
1073
1075
|
color: #333;
|
|
1074
1076
|
min-width: 70%;
|
|
1075
|
-
font-weight:
|
|
1077
|
+
font-weight: normal;
|
|
1076
1078
|
}
|
|
1077
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1079
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1078
1080
|
box-shadow: none;
|
|
1079
1081
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fabric-definition.scss';
|
|
13
|
+
@import 'fabric-definition.scss';
|
|
14
|
+
@import 'icons/fabric.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -159,7 +159,10 @@
|
|
|
159
159
|
border-left-width: 0;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
162
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
/* stylelint-disable-line no-empty-source */
|
|
165
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
163
166
|
@keyframes material-spinner-rotate {
|
|
164
167
|
0% {
|
|
165
168
|
transform: rotate(0);
|
|
@@ -243,7 +246,7 @@
|
|
|
243
246
|
}
|
|
244
247
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
245
248
|
font-size: 14px;
|
|
246
|
-
font-weight:
|
|
249
|
+
font-weight: normal;
|
|
247
250
|
line-height: 1.5;
|
|
248
251
|
padding: 0 0 0 8px;
|
|
249
252
|
}
|
|
@@ -433,7 +436,7 @@
|
|
|
433
436
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
434
437
|
display: inline-block;
|
|
435
438
|
font-size: 13px;
|
|
436
|
-
font-weight:
|
|
439
|
+
font-weight: normal;
|
|
437
440
|
opacity: 0.57;
|
|
438
441
|
}
|
|
439
442
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -669,7 +672,7 @@
|
|
|
669
672
|
}
|
|
670
673
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
671
674
|
font-size: 14px;
|
|
672
|
-
font-weight:
|
|
675
|
+
font-weight: normal;
|
|
673
676
|
line-height: 1.5;
|
|
674
677
|
padding: 2px;
|
|
675
678
|
}
|
|
@@ -1015,15 +1018,15 @@
|
|
|
1015
1018
|
width: 100%;
|
|
1016
1019
|
}
|
|
1017
1020
|
|
|
1018
|
-
.e-kanban-dialog {
|
|
1021
|
+
.e-kanban-dialog.e-dialog {
|
|
1019
1022
|
min-width: 350px;
|
|
1020
1023
|
}
|
|
1021
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
1022
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
1024
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
1025
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
1023
1026
|
width: 100%;
|
|
1024
1027
|
}
|
|
1025
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
1026
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
1028
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
1029
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
1027
1030
|
color: #c8c6c4;
|
|
1028
1031
|
font-size: 14px;
|
|
1029
1032
|
font-weight: 600;
|
|
@@ -1033,17 +1036,17 @@
|
|
|
1033
1036
|
padding: 8px 0;
|
|
1034
1037
|
text-align: left;
|
|
1035
1038
|
}
|
|
1036
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1037
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1039
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1040
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1038
1041
|
padding-right: 10px;
|
|
1039
1042
|
vertical-align: top;
|
|
1040
1043
|
width: 70px;
|
|
1041
1044
|
}
|
|
1042
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1043
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1045
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1046
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1044
1047
|
width: 100%;
|
|
1045
1048
|
}
|
|
1046
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1049
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1047
1050
|
float: left;
|
|
1048
1051
|
margin-left: 0;
|
|
1049
1052
|
}
|
|
@@ -1137,11 +1140,11 @@
|
|
|
1137
1140
|
color: #a19f9d;
|
|
1138
1141
|
}
|
|
1139
1142
|
|
|
1140
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1143
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1141
1144
|
background-color: #1b1a19;
|
|
1142
1145
|
color: #d2d0ce;
|
|
1143
1146
|
min-width: 70%;
|
|
1144
1147
|
}
|
|
1145
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1148
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1146
1149
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1147
1150
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-dark-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fluent-dark-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fluent-dark-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fluent-dark-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fluent-dark-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fluent-dark-definition.scss';
|
|
13
|
+
@import 'fluent-dark-definition.scss';
|
|
14
|
+
@import 'icons/fluent-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
package/styles/kanban/fluent.css
CHANGED
|
@@ -159,7 +159,10 @@
|
|
|
159
159
|
border-left-width: 0;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
/*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
162
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's bootstrap5 theme wise override definitions and variables */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
/* stylelint-disable-line no-empty-source */
|
|
165
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
163
166
|
@keyframes material-spinner-rotate {
|
|
164
167
|
0% {
|
|
165
168
|
transform: rotate(0);
|
|
@@ -243,7 +246,7 @@
|
|
|
243
246
|
}
|
|
244
247
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
245
248
|
font-size: 14px;
|
|
246
|
-
font-weight:
|
|
249
|
+
font-weight: normal;
|
|
247
250
|
line-height: 1.5;
|
|
248
251
|
padding: 0 0 0 8px;
|
|
249
252
|
}
|
|
@@ -433,7 +436,7 @@
|
|
|
433
436
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
434
437
|
display: inline-block;
|
|
435
438
|
font-size: 13px;
|
|
436
|
-
font-weight:
|
|
439
|
+
font-weight: normal;
|
|
437
440
|
opacity: 0.57;
|
|
438
441
|
}
|
|
439
442
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -669,7 +672,7 @@
|
|
|
669
672
|
}
|
|
670
673
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
671
674
|
font-size: 14px;
|
|
672
|
-
font-weight:
|
|
675
|
+
font-weight: normal;
|
|
673
676
|
line-height: 1.5;
|
|
674
677
|
padding: 2px;
|
|
675
678
|
}
|
|
@@ -1015,15 +1018,15 @@
|
|
|
1015
1018
|
width: 100%;
|
|
1016
1019
|
}
|
|
1017
1020
|
|
|
1018
|
-
.e-kanban-dialog {
|
|
1021
|
+
.e-kanban-dialog.e-dialog {
|
|
1019
1022
|
min-width: 350px;
|
|
1020
1023
|
}
|
|
1021
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
1022
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
1024
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
1025
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
1023
1026
|
width: 100%;
|
|
1024
1027
|
}
|
|
1025
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
1026
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
1028
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
1029
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
1027
1030
|
color: #3b3a39;
|
|
1028
1031
|
font-size: 14px;
|
|
1029
1032
|
font-weight: 600;
|
|
@@ -1033,17 +1036,17 @@
|
|
|
1033
1036
|
padding: 8px 0;
|
|
1034
1037
|
text-align: left;
|
|
1035
1038
|
}
|
|
1036
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1037
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1039
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1040
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1038
1041
|
padding-right: 10px;
|
|
1039
1042
|
vertical-align: top;
|
|
1040
1043
|
width: 70px;
|
|
1041
1044
|
}
|
|
1042
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1043
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1045
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1046
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1044
1047
|
width: 100%;
|
|
1045
1048
|
}
|
|
1046
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1049
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1047
1050
|
float: left;
|
|
1048
1051
|
margin-left: 0;
|
|
1049
1052
|
}
|
|
@@ -1137,11 +1140,11 @@
|
|
|
1137
1140
|
color: #605e5c;
|
|
1138
1141
|
}
|
|
1139
1142
|
|
|
1140
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1143
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1141
1144
|
background-color: #fff;
|
|
1142
1145
|
color: #323130;
|
|
1143
1146
|
min-width: 70%;
|
|
1144
1147
|
}
|
|
1145
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1148
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1146
1149
|
box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
|
1147
1150
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/fluent-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/fluent-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/fluent-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/fluent-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/fluent-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/fluent-definition.scss';
|
|
13
|
+
@import 'fluent-definition.scss';
|
|
14
|
+
@import 'icons/fluent.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
color: #000;
|
|
81
81
|
top: 12px;
|
|
82
82
|
}
|
|
83
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
84
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
85
|
+
}
|
|
83
86
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
84
87
|
color: #4f4f4f;
|
|
85
88
|
font-family: inherit;
|
|
@@ -172,8 +175,10 @@
|
|
|
172
175
|
width: 30px;
|
|
173
176
|
}
|
|
174
177
|
|
|
175
|
-
/*! component's default definitions and variables */
|
|
178
|
+
/* stylelint-disable-line no-empty-source */ /*! component's default definitions and variables */
|
|
176
179
|
/*! component's theme wise override material-definitions and variables */
|
|
180
|
+
/* stylelint-disable */
|
|
181
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
177
182
|
@keyframes material-spinner-rotate {
|
|
178
183
|
0% {
|
|
179
184
|
transform: rotate(0);
|
|
@@ -258,7 +263,7 @@
|
|
|
258
263
|
}
|
|
259
264
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
260
265
|
font-size: 14px;
|
|
261
|
-
font-weight:
|
|
266
|
+
font-weight: normal;
|
|
262
267
|
line-height: 20px;
|
|
263
268
|
padding: 2px;
|
|
264
269
|
}
|
|
@@ -448,7 +453,7 @@
|
|
|
448
453
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
449
454
|
display: inline-block;
|
|
450
455
|
font-size: 13px;
|
|
451
|
-
font-weight:
|
|
456
|
+
font-weight: normal;
|
|
452
457
|
opacity: 0.57;
|
|
453
458
|
}
|
|
454
459
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -685,7 +690,7 @@
|
|
|
685
690
|
}
|
|
686
691
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
687
692
|
font-size: 14px;
|
|
688
|
-
font-weight:
|
|
693
|
+
font-weight: normal;
|
|
689
694
|
line-height: 20px;
|
|
690
695
|
padding: 2px;
|
|
691
696
|
}
|
|
@@ -1031,15 +1036,15 @@
|
|
|
1031
1036
|
width: 100%;
|
|
1032
1037
|
}
|
|
1033
1038
|
|
|
1034
|
-
.e-kanban-dialog {
|
|
1039
|
+
.e-kanban-dialog.e-dialog {
|
|
1035
1040
|
min-width: 350px;
|
|
1036
1041
|
}
|
|
1037
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
1038
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
1042
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
1043
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
1039
1044
|
width: 100%;
|
|
1040
1045
|
}
|
|
1041
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
1042
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
1046
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
1047
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
1043
1048
|
color: inherit;
|
|
1044
1049
|
font-size: 14px;
|
|
1045
1050
|
font-weight: 400;
|
|
@@ -1049,17 +1054,17 @@
|
|
|
1049
1054
|
padding: 5px 0;
|
|
1050
1055
|
text-align: left;
|
|
1051
1056
|
}
|
|
1052
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1053
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1057
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1058
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1054
1059
|
padding-right: 10px;
|
|
1055
1060
|
vertical-align: top;
|
|
1056
1061
|
width: 70px;
|
|
1057
1062
|
}
|
|
1058
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1059
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1063
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1064
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1060
1065
|
width: 100%;
|
|
1061
1066
|
}
|
|
1062
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1067
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1063
1068
|
float: left;
|
|
1064
1069
|
margin-left: 0;
|
|
1065
1070
|
}
|
|
@@ -1150,12 +1155,12 @@
|
|
|
1150
1155
|
color: #000;
|
|
1151
1156
|
}
|
|
1152
1157
|
|
|
1153
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1158
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1154
1159
|
background-color: initial;
|
|
1155
1160
|
color: #000;
|
|
1156
1161
|
min-width: 70%;
|
|
1157
|
-
font-weight:
|
|
1162
|
+
font-weight: normal;
|
|
1158
1163
|
}
|
|
1159
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1164
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1160
1165
|
box-shadow: none;
|
|
1161
1166
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-light-definition.scss';
|
|
13
|
+
@import 'highcontrast-light-definition.scss';
|
|
14
|
+
@import 'icons/highcontrast-light.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -80,6 +80,9 @@
|
|
|
80
80
|
color: #fff;
|
|
81
81
|
top: 12px;
|
|
82
82
|
}
|
|
83
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
84
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
85
|
+
}
|
|
83
86
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
84
87
|
color: #969696;
|
|
85
88
|
font-family: inherit;
|
|
@@ -174,7 +177,9 @@
|
|
|
174
177
|
width: 30px;
|
|
175
178
|
}
|
|
176
179
|
|
|
177
|
-
/*! component's theme wise override material-definitions and variables */ /*! TreeView's high contrast theme wise override definitions and variables */
|
|
180
|
+
/* stylelint-disable-line no-empty-source */ /*! component's theme wise override material-definitions and variables */ /*! TreeView's high contrast theme wise override definitions and variables */
|
|
181
|
+
/* stylelint-disable */
|
|
182
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
178
183
|
@keyframes material-spinner-rotate {
|
|
179
184
|
0% {
|
|
180
185
|
transform: rotate(0);
|
|
@@ -259,7 +264,7 @@
|
|
|
259
264
|
}
|
|
260
265
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
261
266
|
font-size: 14px;
|
|
262
|
-
font-weight:
|
|
267
|
+
font-weight: normal;
|
|
263
268
|
line-height: 20px;
|
|
264
269
|
padding: 2px;
|
|
265
270
|
}
|
|
@@ -449,7 +454,7 @@
|
|
|
449
454
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
450
455
|
display: inline-block;
|
|
451
456
|
font-size: 13px;
|
|
452
|
-
font-weight:
|
|
457
|
+
font-weight: normal;
|
|
453
458
|
opacity: 0.57;
|
|
454
459
|
}
|
|
455
460
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -686,7 +691,7 @@
|
|
|
686
691
|
}
|
|
687
692
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
688
693
|
font-size: 14px;
|
|
689
|
-
font-weight:
|
|
694
|
+
font-weight: normal;
|
|
690
695
|
line-height: 20px;
|
|
691
696
|
padding: 2px;
|
|
692
697
|
}
|
|
@@ -1032,15 +1037,15 @@
|
|
|
1032
1037
|
width: 100%;
|
|
1033
1038
|
}
|
|
1034
1039
|
|
|
1035
|
-
.e-kanban-dialog {
|
|
1040
|
+
.e-kanban-dialog.e-dialog {
|
|
1036
1041
|
min-width: 350px;
|
|
1037
1042
|
}
|
|
1038
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
1039
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
1043
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
1044
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
1040
1045
|
width: 100%;
|
|
1041
1046
|
}
|
|
1042
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
1043
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
1047
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
1048
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
1044
1049
|
color: inherit;
|
|
1045
1050
|
font-size: 14px;
|
|
1046
1051
|
font-weight: 400;
|
|
@@ -1050,17 +1055,17 @@
|
|
|
1050
1055
|
padding: 5px 0;
|
|
1051
1056
|
text-align: left;
|
|
1052
1057
|
}
|
|
1053
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1054
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1058
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1059
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1055
1060
|
padding-right: 10px;
|
|
1056
1061
|
vertical-align: top;
|
|
1057
1062
|
width: 70px;
|
|
1058
1063
|
}
|
|
1059
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1060
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1064
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1065
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1061
1066
|
width: 100%;
|
|
1062
1067
|
}
|
|
1063
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1068
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1064
1069
|
float: left;
|
|
1065
1070
|
margin-left: 0;
|
|
1066
1071
|
}
|
|
@@ -1151,12 +1156,12 @@
|
|
|
1151
1156
|
color: #fff;
|
|
1152
1157
|
}
|
|
1153
1158
|
|
|
1154
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1159
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1155
1160
|
background-color: initial;
|
|
1156
1161
|
color: #fff;
|
|
1157
1162
|
min-width: 70%;
|
|
1158
|
-
font-weight:
|
|
1163
|
+
font-weight: normal;
|
|
1159
1164
|
}
|
|
1160
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1165
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1161
1166
|
box-shadow: none;
|
|
1162
1167
|
}
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-inputs/styles/textbox/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-layouts/styles/card/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-popups/styles/dialog/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-popups/styles/popup/highcontrast-definition.scss';
|
|
11
|
+
@import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
|
|
12
|
+
@import 'ej2-popups/styles/tooltip/highcontrast-definition.scss';
|
|
13
|
+
@import 'highcontrast-definition.scss';
|
|
14
|
+
@import 'icons/highcontrast.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@include export-module('kanban-bootstrap-dark-icons') {
|
|
2
|
+
.e-kanban {
|
|
3
|
+
.e-column-expand::before {
|
|
4
|
+
content: '\e654';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-column-collapse::before {
|
|
8
|
+
content: '\e653';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.e-swimlane-row-expand::before {
|
|
12
|
+
content: '\e652';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-swimlane-row-collapse::before {
|
|
16
|
+
content: '\e653';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-show-add-icon::before {
|
|
20
|
+
content: '\e823';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-swimlane-header-toolbar {
|
|
24
|
+
& .e-icon-menu::before {
|
|
25
|
+
content: '\e941';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.e-rtl {
|
|
30
|
+
.e-column-collapse::before {
|
|
31
|
+
content: '\e654';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-column-expand::before {
|
|
35
|
+
content: '\e653';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-swimlane-row-collapse::before {
|
|
39
|
+
content: '\e654';
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.e-mobile-popup-wrapper .e-close-icon::before {
|
|
45
|
+
content: '\e96c';
|
|
46
|
+
}
|
|
47
|
+
}
|