Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-25 18:28:32 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2019-08-28 10:31:41 +0300
commit5b89513671706ff854f383ece696581318eadcdf (patch)
tree9441c0ff7ebe4473c57cccb7622d8511431b4486 /css
parent5e79ab9aa8966f5e2605cdf8c00fe5c855cbbebf (diff)
Fix participant items being focusable
The participant items were link elements, so they were taken into account in keyboard navigation. However, although it is possible to interact with some of its children, it is not possible to interact with the participant item as a whole, so they should not be focusable. As the link in the participant items led nowhere they are now simple span elements instead of links. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/css/style.scss b/css/style.scss
index 81234e51b..c9c375731 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -709,7 +709,7 @@ input[type="password"] {
}
.participantWithList .participant-offline {
- & > a {
+ & > span {
color: var(--color-text-maxcontrast);
}
.avatar {
@@ -723,7 +723,7 @@ input[type="password"] {
box-sizing: border-box;
}
-.participantWithList > li > a {
+.participantWithList > li > span {
display: block;
width: 100%;
line-height: 44px;