Properly put hidden-visually off-screen
In some situations the element is still affecting the layout, especially when a sticky is nearby. This fix moves it properly off-screen. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
parent
ecdfe961f8
commit
1476817975
|
@ -31,7 +31,7 @@
|
|||
.hidden-visually {
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
top: auto;
|
||||
top: -10000px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -910,7 +910,7 @@ label.infield,
|
|||
.hidden-visually {
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
top: auto;
|
||||
top: -10000px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -949,7 +949,7 @@ progress {
|
|||
label.infield {
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
top: auto;
|
||||
top: -10000px;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
|
|
Loading…
Reference in New Issue