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
parent
commit
3b97819c9d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      core/css/global.scss
  2. 4
      core/css/guest.css
  3. 4
      core/css/inputs.scss

6
core/css/global.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;
}
}

4
core/css/guest.css

@ -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;

4
core/css/inputs.scss

@ -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;

Loading…
Cancel
Save