Browse Source
Merge pull request #23782 from nextcloud/bugfix/noid/fix-hidden-visually
Properly put hidden-visually off-screen
pull/23267/head
Roeland Jago Douma
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
7 additions and
7 deletions
-
core/css/global.scss
-
core/css/guest.css
-
core/css/inputs.scss
|
|
@ -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; |
|
|
|
} |
|
|
|
} |
|
|
@ -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; |
|
|
|
|
|
@ -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; |
|
|
|