Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-10-29 23:35:36 +0300
committerVincent Petry <vincent@nextcloud.com>2020-10-29 23:35:36 +0300
commit14768179755ce705b3392381af6c7dcac5433afe (patch)
tree03ecc96b51d0c3ca738677462839f28e04e65a14 /core/css/inputs.scss
parentecdfe961f87bd8c490eb0ebc658584b84e0283a1 (diff)
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>
Diffstat (limited to 'core/css/inputs.scss')
-rw-r--r--core/css/inputs.scss4
1 files changed, 2 insertions, 2 deletions
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;