aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-10-31 19:18:18 +0100
committerGitHub <noreply@github.com>2020-10-31 19:18:18 +0100
commit3b97819c9d708fdf449e75a63683cb1da4799575 (patch)
tree2d52e136b13b0fd7b9c0ca8a59c34303ba9ee911 /core
parent25a1df9c7e3de58cc443565ee8ecee46cb61d282 (diff)
parent14768179755ce705b3392381af6c7dcac5433afe (diff)
downloadnextcloud-server-3b97819c9d708fdf449e75a63683cb1da4799575.tar.gz
nextcloud-server-3b97819c9d708fdf449e75a63683cb1da4799575.zip
Merge pull request #23782 from nextcloud/bugfix/noid/fix-hidden-visually
Properly put hidden-visually off-screen
Diffstat (limited to 'core')
-rw-r--r--core/css/global.scss6
-rw-r--r--core/css/guest.css4
-rw-r--r--core/css/inputs.scss4
3 files changed, 7 insertions, 7 deletions
diff --git a/core/css/global.scss b/core/css/global.scss
index 9511d4324fa..d2b0526c09c 100644
--- a/core/css/global.scss
+++ b/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;
-} \ No newline at end of file
+}
diff --git a/core/css/guest.css b/core/css/guest.css
index 64764e17e1c..340d3954c95 100644
--- a/core/css/guest.css
+++ b/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;
diff --git a/core/css/inputs.scss b/core/css/inputs.scss
index 87dc6a44806..22ac22fbcc2 100644
--- a/core/css/inputs.scss
+++ b/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;