diff options
author | szaimen <szaimen@e.mail.de> | 2022-09-07 18:37:58 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-09-08 14:07:22 +0000 |
commit | f0f8a22b23509236bd61ca793eb4a57d9776623c (patch) | |
tree | 75d0a6bc224af15ec9aee48ab7afc243e1c377ff /apps/files/css/files.css | |
parent | 58706dd5aa12ac5bbd0364e34fe07834a985bb99 (diff) | |
download | nextcloud-server-f0f8a22b23509236bd61ca793eb4a57d9776623c.tar.gz nextcloud-server-f0f8a22b23509236bd61ca793eb4a57d9776623c.zip |
fix filename input
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/files/css/files.css')
-rw-r--r-- | apps/files/css/files.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index d88bd738549..80ccfceda0e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -487,9 +487,9 @@ table tr[data-has-preview=true] .thumbnail { border: 1px solid var(--color-border); } -table td.filename input.filename { - width: 70%; - margin-left: 48px; +table:not(.view-grid) td.filename input.filename { + width: 70% !important; + margin-left: 48px !important; cursor: text; } @@ -1205,6 +1205,7 @@ table.dragshadow td.size { .files-filestable.view-grid:not(.hidden) tbody td.filename form input.filename { width: 100%; margin-left: 0; + cursor: text; } .files-filestable.view-grid:not(.hidden) tbody td.filesize, .files-filestable.view-grid:not(.hidden) tbody td.date { display: none; |