Merge pull request #23782 from nextcloud/bugfix/noid/fix-hidden-visually
Properly put hidden-visually off-screen
This commit is contained in:
commit
3b97819c9d
|
@ -30,8 +30,8 @@
|
|||
|
||||
.hidden-visually {
|
||||
position: absolute;
|
||||
left:-10000px;
|
||||
top: auto;
|
||||
left: -10000px;
|
||||
top: -10000px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue