@syncfusion/ej2-filemanager 19.4.56 → 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 +2371 -664
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +2440 -714
- 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 +135 -20
- 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 +161 -28
- package/src/file-manager/base/file-manager.d.ts +182 -28
- package/src/file-manager/base/file-manager.js +254 -29
- 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 +204 -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/navigation-pane-settings.d.ts +8 -8
- 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 +377 -695
- 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 +377 -695
- 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 +21 -16
- 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-dark-definition.scss +1 -0
- package/styles/file-manager/_fluent-definition.scss +26 -22
- 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 +373 -912
- 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 +130 -99
- 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 +377 -695
- 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 +377 -695
- 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 +1616 -0
- package/styles/file-manager/fluent-dark.scss +17 -0
- package/styles/file-manager/fluent.css +1615 -0
- package/styles/file-manager/fluent.scss +17 -0
- 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/_fluent-dark.scss +1 -0
- package/styles/file-manager/icons/_fluent.scss +19 -19
- 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/icons/_tailwind.scss +49 -49
- 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 +369 -686
- package/styles/file-manager/tailwind-dark.scss +2 -1
- package/styles/file-manager/tailwind.css +369 -686
- 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 +1616 -0
- package/styles/fluent-dark.scss +17 -0
- package/styles/fluent-lite.css +1036 -0
- package/styles/fluent-lite.scss +16 -0
- package/styles/fluent.css +1615 -0
- package/styles/fluent.scss +17 -0
- 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 +369 -686
- 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 +369 -686
- package/styles/tailwind.scss +17 -1
- package/CHANGELOG.md +0 -466
@@ -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
|
}
|
@@ -158,30 +193,32 @@
|
|
158
193
|
.e-grid {
|
159
194
|
|
160
195
|
.e-gridheader {
|
161
|
-
|
162
|
-
|
163
|
-
|
196
|
+
@if $fm-skin-name != 'FluentUI' {
|
197
|
+
tr:first-child th {
|
198
|
+
background: $fe-grid-header-bg-color;
|
199
|
+
}
|
164
200
|
}
|
165
201
|
|
166
202
|
.e-headercell {
|
167
203
|
|
168
|
-
&:not(.e-fe-grid-icon):hover
|
204
|
+
&:not(.e-fe-grid-icon):hover,
|
205
|
+
&.e-fe-grid-icon .e-headercelldiv:hover {
|
169
206
|
background: $fe-hover-bg-color;
|
170
207
|
}
|
171
|
-
|
172
208
|
&.e-fe-checkbox:hover {
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
209
|
+
@if $fm-skin-name == 'FluentUI' {
|
210
|
+
background: $content-bg-color;
|
211
|
+
}
|
212
|
+
@else {
|
213
|
+
background: $fe-grid-header-bg-color;
|
214
|
+
}
|
178
215
|
}
|
179
216
|
}
|
180
217
|
}
|
181
218
|
|
182
219
|
.e-empty-inner-content {
|
183
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
184
|
-
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;
|
185
222
|
}
|
186
223
|
}
|
187
224
|
|
@@ -208,12 +245,9 @@
|
|
208
245
|
}
|
209
246
|
}
|
210
247
|
|
211
|
-
tr:hover {
|
212
|
-
|
213
|
-
|
214
|
-
@if $fm-skin-name == 'material-dark' {
|
215
|
-
background-color: $fe-ah-bg-color;
|
216
|
-
}
|
248
|
+
tr:hover td.e-active {
|
249
|
+
@if $fm-skin-name == 'material-dark' {
|
250
|
+
background-color: $fe-ah-bg-color;
|
217
251
|
}
|
218
252
|
}
|
219
253
|
|
@@ -233,14 +267,14 @@
|
|
233
267
|
}
|
234
268
|
}
|
235
269
|
|
236
|
-
&.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) {
|
237
271
|
@if $fm-skin-name == 'material-dark' or $fm-skin-name == 'bootstrap-dark' {
|
238
272
|
background-color: $fe-hover-bg-color;
|
239
273
|
color: $fe-grid-type-color;
|
240
274
|
}
|
241
275
|
}
|
242
276
|
|
243
|
-
&.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) {
|
244
278
|
background-color: transparent;
|
245
279
|
}
|
246
280
|
}
|
@@ -256,8 +290,8 @@
|
|
256
290
|
}
|
257
291
|
|
258
292
|
.e-empty-inner-content {
|
259
|
-
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
260
|
-
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;
|
261
295
|
}
|
262
296
|
}
|
263
297
|
|
@@ -265,22 +299,31 @@
|
|
265
299
|
border-color: transparent;
|
266
300
|
|
267
301
|
&.e-active {
|
268
|
-
@include active-
|
302
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
269
303
|
}
|
270
304
|
|
271
|
-
&.e-hover
|
272
|
-
|
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
|
+
}
|
273
311
|
}
|
274
312
|
|
275
|
-
&.e-active.e-hover
|
276
|
-
|
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
|
+
}
|
277
319
|
}
|
278
320
|
|
279
321
|
&.e-focus {
|
280
322
|
border-color: $fe-focus-border-color;
|
281
323
|
}
|
282
324
|
|
283
|
-
&.e-hover.e-fe-drop-folder
|
325
|
+
&.e-hover.e-fe-drop-folder,
|
326
|
+
&:hover.e-fe-drop-folder {
|
284
327
|
border-color: $fe-drop-folder-bg-color;
|
285
328
|
}
|
286
329
|
}
|
@@ -291,7 +334,6 @@
|
|
291
334
|
color: $fe-checkbox-color;
|
292
335
|
}
|
293
336
|
}
|
294
|
-
|
295
337
|
}
|
296
338
|
|
297
339
|
.e-fe-clone {
|
@@ -316,32 +358,26 @@
|
|
316
358
|
}
|
317
359
|
|
318
360
|
&.e-fe-mobile {
|
319
|
-
|
320
361
|
.e-large-icons {
|
321
|
-
|
322
362
|
.e-large-icon {
|
323
363
|
|
324
|
-
&.e-hover
|
325
|
-
|
364
|
+
&.e-hover,
|
365
|
+
&:hover {
|
366
|
+
@include bg-border(transparent, transparent);
|
326
367
|
}
|
327
|
-
|
328
368
|
&.e-focus {
|
329
369
|
border-color: transparent;
|
330
370
|
}
|
331
|
-
|
332
371
|
&.e-active {
|
333
|
-
@include active-
|
372
|
+
@include bg-border($fe-active-bg-color, $fe-active-border-color);
|
334
373
|
}
|
335
374
|
}
|
336
375
|
}
|
337
376
|
@if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
|
338
|
-
.e-address {
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
&:hover {
|
343
|
-
color: $icon-color-hover;
|
344
|
-
}
|
377
|
+
.e-address .e-icons {
|
378
|
+
color: $icon-color;
|
379
|
+
&:hover {
|
380
|
+
color: $icon-color-hover;
|
345
381
|
}
|
346
382
|
}
|
347
383
|
}
|
@@ -363,10 +399,8 @@
|
|
363
399
|
}
|
364
400
|
|
365
401
|
&.e-dialog {
|
366
|
-
|
367
402
|
td {
|
368
403
|
color: $fe-text-color;
|
369
|
-
|
370
404
|
&:first-child {
|
371
405
|
color: $fe-label-color;
|
372
406
|
}
|
@@ -377,11 +411,8 @@
|
|
377
411
|
color: $fe-error-color;
|
378
412
|
}
|
379
413
|
|
380
|
-
.e-upload {
|
381
|
-
|
382
|
-
.e-upload-actions {
|
383
|
-
border-bottom-color: $fe-up-list-border-color;
|
384
|
-
}
|
414
|
+
.e-upload .e-upload-actions {
|
415
|
+
border-bottom-color: $fe-up-list-border-color;
|
385
416
|
}
|
386
417
|
}
|
387
418
|
}
|