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.scss | |
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.scss')
-rw-r--r-- | apps/files/css/files.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 5da98487e40..ce469a72cf0 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -391,9 +391,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; } table td.filename form { @@ -1148,6 +1148,7 @@ table.dragshadow td.size { input.filename { width: 100%; margin-left: 0; + cursor: text; } } } |