Merge pull request #23782 from nextcloud/bugfix/noid/fix-hidden-visually

Properly put hidden-visually off-screen
This commit is contained in:
Roeland Jago Douma 2020-10-31 19:18:18 +01:00 committed by GitHub
commit 3b97819c9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -30,8 +30,8 @@
.hidden-visually {
position: absolute;
left:-10000px;
top: auto;
left: -10000px;
top: -10000px;
width: 1px;
height: 1px;
overflow: hidden;
@ -47,4 +47,4 @@
.inlineblock {
display: inline-block;
}
}

View File

@ -909,8 +909,8 @@ footer .info .entity-name {
label.infield,
.hidden-visually {
position: absolute;
left:-10000px;
top: auto;
left: -10000px;
top: -10000px;
width: 1px;
height: 1px;
overflow: hidden;

View File

@ -948,8 +948,8 @@ progress {
// Same as .hidden-visually
label.infield {
position: absolute;
left:-10000px;
top: auto;
left: -10000px;
top: -10000px;
width: 1px;
height: 1px;
overflow: hidden;