diff options
author | Vincent Petry <vincent@nextcloud.com> | 2020-11-20 17:40:43 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2021-02-26 10:15:21 +0100 |
commit | 53b162bad9915bfdb4b0eef2c0685cd654ac8bee (patch) | |
tree | 4123ebdf7c536288d53054e1efebdccf226461d2 /apps/files/css | |
parent | 23c143e034c9f04da07ee96731d7cd0e28edda4e (diff) | |
download | nextcloud-server-53b162bad9915bfdb4b0eef2c0685cd654ac8bee.tar.gz nextcloud-server-53b162bad9915bfdb4b0eef2c0685cd654ac8bee.zip |
Fix focus-visible outline for files checkboxes
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index c323ff9b51b..3643f11d276 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -290,6 +290,9 @@ table th#headerName { height: 50px; } +table th#headerSelection { + padding-top: 2px; +} table th#headerSize, table td.filesize { text-align: right; } @@ -482,6 +485,10 @@ table td.selection { .select-all + label { padding: 16px; } +#fileList tr td.selection>.selectCheckBox:focus-visible + label, +.select-all:focus-visible + label { + outline-offset: 0px; +} #fileList tr td.filename { position: relative; |