Sharing in list: Use .hidden-visually instead of display:none for accessibility, fix #11661

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2019-06-14 14:16:25 +02:00 committed by Backportbot
parent 7a70c37549
commit 5369a132b6
2 changed files with 18 additions and 5 deletions

View file

@ -541,8 +541,15 @@ a.action > img {
opacity: .3; opacity: .3;
&.action-share { &.action-share {
padding: 17px 14px; padding: 17px 14px;
> span:not(.icon) { &.permanent:not(.shared-style) .icon-shared + span {
display: none; /* hide text of the share action */
/* .hidden-visually for accessbility */
position: absolute;
left:-10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
} }
.avatar { .avatar {
display: inline-block; display: inline-block;
@ -752,7 +759,7 @@ table.dragshadow td.size {
border-radius: 0; border-radius: 0;
background-color: transparent; background-color: transparent;
z-index:1; z-index:1;
> a[href='#'] { > a[href='#'] {
// if no link is set, no mouse feedback // if no link is set, no mouse feedback
box-shadow: none !important; box-shadow: none !important;

View file

@ -36,8 +36,14 @@ table.multiselect thead {
margin-right: 6px; margin-right: 6px;
} }
/* hide text of the share action on mobile */ /* hide text of the share action on mobile */
#fileList a.action-share span:not(.icon) { /* .hidden-visually for accessbility */
display: none !important; #fileList a.action-share span:not(.icon):not(.avatar) {
position: absolute;
left:-10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
} }