@syncfusion/ej2-filemanager 32.2.7 → 33.1.44
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/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +10 -4
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +12 -4
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/file-manager/actions/toolbar.js +8 -0
- package/src/file-manager/models/default-locale.js +2 -2
- package/src/file-manager/pop-up/context-menu.js +2 -2
- package/styles/bootstrap4-lite.css +5 -1
- package/styles/bootstrap4.css +5 -1
- package/styles/bootstrap5-dark-lite.css +4 -0
- package/styles/bootstrap5-dark.css +4 -0
- package/styles/bootstrap5-lite.css +5 -1
- package/styles/bootstrap5.css +5 -1
- package/styles/file-manager/_bootstrap4-definition.scss +3 -0
- package/styles/file-manager/_bootstrap5-dark-definition.scss +3 -0
- package/styles/file-manager/_bootstrap5-definition.scss +3 -0
- package/styles/file-manager/_fluent2-definition.scss +1 -0
- package/styles/file-manager/_theme.scss +10 -1
- package/styles/file-manager/bootstrap4.css +5 -1
- package/styles/file-manager/bootstrap5-dark.css +4 -0
- package/styles/file-manager/bootstrap5.css +5 -1
- package/styles/file-manager/fluent2.css +1 -0
- package/styles/file-manager/material3-dark.css +0 -5
- package/styles/file-manager/material3.css +0 -5
- package/styles/fluent2-lite.css +1 -0
- package/styles/fluent2.css +1 -0
- package/styles/material3-dark-lite.css +0 -5
- package/styles/material3-dark.css +0 -5
- package/styles/material3-lite.css +0 -5
- package/styles/material3.css +0 -5
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version :
|
|
3
|
+
* version : 33.1.44
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-filemanager",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "33.1.44",
|
|
4
4
|
"description": "Essential JS 2 FileManager Component",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"module": "./index.js",
|
|
9
9
|
"es2015": "./dist/es6/ej2-filemanager.es5.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@syncfusion/ej2-base": "~
|
|
12
|
-
"@syncfusion/ej2-buttons": "~
|
|
13
|
-
"@syncfusion/ej2-data": "~
|
|
14
|
-
"@syncfusion/ej2-grids": "~
|
|
15
|
-
"@syncfusion/ej2-inputs": "~
|
|
16
|
-
"@syncfusion/ej2-layouts": "~
|
|
17
|
-
"@syncfusion/ej2-lists": "~
|
|
18
|
-
"@syncfusion/ej2-navigations": "~
|
|
19
|
-
"@syncfusion/ej2-popups": "~
|
|
20
|
-
"@syncfusion/ej2-splitbuttons": "~
|
|
11
|
+
"@syncfusion/ej2-base": "~33.1.44",
|
|
12
|
+
"@syncfusion/ej2-buttons": "~33.1.44",
|
|
13
|
+
"@syncfusion/ej2-data": "~33.1.44",
|
|
14
|
+
"@syncfusion/ej2-grids": "~33.1.44",
|
|
15
|
+
"@syncfusion/ej2-inputs": "~33.1.44",
|
|
16
|
+
"@syncfusion/ej2-layouts": "~33.1.44",
|
|
17
|
+
"@syncfusion/ej2-lists": "~33.1.44",
|
|
18
|
+
"@syncfusion/ej2-navigations": "~33.1.44",
|
|
19
|
+
"@syncfusion/ej2-popups": "~33.1.44",
|
|
20
|
+
"@syncfusion/ej2-splitbuttons": "~33.1.44"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {},
|
|
23
23
|
"keywords": [
|
|
@@ -285,6 +285,7 @@ var Toolbar = /** @class */ (function () {
|
|
|
285
285
|
}
|
|
286
286
|
};
|
|
287
287
|
Toolbar.prototype.toolbarItemData = function (data) {
|
|
288
|
+
var _this = this;
|
|
288
289
|
var items = [];
|
|
289
290
|
var mode = 'Both';
|
|
290
291
|
if (this.parent.isMobile) {
|
|
@@ -384,6 +385,13 @@ var Toolbar = /** @class */ (function () {
|
|
|
384
385
|
items.push(item);
|
|
385
386
|
}
|
|
386
387
|
}
|
|
388
|
+
for (var _i = 0, _a = items; _i < _a.length; _i++) {
|
|
389
|
+
var item = _a[_i];
|
|
390
|
+
if (typeof item === 'object' && item !== null && typeof item.template === 'string') {
|
|
391
|
+
var template = item.template;
|
|
392
|
+
item.template = template.replace(/>((?:Upload|SortBy|View|Refresh|NewFolder|Cut|Copy|Paste|Delete|Rename|Download|SelectAll|Details))</g, function (_match, key) { return '>' + getLocaleText(_this.parent, key) + '<'; });
|
|
393
|
+
}
|
|
394
|
+
}
|
|
387
395
|
return items;
|
|
388
396
|
};
|
|
389
397
|
Toolbar.prototype.getItemModel = function (propItem) {
|
|
@@ -47,8 +47,8 @@ export var defaultLocale = {
|
|
|
47
47
|
'None': 'None',
|
|
48
48
|
'View-LargeIcons': 'Large icons',
|
|
49
49
|
'View-Details': 'Details',
|
|
50
|
-
'
|
|
51
|
-
'
|
|
50
|
+
'File': 'File',
|
|
51
|
+
'Folder': 'Folder',
|
|
52
52
|
'Search': 'Search',
|
|
53
53
|
'Button-Ok': 'OK',
|
|
54
54
|
'Button-Cancel': 'Cancel',
|
|
@@ -611,11 +611,11 @@ var ContextMenu = /** @class */ (function () {
|
|
|
611
611
|
id: itemId, text: itemText, iconCss: CLS.ICON_UPLOAD,
|
|
612
612
|
items: [
|
|
613
613
|
{
|
|
614
|
-
id: this.getMenuId('folderupload'), text: getLocaleText(this.parent, '
|
|
614
|
+
id: this.getMenuId('folderupload'), text: getLocaleText(this.parent, 'Folder'),
|
|
615
615
|
iconCss: !this.parent.uploadObj.directoryUpload ? null : CLS.TB_OPTION_TICK
|
|
616
616
|
},
|
|
617
617
|
{
|
|
618
|
-
id: this.getMenuId('fileupload'), text: getLocaleText(this.parent, '
|
|
618
|
+
id: this.getMenuId('fileupload'), text: getLocaleText(this.parent, 'File'),
|
|
619
619
|
iconCss: this.parent.uploadObj.directoryUpload ? null : CLS.TB_OPTION_TICK
|
|
620
620
|
}
|
|
621
621
|
]
|
|
@@ -1053,11 +1053,12 @@ ejs-filemanager {
|
|
|
1053
1053
|
background: #fff;
|
|
1054
1054
|
}
|
|
1055
1055
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1056
|
-
color: #
|
|
1056
|
+
color: #212529;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active {
|
|
1059
1059
|
background-color: #007bff;
|
|
1060
1060
|
color: #fff;
|
|
1061
|
+
background-color: #ced4da;
|
|
1061
1062
|
}
|
|
1062
1063
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1063
1064
|
background-color: #fff;
|
|
@@ -1070,6 +1071,9 @@ ejs-filemanager {
|
|
|
1070
1071
|
.e-filemanager .e-grid.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) {
|
|
1071
1072
|
background-color: transparent;
|
|
1072
1073
|
}
|
|
1074
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1075
|
+
color: #212529;
|
|
1076
|
+
}
|
|
1073
1077
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1074
1078
|
border-color: #dee2e6;
|
|
1075
1079
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1053,11 +1053,12 @@ ejs-filemanager {
|
|
|
1053
1053
|
background: #fff;
|
|
1054
1054
|
}
|
|
1055
1055
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1056
|
-
color: #
|
|
1056
|
+
color: #212529;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active {
|
|
1059
1059
|
background-color: #007bff;
|
|
1060
1060
|
color: #fff;
|
|
1061
|
+
background-color: #ced4da;
|
|
1061
1062
|
}
|
|
1062
1063
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1063
1064
|
background-color: #fff;
|
|
@@ -1070,6 +1071,9 @@ ejs-filemanager {
|
|
|
1070
1071
|
.e-filemanager .e-grid.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) {
|
|
1071
1072
|
background-color: transparent;
|
|
1072
1073
|
}
|
|
1074
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1075
|
+
color: #212529;
|
|
1076
|
+
}
|
|
1073
1077
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1074
1078
|
border-color: #dee2e6;
|
|
1075
1079
|
}
|
|
@@ -1061,6 +1061,7 @@ ejs-filemanager {
|
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(60.2918918919, 67.6, 74.9081081081);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #e9ecef;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1078
1082
|
}
|
|
@@ -1061,6 +1061,7 @@ ejs-filemanager {
|
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(60.2918918919, 67.6, 74.9081081081);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #e9ecef;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1078
1082
|
}
|
|
@@ -1056,11 +1056,12 @@ ejs-filemanager {
|
|
|
1056
1056
|
color: #495057;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1059
|
-
color: #
|
|
1059
|
+
color: #212529;
|
|
1060
1060
|
}
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(230.15, 233.7, 237.25);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #343a40;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: #dee2e6;
|
|
1078
1082
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -1056,11 +1056,12 @@ ejs-filemanager {
|
|
|
1056
1056
|
color: #495057;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1059
|
-
color: #
|
|
1059
|
+
color: #212529;
|
|
1060
1060
|
}
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(230.15, 233.7, 237.25);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #343a40;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: #dee2e6;
|
|
1078
1082
|
}
|
|
@@ -24,6 +24,9 @@ $fe-text-color: $gray-900 !default;
|
|
|
24
24
|
$fe-tb-db-sep-color: $gray-200 !default;
|
|
25
25
|
$fe-active-border-color: $primary !default;
|
|
26
26
|
$fe-active-bg-color: $primary !default;
|
|
27
|
+
$fe-grid-active-bg-color: $gray-400 !default;
|
|
28
|
+
$fe-grid-active-font-color: $gray-900 !default;
|
|
29
|
+
$fe-selected-hover-font-color: $gray-900 !default;
|
|
27
30
|
$fe-active-font-color: $primary-font !default;
|
|
28
31
|
$fe-hover-border-color: color.adjust($gray-100, $lightness: -2%) !default;
|
|
29
32
|
$fe-hover-bg-color: color.adjust($gray-100, $lightness: -2%) !default;
|
|
@@ -290,6 +290,9 @@ $fe-active-border-color: $content-bg-color-selected !default;
|
|
|
290
290
|
$fe-tb-active-color: $secondary-text-color !default;
|
|
291
291
|
$fe-active-bg-color: $content-bg-color-selected !default;
|
|
292
292
|
$fe-active-font-color: $secondary-text-color !default;
|
|
293
|
+
$fe-grid-active-bg-color: $table-bg-color-selected !default;
|
|
294
|
+
$fe-grid-active-font-color: $table-text-color-selected !default;
|
|
295
|
+
$fe-selected-hover-font-color: $content-text-color-alt1 !default;
|
|
293
296
|
$fe-hover-border-color: $content-bg-color-hover !default;
|
|
294
297
|
$fe-hover-bg-color: $content-bg-color-hover !default;
|
|
295
298
|
$fe-ah-border-color: $content-bg-color-selected !default;
|
|
@@ -290,6 +290,9 @@ $fe-active-border-color: $content-bg-color-selected !default;
|
|
|
290
290
|
$fe-tb-active-color: $secondary-text-color !default;
|
|
291
291
|
$fe-active-bg-color: $content-bg-color-selected !default;
|
|
292
292
|
$fe-active-font-color: $secondary-text-color !default;
|
|
293
|
+
$fe-grid-active-bg-color: $table-bg-color-selected !default;
|
|
294
|
+
$fe-grid-active-font-color: $table-text-color-selected !default;
|
|
295
|
+
$fe-selected-hover-font-color: $content-text-color-alt1 !default;
|
|
293
296
|
$fe-hover-border-color: $content-bg-color-hover !default;
|
|
294
297
|
$fe-hover-bg-color: $content-bg-color-hover !default;
|
|
295
298
|
$fe-ah-border-color: $content-bg-color-selected !default;
|
|
@@ -25,6 +25,7 @@ $fe-label-color: $content-text-color-alt2 !default;
|
|
|
25
25
|
$fe-text-color: $content-text-color !default;
|
|
26
26
|
$fe-active-border-color: $content-bg-color-selected !default;
|
|
27
27
|
$fe-active-bg-color: $content-bg-color-selected !default;
|
|
28
|
+
$fe-grid-active-bg-color: $table-bg-color-selected !default;
|
|
28
29
|
$fe-active-font-color: $content-text-color !default;
|
|
29
30
|
$fe-hover-border-color: $content-bg-color-hover !default;
|
|
30
31
|
$fe-hover-bg-color: $content-bg-color-hover !default;
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
|
|
236
236
|
@if $skin-name == 'bootstrap5' or $skin-name == 'bootstrap4' {
|
|
237
237
|
td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
238
|
-
color: $fe-active-font-color;
|
|
238
|
+
color: $fe-grid-active-font-color;
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
|
|
@@ -244,6 +244,9 @@
|
|
|
244
244
|
@if $fm-skin-name != 'material-dark' {
|
|
245
245
|
color: $fe-active-font-color;
|
|
246
246
|
}
|
|
247
|
+
@if $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap4' or $fm-skin-name == 'fluent2'{
|
|
248
|
+
background-color: $fe-grid-active-bg-color;
|
|
249
|
+
}
|
|
247
250
|
}
|
|
248
251
|
|
|
249
252
|
tr:hover td.e-active {
|
|
@@ -278,6 +281,12 @@
|
|
|
278
281
|
&.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) {
|
|
279
282
|
background-color: transparent;
|
|
280
283
|
}
|
|
284
|
+
|
|
285
|
+
&.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
286
|
+
@if $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap4' {
|
|
287
|
+
color: $fe-selected-hover-font-color;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
281
290
|
}
|
|
282
291
|
|
|
283
292
|
.e-large-icons {
|
|
@@ -1053,11 +1053,12 @@ ejs-filemanager {
|
|
|
1053
1053
|
background: #fff;
|
|
1054
1054
|
}
|
|
1055
1055
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1056
|
-
color: #
|
|
1056
|
+
color: #212529;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active {
|
|
1059
1059
|
background-color: #007bff;
|
|
1060
1060
|
color: #fff;
|
|
1061
|
+
background-color: #ced4da;
|
|
1061
1062
|
}
|
|
1062
1063
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1063
1064
|
background-color: #fff;
|
|
@@ -1070,6 +1071,9 @@ ejs-filemanager {
|
|
|
1070
1071
|
.e-filemanager .e-grid.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) {
|
|
1071
1072
|
background-color: transparent;
|
|
1072
1073
|
}
|
|
1074
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1075
|
+
color: #212529;
|
|
1076
|
+
}
|
|
1073
1077
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1074
1078
|
border-color: #dee2e6;
|
|
1075
1079
|
}
|
|
@@ -1061,6 +1061,7 @@ ejs-filemanager {
|
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(60.2918918919, 67.6, 74.9081081081);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #e9ecef;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: rgb(68.0034482759, 75.85, 83.6965517241);
|
|
1078
1082
|
}
|
|
@@ -1056,11 +1056,12 @@ ejs-filemanager {
|
|
|
1056
1056
|
color: #495057;
|
|
1057
1057
|
}
|
|
1058
1058
|
.e-filemanager .e-grid td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1059
|
-
color: #
|
|
1059
|
+
color: #212529;
|
|
1060
1060
|
}
|
|
1061
1061
|
.e-filemanager .e-grid td.e-active {
|
|
1062
1062
|
background-color: #0d6efd;
|
|
1063
1063
|
color: #fff;
|
|
1064
|
+
background-color: rgb(230.15, 233.7, 237.25);
|
|
1064
1065
|
}
|
|
1065
1066
|
.e-filemanager .e-grid .e-checkbox-wrapper .e-icons.e-check {
|
|
1066
1067
|
background-color: #fff;
|
|
@@ -1073,6 +1074,9 @@ ejs-filemanager {
|
|
|
1073
1074
|
.e-filemanager .e-grid.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) {
|
|
1074
1075
|
background-color: transparent;
|
|
1075
1076
|
}
|
|
1077
|
+
.e-filemanager .e-grid.e-gridhover tr.e-row:not(.e-disable-gridhover):not(.e-detailrow):hover td.e-active.e-rowcell:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
1078
|
+
color: #343a40;
|
|
1079
|
+
}
|
|
1076
1080
|
.e-filemanager .e-large-icons .e-list-img {
|
|
1077
1081
|
border-color: #dee2e6;
|
|
1078
1082
|
}
|
|
@@ -1555,6 +1555,7 @@ ejs-filemanager {
|
|
|
1555
1555
|
.e-filemanager .e-grid td.e-active {
|
|
1556
1556
|
background-color: var(--color-sf-content-bg-color-selected);
|
|
1557
1557
|
color: var(--color-sf-content-text-color);
|
|
1558
|
+
background-color: var(--color-sf-table-bg-color-selected);
|
|
1558
1559
|
}
|
|
1559
1560
|
.e-filemanager .e-grid.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) {
|
|
1560
1561
|
background-color: transparent;
|
|
@@ -1277,7 +1277,6 @@ ejs-filemanager {
|
|
|
1277
1277
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1278
1278
|
}
|
|
1279
1279
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1280
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1281
1280
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1282
1281
|
color: rgba(var(--color-sf-on-surface));
|
|
1283
1282
|
}
|
|
@@ -1285,7 +1284,6 @@ ejs-filemanager {
|
|
|
1285
1284
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1286
1285
|
}
|
|
1287
1286
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1288
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1289
1287
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1290
1288
|
color: rgba(var(--color-sf-on-surface));
|
|
1291
1289
|
}
|
|
@@ -1293,7 +1291,6 @@ ejs-filemanager {
|
|
|
1293
1291
|
color: rgba(var(--color-sf-on-surface));
|
|
1294
1292
|
}
|
|
1295
1293
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1296
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1297
1294
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1298
1295
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1299
1296
|
border: none;
|
|
@@ -1307,14 +1304,12 @@ ejs-filemanager {
|
|
|
1307
1304
|
border-color: rgba(var(--color-sf-primary));
|
|
1308
1305
|
}
|
|
1309
1306
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1310
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1311
1307
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1312
1308
|
}
|
|
1313
1309
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1314
1310
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1315
1311
|
}
|
|
1316
1312
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1317
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1318
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1319
1314
|
}
|
|
1320
1315
|
.e-filemanager .e-grid .e-empty-inner-content {
|
|
@@ -1283,7 +1283,6 @@ ejs-filemanager {
|
|
|
1283
1283
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1284
1284
|
}
|
|
1285
1285
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1286
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1287
1286
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1288
1287
|
color: rgba(var(--color-sf-on-surface));
|
|
1289
1288
|
}
|
|
@@ -1291,7 +1290,6 @@ ejs-filemanager {
|
|
|
1291
1290
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1292
1291
|
}
|
|
1293
1292
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1294
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1295
1293
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1296
1294
|
color: rgba(var(--color-sf-on-surface));
|
|
1297
1295
|
}
|
|
@@ -1299,7 +1297,6 @@ ejs-filemanager {
|
|
|
1299
1297
|
color: rgba(var(--color-sf-on-surface));
|
|
1300
1298
|
}
|
|
1301
1299
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1302
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1303
1300
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1304
1301
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1305
1302
|
border: none;
|
|
@@ -1313,14 +1310,12 @@ ejs-filemanager {
|
|
|
1313
1310
|
border-color: rgba(var(--color-sf-primary));
|
|
1314
1311
|
}
|
|
1315
1312
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1316
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1317
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1318
1314
|
}
|
|
1319
1315
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1320
1316
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1321
1317
|
}
|
|
1322
1318
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1323
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1324
1319
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1325
1320
|
}
|
|
1326
1321
|
.e-filemanager .e-grid .e-empty-inner-content {
|
package/styles/fluent2-lite.css
CHANGED
|
@@ -1555,6 +1555,7 @@ ejs-filemanager {
|
|
|
1555
1555
|
.e-filemanager .e-grid td.e-active {
|
|
1556
1556
|
background-color: var(--color-sf-content-bg-color-selected);
|
|
1557
1557
|
color: var(--color-sf-content-text-color);
|
|
1558
|
+
background-color: var(--color-sf-table-bg-color-selected);
|
|
1558
1559
|
}
|
|
1559
1560
|
.e-filemanager .e-grid.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) {
|
|
1560
1561
|
background-color: transparent;
|
package/styles/fluent2.css
CHANGED
|
@@ -1555,6 +1555,7 @@ ejs-filemanager {
|
|
|
1555
1555
|
.e-filemanager .e-grid td.e-active {
|
|
1556
1556
|
background-color: var(--color-sf-content-bg-color-selected);
|
|
1557
1557
|
color: var(--color-sf-content-text-color);
|
|
1558
|
+
background-color: var(--color-sf-table-bg-color-selected);
|
|
1558
1559
|
}
|
|
1559
1560
|
.e-filemanager .e-grid.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) {
|
|
1560
1561
|
background-color: transparent;
|
|
@@ -1277,7 +1277,6 @@ ejs-filemanager {
|
|
|
1277
1277
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1278
1278
|
}
|
|
1279
1279
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1280
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1281
1280
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1282
1281
|
color: rgba(var(--color-sf-on-surface));
|
|
1283
1282
|
}
|
|
@@ -1285,7 +1284,6 @@ ejs-filemanager {
|
|
|
1285
1284
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1286
1285
|
}
|
|
1287
1286
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1288
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1289
1287
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1290
1288
|
color: rgba(var(--color-sf-on-surface));
|
|
1291
1289
|
}
|
|
@@ -1293,7 +1291,6 @@ ejs-filemanager {
|
|
|
1293
1291
|
color: rgba(var(--color-sf-on-surface));
|
|
1294
1292
|
}
|
|
1295
1293
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1296
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1297
1294
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1298
1295
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1299
1296
|
border: none;
|
|
@@ -1307,14 +1304,12 @@ ejs-filemanager {
|
|
|
1307
1304
|
border-color: rgba(var(--color-sf-primary));
|
|
1308
1305
|
}
|
|
1309
1306
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1310
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1311
1307
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1312
1308
|
}
|
|
1313
1309
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1314
1310
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1315
1311
|
}
|
|
1316
1312
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1317
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1318
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1319
1314
|
}
|
|
1320
1315
|
.e-filemanager .e-grid .e-empty-inner-content {
|
|
@@ -1277,7 +1277,6 @@ ejs-filemanager {
|
|
|
1277
1277
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1278
1278
|
}
|
|
1279
1279
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1280
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1281
1280
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1282
1281
|
color: rgba(var(--color-sf-on-surface));
|
|
1283
1282
|
}
|
|
@@ -1285,7 +1284,6 @@ ejs-filemanager {
|
|
|
1285
1284
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1286
1285
|
}
|
|
1287
1286
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1288
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1289
1287
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1290
1288
|
color: rgba(var(--color-sf-on-surface));
|
|
1291
1289
|
}
|
|
@@ -1293,7 +1291,6 @@ ejs-filemanager {
|
|
|
1293
1291
|
color: rgba(var(--color-sf-on-surface));
|
|
1294
1292
|
}
|
|
1295
1293
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1296
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1297
1294
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1298
1295
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1299
1296
|
border: none;
|
|
@@ -1307,14 +1304,12 @@ ejs-filemanager {
|
|
|
1307
1304
|
border-color: rgba(var(--color-sf-primary));
|
|
1308
1305
|
}
|
|
1309
1306
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1310
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1311
1307
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1312
1308
|
}
|
|
1313
1309
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1314
1310
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1315
1311
|
}
|
|
1316
1312
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1317
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1318
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1319
1314
|
}
|
|
1320
1315
|
.e-filemanager .e-grid .e-empty-inner-content {
|
|
@@ -1283,7 +1283,6 @@ ejs-filemanager {
|
|
|
1283
1283
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1284
1284
|
}
|
|
1285
1285
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1286
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1287
1286
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1288
1287
|
color: rgba(var(--color-sf-on-surface));
|
|
1289
1288
|
}
|
|
@@ -1291,7 +1290,6 @@ ejs-filemanager {
|
|
|
1291
1290
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1292
1291
|
}
|
|
1293
1292
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1294
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1295
1293
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1296
1294
|
color: rgba(var(--color-sf-on-surface));
|
|
1297
1295
|
}
|
|
@@ -1299,7 +1297,6 @@ ejs-filemanager {
|
|
|
1299
1297
|
color: rgba(var(--color-sf-on-surface));
|
|
1300
1298
|
}
|
|
1301
1299
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1302
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1303
1300
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1304
1301
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1305
1302
|
border: none;
|
|
@@ -1313,14 +1310,12 @@ ejs-filemanager {
|
|
|
1313
1310
|
border-color: rgba(var(--color-sf-primary));
|
|
1314
1311
|
}
|
|
1315
1312
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1316
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1317
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1318
1314
|
}
|
|
1319
1315
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1320
1316
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1321
1317
|
}
|
|
1322
1318
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1323
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1324
1319
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1325
1320
|
}
|
|
1326
1321
|
.e-filemanager .e-grid .e-empty-inner-content {
|
package/styles/material3.css
CHANGED
|
@@ -1283,7 +1283,6 @@ ejs-filemanager {
|
|
|
1283
1283
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1284
1284
|
}
|
|
1285
1285
|
.e-filemanager .e-address .e-address-list-item:focus .e-list-text {
|
|
1286
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1287
1286
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1288
1287
|
color: rgba(var(--color-sf-on-surface));
|
|
1289
1288
|
}
|
|
@@ -1291,7 +1290,6 @@ ejs-filemanager {
|
|
|
1291
1290
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
1292
1291
|
}
|
|
1293
1292
|
.e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:hover, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:active, .e-filemanager .e-address .e-address-list-item:not(:last-child) .e-list-text:focus {
|
|
1294
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.08)), to(rgba(var(--color-sf-primary), 0.08))), rgba(var(--color-sf-surface));
|
|
1295
1293
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.08), rgba(var(--color-sf-primary), 0.08)), rgba(var(--color-sf-surface));
|
|
1296
1294
|
color: rgba(var(--color-sf-on-surface));
|
|
1297
1295
|
}
|
|
@@ -1299,7 +1297,6 @@ ejs-filemanager {
|
|
|
1299
1297
|
color: rgba(var(--color-sf-on-surface));
|
|
1300
1298
|
}
|
|
1301
1299
|
.e-filemanager .e-address .e-search-wrap .e-input-group.e-control-wrapper:not(.e-success) {
|
|
1302
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1303
1300
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1304
1301
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
1305
1302
|
border: none;
|
|
@@ -1313,14 +1310,12 @@ ejs-filemanager {
|
|
|
1313
1310
|
border-color: rgba(var(--color-sf-primary));
|
|
1314
1311
|
}
|
|
1315
1312
|
.e-filemanager .e-grid .e-gridheader tr:first-child th {
|
|
1316
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1317
1313
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1318
1314
|
}
|
|
1319
1315
|
.e-filemanager .e-grid .e-gridheader .e-headercell:not(.e-fe-grid-icon):hover, .e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-grid-icon .e-headercelldiv:hover {
|
|
1320
1316
|
background: rgba(var(--color-sf-on-surface), 0.05);
|
|
1321
1317
|
}
|
|
1322
1318
|
.e-filemanager .e-grid .e-gridheader .e-headercell.e-fe-checkbox:hover {
|
|
1323
|
-
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1324
1319
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1325
1320
|
}
|
|
1326
1321
|
.e-filemanager .e-grid .e-empty-inner-content {
|