[stable16] Sharing in list: Use .hidden-visually instead of display:none for accessibility, fix #11661 (#15981)
[stable16] Sharing in list: Use .hidden-visually instead of display:none for accessibility, fix #11661
This commit is contained in:
commit
26ab38aea0
|
@ -541,8 +541,15 @@ a.action > img {
|
|||
opacity: .3;
|
||||
&.action-share {
|
||||
padding: 17px 14px;
|
||||
> span:not(.icon) {
|
||||
display: none;
|
||||
&.permanent:not(.shared-style) .icon-shared + span {
|
||||
/* hide text of the share action */
|
||||
/* .hidden-visually for accessbility */
|
||||
position: absolute;
|
||||
left:-10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.avatar {
|
||||
display: inline-block;
|
||||
|
|
|
@ -36,8 +36,14 @@ table.multiselect thead {
|
|||
margin-right: 6px;
|
||||
}
|
||||
/* hide text of the share action on mobile */
|
||||
#fileList a.action-share span:not(.icon) {
|
||||
display: none !important;
|
||||
/* .hidden-visually for accessbility */
|
||||
#fileList a.action-share span:not(.icon):not(.avatar) {
|
||||
position: absolute;
|
||||
left:-10000px;
|
||||
top: auto;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue