style tweaks

This commit is contained in:
Miika Kuisma
2026-01-30 11:17:21 +02:00
parent 6f514c5803
commit 0a6e16600b
2 changed files with 6 additions and 6 deletions

View File

@@ -1718,7 +1718,7 @@ const TabFiles = {
if ( ! anyTrashed ) {
items.push({
html: `${i18n('download')} (${selectedRows.length})`,
html: `${i18n('download')}`,
onClick: function () {
window.zipItems(Array.from(selectedRows), _this.selectedFolderUid, true);
},
@@ -1728,7 +1728,7 @@ const TabFiles = {
// Cut
items.push({
html: `${i18n('cut')} (${selectedRows.length})`,
html: `${i18n('cut')}`,
onClick: function () {
window.clipboard_op = 'move';
window.clipboard = [];
@@ -1741,7 +1741,7 @@ const TabFiles = {
// Copy
if ( ! anyTrashed ) {
items.push({
html: `${i18n('copy')} (${selectedRows.length})`,
html: `${i18n('copy')}`,
onClick: function () {
window.clipboard_op = 'copy';
window.clipboard = [];
@@ -1779,7 +1779,7 @@ const TabFiles = {
}
else {
items.push({
html: `${i18n('delete')} (${selectedRows.length})`,
html: `${i18n('delete')}`,
onClick: function () {
window.move_items(Array.from(selectedRows), window.trash_path);
setTimeout(() => {

View File

@@ -6158,7 +6158,7 @@ html.dark-mode .usage-table-show-less:hover {
}
.dashboard-section-files .row.selected {
color: var(--dashboard-background);
color: var(--primary-color-sidebar-item);
background-color: var(--select-color);
border-radius: 3px;
}
@@ -6190,7 +6190,7 @@ html.dark-mode .usage-table-show-less:hover {
white-space: nowrap;
overflow: hidden;
max-width: unset;
color: var(--dashboard-text);
color: currentColor;
text-shadow: none;
padding: 0 8px;
margin: 0;