@syncfusion/ej2-filemanager 20.1.47 → 20.1.52-10459
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 +20 -3
- package/README.md +54 -43
- package/dist/ej2-filemanager.min.js +1 -0
- package/dist/ej2-filemanager.umd.min.js +1 -10
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +2353 -659
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +2422 -709
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +1 -10
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/helpers/e2e/filemanagerHelper.js +183 -166
- package/package.json +71 -71
- package/src/file-manager/actions/breadcrumb-bar.js +1 -5
- package/src/file-manager/actions/index.d.ts +1 -0
- package/src/file-manager/actions/index.js +1 -0
- package/src/file-manager/actions/toolbar.d.ts +1 -0
- package/src/file-manager/actions/toolbar.js +129 -17
- package/src/file-manager/actions/virtualization.d.ts +93 -0
- package/src/file-manager/actions/virtualization.js +279 -0
- package/src/file-manager/base/file-manager-model.d.ts +154 -28
- package/src/file-manager/base/file-manager.d.ts +176 -27
- package/src/file-manager/base/file-manager.js +244 -28
- package/src/file-manager/base/interface.d.ts +329 -3
- package/src/file-manager/base/interface.js +0 -1
- package/src/file-manager/common/operations.d.ts +7 -0
- package/src/file-manager/common/operations.js +830 -185
- package/src/file-manager/common/utility.d.ts +46 -3
- package/src/file-manager/common/utility.js +249 -73
- package/src/file-manager/index.d.ts +1 -0
- package/src/file-manager/index.js +1 -0
- package/src/file-manager/layout/details-view.d.ts +10 -0
- package/src/file-manager/layout/details-view.js +203 -94
- package/src/file-manager/layout/large-icons-view.d.ts +4 -2
- package/src/file-manager/layout/large-icons-view.js +122 -73
- package/src/file-manager/layout/navigation-pane.d.ts +2 -0
- package/src/file-manager/layout/navigation-pane.js +97 -73
- package/src/file-manager/models/column-model.d.ts +23 -5
- package/src/file-manager/models/column.d.ts +21 -2
- package/src/file-manager/models/column.js +6 -0
- package/src/file-manager/models/default-locale.js +0 -1
- package/src/file-manager/models/details-view-settings-model.d.ts +1 -1
- package/src/file-manager/models/details-view-settings.js +8 -3
- package/src/file-manager/models/search-settings.d.ts +5 -0
- package/src/file-manager/models/toolbar-settings-model.d.ts +177 -2
- package/src/file-manager/models/toolbar-settings.d.ts +157 -2
- package/src/file-manager/models/toolbar-settings.js +64 -2
- package/src/file-manager/models/upload-settings-model.d.ts +13 -0
- package/src/file-manager/models/upload-settings.d.ts +12 -0
- package/src/file-manager/models/upload-settings.js +3 -0
- package/src/file-manager/pop-up/context-menu.d.ts +2 -1
- package/src/file-manager/pop-up/context-menu.js +111 -36
- package/src/file-manager/pop-up/dialog.d.ts +1 -2
- package/src/file-manager/pop-up/dialog.js +19 -40
- package/src/global.js +1 -1
- package/styles/bootstrap-dark-lite.css +1058 -0
- package/styles/bootstrap-dark-lite.scss +16 -0
- package/styles/bootstrap-dark.css +371 -665
- package/styles/bootstrap-dark.scss +17 -1
- package/styles/bootstrap-lite.css +1040 -0
- package/styles/bootstrap-lite.scss +16 -0
- package/styles/bootstrap.css +353 -644
- package/styles/bootstrap.scss +17 -1
- package/styles/bootstrap4-lite.css +1068 -0
- package/styles/bootstrap4-lite.scss +16 -0
- package/styles/bootstrap4.css +381 -680
- package/styles/bootstrap4.scss +17 -1
- package/styles/bootstrap5-dark-lite.css +1078 -0
- package/styles/bootstrap5-dark-lite.scss +16 -0
- package/styles/bootstrap5-dark.css +376 -694
- package/styles/bootstrap5-dark.scss +17 -1
- package/styles/bootstrap5-lite.css +1078 -0
- package/styles/bootstrap5-lite.scss +16 -0
- package/styles/bootstrap5.3-lite.css +1035 -0
- package/styles/bootstrap5.3-lite.scss +16 -0
- package/styles/bootstrap5.3.css +1603 -0
- package/styles/bootstrap5.3.scss +17 -0
- package/styles/bootstrap5.css +376 -694
- package/styles/bootstrap5.scss +17 -1
- package/styles/fabric-dark-lite.css +1039 -0
- package/styles/fabric-dark-lite.scss +16 -0
- package/styles/fabric-dark.css +358 -642
- package/styles/fabric-dark.scss +17 -1
- package/styles/fabric-lite.css +1039 -0
- package/styles/fabric-lite.scss +16 -0
- package/styles/fabric.css +357 -641
- package/styles/fabric.scss +17 -1
- package/styles/file-manager/_all.scss +1 -1
- package/styles/file-manager/_bds-definition.scss +236 -0
- package/styles/file-manager/_bigger.scss +758 -0
- package/styles/file-manager/_bootstrap-dark-definition.scss +6 -2
- package/styles/file-manager/_bootstrap-definition.scss +6 -2
- package/styles/file-manager/_bootstrap4-definition.scss +6 -2
- package/styles/file-manager/_bootstrap5-definition.scss +20 -15
- package/styles/file-manager/_bootstrap5.3-definition.scss +242 -0
- package/styles/file-manager/_fabric-dark-definition.scss +6 -2
- package/styles/file-manager/_fabric-definition.scss +6 -2
- package/styles/file-manager/_fluent-definition.scss +20 -16
- package/styles/file-manager/_fluent2-definition.scss +255 -0
- package/styles/file-manager/_fusionnew-definition.scss +241 -0
- package/styles/file-manager/_highcontrast-definition.scss +6 -2
- package/styles/file-manager/_highcontrast-light-definition.scss +6 -2
- package/styles/file-manager/_layout.scss +367 -921
- package/styles/file-manager/_material-dark-definition.scss +7 -2
- package/styles/file-manager/_material-definition.scss +7 -2
- package/styles/file-manager/_material3-dark-definition.scss +1 -0
- package/styles/file-manager/_material3-definition.scss +235 -0
- package/styles/file-manager/_tailwind-definition.scss +20 -16
- package/styles/file-manager/_theme.scss +126 -102
- package/styles/file-manager/bootstrap-dark.css +371 -665
- package/styles/file-manager/bootstrap-dark.scss +2 -1
- package/styles/file-manager/bootstrap.css +353 -644
- package/styles/file-manager/bootstrap.scss +2 -1
- package/styles/file-manager/bootstrap4.css +381 -680
- package/styles/file-manager/bootstrap4.scss +2 -1
- package/styles/file-manager/bootstrap5-dark.css +376 -694
- package/styles/file-manager/bootstrap5-dark.scss +2 -1
- package/styles/file-manager/bootstrap5.3.css +1603 -0
- package/styles/file-manager/bootstrap5.3.scss +17 -0
- package/styles/file-manager/bootstrap5.css +376 -694
- package/styles/file-manager/bootstrap5.scss +2 -1
- package/styles/file-manager/fabric-dark.css +358 -642
- package/styles/file-manager/fabric-dark.scss +2 -1
- package/styles/file-manager/fabric.css +357 -641
- package/styles/file-manager/fabric.scss +2 -1
- package/styles/file-manager/fluent-dark.css +359 -641
- package/styles/file-manager/fluent-dark.scss +2 -1
- package/styles/file-manager/fluent.css +358 -641
- package/styles/file-manager/fluent.scss +2 -1
- package/styles/file-manager/fluent2.css +1886 -0
- package/styles/file-manager/fluent2.scss +17 -0
- package/styles/file-manager/highcontrast-light.css +354 -644
- package/styles/file-manager/highcontrast-light.scss +2 -1
- package/styles/file-manager/highcontrast.css +377 -647
- package/styles/file-manager/highcontrast.scss +2 -1
- package/styles/file-manager/icons/_bds.scss +235 -0
- package/styles/file-manager/icons/_bootstrap.scss +0 -1
- package/styles/file-manager/icons/_bootstrap4.scss +0 -1
- package/styles/file-manager/icons/_bootstrap5.3.scss +235 -0
- package/styles/file-manager/icons/_fabric-dark.scss +0 -1
- package/styles/file-manager/icons/_fabric.scss +0 -1
- package/styles/file-manager/icons/_fluent2.scss +235 -0
- package/styles/file-manager/icons/_fusionnew.scss +235 -0
- package/styles/file-manager/icons/_material3-dark.scss +1 -0
- package/styles/file-manager/icons/_material3.scss +235 -0
- package/styles/file-manager/material-dark.css +392 -671
- package/styles/file-manager/material-dark.scss +2 -1
- package/styles/file-manager/material.css +391 -654
- package/styles/file-manager/material.scss +2 -1
- package/styles/file-manager/material3-dark.css +1633 -0
- package/styles/file-manager/material3-dark.scss +18 -0
- package/styles/file-manager/material3.css +1635 -0
- package/styles/file-manager/material3.scss +18 -0
- package/styles/file-manager/tailwind-dark.css +347 -664
- package/styles/file-manager/tailwind-dark.scss +2 -1
- package/styles/file-manager/tailwind.css +347 -664
- package/styles/file-manager/tailwind.scss +2 -1
- package/styles/fluent-dark-lite.css +1037 -0
- package/styles/fluent-dark-lite.scss +16 -0
- package/styles/fluent-dark.css +359 -641
- package/styles/fluent-dark.scss +17 -1
- package/styles/fluent-lite.css +1036 -0
- package/styles/fluent-lite.scss +16 -0
- package/styles/fluent.css +358 -641
- package/styles/fluent.scss +17 -1
- package/styles/fluent2-lite.css +1272 -0
- package/styles/fluent2-lite.scss +16 -0
- package/styles/fluent2.css +1886 -0
- package/styles/fluent2.scss +17 -0
- package/styles/highcontrast-light-lite.css +1039 -0
- package/styles/highcontrast-light-lite.scss +16 -0
- package/styles/highcontrast-light.css +354 -644
- package/styles/highcontrast-light.scss +17 -1
- package/styles/highcontrast-lite.css +1059 -0
- package/styles/highcontrast-lite.scss +16 -0
- package/styles/highcontrast.css +377 -647
- package/styles/highcontrast.scss +17 -1
- package/styles/material-dark-lite.css +1092 -0
- package/styles/material-dark-lite.scss +16 -0
- package/styles/material-dark.css +392 -671
- package/styles/material-dark.scss +17 -1
- package/styles/material-lite.css +1097 -0
- package/styles/material-lite.scss +16 -0
- package/styles/material.css +391 -654
- package/styles/material.scss +17 -1
- package/styles/material3-dark-lite.css +1090 -0
- package/styles/material3-dark-lite.scss +16 -0
- package/styles/material3-dark.css +1633 -0
- package/styles/material3-dark.scss +19 -0
- package/styles/material3-lite.css +1092 -0
- package/styles/material3-lite.scss +16 -0
- package/styles/material3.css +1635 -0
- package/styles/material3.scss +19 -0
- package/styles/tailwind-dark-lite.css +1060 -0
- package/styles/tailwind-dark-lite.scss +16 -0
- package/styles/tailwind-dark.css +347 -664
- package/styles/tailwind-dark.scss +17 -1
- package/styles/tailwind-lite.css +1060 -0
- package/styles/tailwind-lite.scss +16 -0
- package/styles/tailwind.css +347 -664
- package/styles/tailwind.scss +17 -1
- package/CHANGELOG.md +0 -404
@@ -1,68 +1,77 @@
|
|
1
|
-
|
1
|
+
@mixin active-icon {
|
2
2
|
.e-fe-dot,
|
3
3
|
.e-fe-tick {
|
4
4
|
color: $fe-ddl-icon-color;
|
5
5
|
}
|
6
6
|
}
|
7
|
+
|
7
8
|
@mixin active-icon-color {
|
8
9
|
.e-btn-icon,
|
9
10
|
.e-tbar-btn-text {
|
10
11
|
@if $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'bootstrap5' {
|
11
12
|
color: $fe-tb-active-color;
|
12
13
|
}
|
14
|
+
|
15
|
+
@if $fm-skin-name == 'highcontrast' {
|
16
|
+
color: $fe-active-font-color;
|
17
|
+
}
|
13
18
|
}
|
14
19
|
}
|
20
|
+
|
15
21
|
@mixin hover-icon-border-color {
|
16
22
|
@if $fm-skin-name == 'bootstrap-dark' {
|
17
23
|
border: 1px solid $fe-tb-hover-border-color;
|
18
24
|
}
|
19
25
|
}
|
20
|
-
|
21
|
-
|
22
|
-
border-color: $fe-active-border-color;
|
23
|
-
}
|
24
|
-
@mixin hover-item($bg-color, $border-color) {
|
26
|
+
|
27
|
+
@mixin bg-border($bg-color, $border-color) {
|
25
28
|
background: $bg-color;
|
26
29
|
border-color: $border-color;
|
27
30
|
}
|
28
31
|
|
29
32
|
@include export-module('FileManager-theme') {
|
30
33
|
.e-filemanager {
|
31
|
-
background
|
32
|
-
border-color: $fe-border-color;
|
34
|
+
@include bg-border($fe-background, $fe-border-color);
|
33
35
|
|
34
36
|
.e-toolbar {
|
35
37
|
border-bottom-color: $fe-border-color;
|
38
|
+
@if $fm-skin-name != 'Material3' {
|
39
|
+
.e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
|
40
|
+
&.e-active {
|
41
|
+
@include hover-icon-border-color;
|
42
|
+
@include active-icon-color;
|
43
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-focus-border-color);
|
44
|
+
@if $fm-skin-name == 'highcontrast' {
|
45
|
+
background: $fe-active-bg-color;
|
46
|
+
}
|
36
47
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
border-color: $fe-tb-focus-border-color;
|
44
|
-
}
|
48
|
+
&:hover {
|
49
|
+
@if $fm-skin-name == 'highcontrast' {
|
50
|
+
background: $fe-active-bg-color;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
45
54
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
}
|
55
|
+
&:hover {
|
56
|
+
@include hover-icon-border-color;
|
57
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-hover-border-color);
|
58
|
+
}
|
51
59
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
60
|
+
&:focus {
|
61
|
+
@include hover-icon-border-color;
|
62
|
+
@include active-icon-color;
|
63
|
+
@include bg-border($fe-tb-focus-bg, $fe-tb-hover-border-color);
|
64
|
+
@if $fm-skin-name == 'highcontrast' {
|
65
|
+
background: $fe-active-bg-color;
|
66
|
+
}
|
67
|
+
}
|
57
68
|
}
|
58
69
|
}
|
59
70
|
}
|
60
71
|
|
61
72
|
@if $fm-skin-name == 'tailwind' {
|
62
|
-
.e-navigation {
|
63
|
-
|
64
|
-
background-color: $content-bg-color-alt1;
|
65
|
-
}
|
73
|
+
.e-navigation.e-pane {
|
74
|
+
background-color: $content-bg-color-alt1;
|
66
75
|
}
|
67
76
|
}
|
68
77
|
|
@@ -89,7 +98,7 @@
|
|
89
98
|
color: $fe-bc-link-color;
|
90
99
|
|
91
100
|
&:focus .e-list-text {
|
92
|
-
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
101
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' {
|
93
102
|
background: $fe-bc-hover-bg-color;
|
94
103
|
}
|
95
104
|
color: $fe-bc-hover-font-color;
|
@@ -102,37 +111,63 @@
|
|
102
111
|
}
|
103
112
|
|
104
113
|
&:not(:last-child) {
|
105
|
-
|
106
114
|
.e-list-text {
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
115
|
+
@if ($fm-skin-name == 'bootstrap5.3') {
|
116
|
+
&:hover {
|
117
|
+
background-color: $content-bg-color-hover;
|
118
|
+
color: $primary-bg-color-hover;
|
119
|
+
text-decoration: underline $primary-bg-color-hover;
|
120
|
+
}
|
121
|
+
&:active {
|
122
|
+
color: $primary-bg-color-hover;
|
123
|
+
border: 1px solid $primary-bg-color-hover;
|
124
|
+
text-decoration: underline $primary-bg-color-hover;
|
111
125
|
}
|
112
|
-
color: $fe-bc-hover-font-color;
|
113
126
|
}
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
127
|
+
@else {
|
128
|
+
&:hover,
|
129
|
+
&:active,
|
130
|
+
&:focus {
|
131
|
+
@if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
|
132
|
+
background: $fe-bc-hover-bg-color;
|
133
|
+
}
|
134
|
+
color: $fe-bc-hover-font-color;
|
118
135
|
}
|
119
|
-
color: $fe-bc-hover-font-color;
|
120
136
|
}
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
background: $fe-bc-hover-bg-color;
|
137
|
+
@if $fm-skin-name == 'fluent2' {
|
138
|
+
&:active {
|
139
|
+
background: $fe-bc-active-bg-color;
|
125
140
|
}
|
126
|
-
color: $fe-bc-hover-font-color;
|
127
141
|
}
|
128
142
|
}
|
129
143
|
}
|
130
144
|
}
|
131
145
|
|
146
|
+
.e-address-list-item:focus .e-list-text {
|
147
|
+
@if ($fm-skin-name == 'bootstrap5.3') {
|
148
|
+
color: $primary-bg-color-hover;
|
149
|
+
border: 1px solid $primary-bg-color-hover;
|
150
|
+
text-decoration: underline $primary-bg-color-hover;
|
151
|
+
}
|
152
|
+
@else {
|
153
|
+
color: $fe-bc-hover-font-color;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
132
157
|
.e-search-wrap {
|
133
158
|
.e-input-group.e-control-wrapper:not(.e-success) {
|
134
|
-
|
135
|
-
|
159
|
+
@if $fm-skin-name != 'fluent2' {
|
160
|
+
@include bg-border($fe-search-bg-color, $fe-border-color);
|
161
|
+
}
|
162
|
+
|
163
|
+
@if $theme-name == 'fluentui-dark' {
|
164
|
+
border-color: $fe-search-border-color;
|
165
|
+
}
|
166
|
+
@if ($fm-skin-name == 'Material3') {
|
167
|
+
border: none;
|
168
|
+
border-bottom: 1px solid $outline;
|
169
|
+
border-radius: 0;
|
170
|
+
}
|
136
171
|
}
|
137
172
|
}
|
138
173
|
}
|
@@ -162,33 +197,28 @@
|
|
162
197
|
tr:first-child th {
|
163
198
|
background: $fe-grid-header-bg-color;
|
164
199
|
}
|
165
|
-
|
200
|
+
}
|
166
201
|
|
167
202
|
.e-headercell {
|
168
203
|
|
169
|
-
&:not(.e-fe-grid-icon):hover
|
204
|
+
&:not(.e-fe-grid-icon):hover,
|
205
|
+
&.e-fe-grid-icon .e-headercelldiv:hover {
|
170
206
|
background: $fe-hover-bg-color;
|
171
207
|
}
|
172
|
-
|
173
|
-
|
208
|
+
&.e-fe-checkbox:hover {
|
209
|
+
@if $fm-skin-name == 'FluentUI' {
|
174
210
|
background: $content-bg-color;
|
175
|
-
|
176
|
-
|
177
|
-
@else {
|
178
|
-
&.e-fe-checkbox:hover {
|
211
|
+
}
|
212
|
+
@else {
|
179
213
|
background: $fe-grid-header-bg-color;
|
180
|
-
|
181
|
-
}
|
182
|
-
|
183
|
-
&.e-fe-grid-icon .e-headercelldiv:hover {
|
184
|
-
background: $fe-hover-bg-color;
|
214
|
+
}
|
185
215
|
}
|
186
216
|
}
|
187
217
|
}
|
188
218
|
|
189
219
|
.e-empty-inner-content {
|
190
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
191
|
-
color: $content-
|
220
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name =='Material3' {
|
221
|
+
color: $fe-grid-empty-inner-content-color;
|
192
222
|
}
|
193
223
|
}
|
194
224
|
|
@@ -215,12 +245,9 @@
|
|
215
245
|
}
|
216
246
|
}
|
217
247
|
|
218
|
-
tr:hover {
|
219
|
-
|
220
|
-
|
221
|
-
@if $fm-skin-name == 'material-dark' {
|
222
|
-
background-color: $fe-ah-bg-color;
|
223
|
-
}
|
248
|
+
tr:hover td.e-active {
|
249
|
+
@if $fm-skin-name == 'material-dark' {
|
250
|
+
background-color: $fe-ah-bg-color;
|
224
251
|
}
|
225
252
|
}
|
226
253
|
|
@@ -240,14 +267,14 @@
|
|
240
267
|
}
|
241
268
|
}
|
242
269
|
|
243
|
-
&.e-gridhover
|
270
|
+
&.e-gridhover .e-row:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
244
271
|
@if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
|
245
272
|
background-color: $fe-hover-bg-color;
|
246
273
|
color: $fe-grid-type-color;
|
247
274
|
}
|
248
275
|
}
|
249
276
|
|
250
|
-
&.e-gridhover
|
277
|
+
&.e-gridhover .e-row.e-fe-drop-file:not(.e-editedrow):hover .e-rowcell:not(.e-cellselectionbackground):not(.e-active):not(.e-updatedtd):not(.e-indentcell) {
|
251
278
|
background-color: transparent;
|
252
279
|
}
|
253
280
|
}
|
@@ -263,8 +290,8 @@
|
|
263
290
|
}
|
264
291
|
|
265
292
|
.e-empty-inner-content {
|
266
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
267
|
-
color: $content-
|
293
|
+
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3' {
|
294
|
+
color: $fe-grid-empty-inner-content-color;
|
268
295
|
}
|
269
296
|
}
|
270
297
|
|
@@ -272,22 +299,31 @@
|
|
272
299
|
border-color: transparent;
|
273
300
|
|
274
301
|
&.e-active {
|
275
|
-
@include active-
|
302
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
276
303
|
}
|
277
304
|
|
278
|
-
&.e-hover
|
279
|
-
|
305
|
+
&.e-hover,
|
306
|
+
&:hover {
|
307
|
+
@include bg-border($fe-hover-bg-color, $fe-hover-border-color);
|
308
|
+
@if ($fm-skin-name == 'fluent2') {
|
309
|
+
color: $fe-lg-hover-font-color;
|
310
|
+
}
|
280
311
|
}
|
281
312
|
|
282
|
-
&.e-active.e-hover
|
283
|
-
|
313
|
+
&.e-active.e-hover,
|
314
|
+
&.e-active:hover {
|
315
|
+
@include bg-border($fe-ah-bg-color, $fe-ah-border-color);
|
316
|
+
@if ($fm-skin-name == 'fluent2') {
|
317
|
+
color: $fe-lg-active-font-color;
|
318
|
+
}
|
284
319
|
}
|
285
320
|
|
286
321
|
&.e-focus {
|
287
322
|
border-color: $fe-focus-border-color;
|
288
323
|
}
|
289
324
|
|
290
|
-
&.e-hover.e-fe-drop-folder
|
325
|
+
&.e-hover.e-fe-drop-folder,
|
326
|
+
&:hover.e-fe-drop-folder {
|
291
327
|
border-color: $fe-drop-folder-bg-color;
|
292
328
|
}
|
293
329
|
}
|
@@ -298,7 +334,6 @@
|
|
298
334
|
color: $fe-checkbox-color;
|
299
335
|
}
|
300
336
|
}
|
301
|
-
|
302
337
|
}
|
303
338
|
|
304
339
|
.e-fe-clone {
|
@@ -323,32 +358,26 @@
|
|
323
358
|
}
|
324
359
|
|
325
360
|
&.e-fe-mobile {
|
326
|
-
|
327
361
|
.e-large-icons {
|
328
|
-
|
329
362
|
.e-large-icon {
|
330
363
|
|
331
|
-
&.e-hover
|
332
|
-
|
364
|
+
&.e-hover,
|
365
|
+
&:hover {
|
366
|
+
@include bg-border(transparent, transparent);
|
333
367
|
}
|
334
|
-
|
335
368
|
&.e-focus {
|
336
369
|
border-color: transparent;
|
337
370
|
}
|
338
|
-
|
339
371
|
&.e-active {
|
340
|
-
@include active-
|
372
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
341
373
|
}
|
342
374
|
}
|
343
375
|
}
|
344
376
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
345
|
-
.e-address {
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
&:hover {
|
350
|
-
color: $icon-color-hover;
|
351
|
-
}
|
377
|
+
.e-address .e-icons {
|
378
|
+
color: $icon-color;
|
379
|
+
&:hover {
|
380
|
+
color: $icon-color-hover;
|
352
381
|
}
|
353
382
|
}
|
354
383
|
}
|
@@ -370,10 +399,8 @@
|
|
370
399
|
}
|
371
400
|
|
372
401
|
&.e-dialog {
|
373
|
-
|
374
402
|
td {
|
375
403
|
color: $fe-text-color;
|
376
|
-
|
377
404
|
&:first-child {
|
378
405
|
color: $fe-label-color;
|
379
406
|
}
|
@@ -384,11 +411,8 @@
|
|
384
411
|
color: $fe-error-color;
|
385
412
|
}
|
386
413
|
|
387
|
-
.e-upload {
|
388
|
-
|
389
|
-
.e-upload-actions {
|
390
|
-
border-bottom-color: $fe-up-list-border-color;
|
391
|
-
}
|
414
|
+
.e-upload .e-upload-actions {
|
415
|
+
border-bottom-color: $fe-up-list-border-color;
|
392
416
|
}
|
393
417
|
}
|
394
418
|
}
|