diff options
Diffstat (limited to 'apps/files/css/mobile.scss')
-rw-r--r-- | apps/files/css/mobile.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index 879e8a2bb31..111909bf957 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -37,8 +37,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; } |