diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-17 15:29:02 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-17 15:29:02 +0200 |
commit | e3d8fd6544c12a4e091bb9dc1817b0e4467f0d78 (patch) | |
tree | b1b9b8879e46b5219736d8f98bf42cf92f5cc32e | |
parent | 44d2eb8b4ec838652089be6018ae7240663781df (diff) | |
download | nextcloud-server-e3d8fd6544c12a4e091bb9dc1817b0e4467f0d78.tar.gz nextcloud-server-e3d8fd6544c12a4e091bb9dc1817b0e4467f0d78.zip |
Fix unnecessary highlighting of selected element
Use focus-visible to only show focus ring on keyboard navigation
Fix #34589
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-rw-r--r-- | apps/files/css/files.css | 4 | ||||
-rw-r--r-- | apps/files/css/files.scss | 2 | ||||
-rw-r--r-- | apps/files/css/merged.css | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a9d54a5638e..431e3bf29b5 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -609,8 +609,8 @@ table td.selection { .select-all + label { padding: 16px; } -.files-fileList tr td.selection > .selectCheckBox:focus + label, -.select-all:focus + label { +.files-fileList tr td.selection > .selectCheckBox:focus-visible + label, +.select-all:focus-visible + label { background-color: var(--color-background-hover); border-radius: var(--border-radius-pill); outline: none !important; diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index e02c1bc71c3..1950d740bd7 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -504,7 +504,7 @@ table td.selection { padding: 16px; } - &:focus + label { + &:focus-visible + label { background-color: var(--color-background-hover); border-radius: var(--border-radius-pill); outline: none !important; diff --git a/apps/files/css/merged.css b/apps/files/css/merged.css index e14edcdf04b..e4b2c51d7f3 100644 --- a/apps/files/css/merged.css +++ b/apps/files/css/merged.css @@ -609,8 +609,8 @@ table td.selection { .select-all + label { padding: 16px; } -.files-fileList tr td.selection > .selectCheckBox:focus + label, -.select-all:focus + label { +.files-fileList tr td.selection > .selectCheckBox:focus-visible + label, +.select-all:focus-visible + label { background-color: var(--color-background-hover); border-radius: var(--border-radius-pill); outline: none !important; |