mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
![Vincent Petry](/assets/img/avatar_default.png)
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>
50 lines
613 B
SCSS
50 lines
613 B
SCSS
/* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com
|
|
This file is licensed under the Affero General Public License version 3 or later.
|
|
See the COPYING-README file. */
|
|
|
|
/* Global Components */
|
|
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
|
|
.clear-left {
|
|
clear: left;
|
|
}
|
|
|
|
.clear-right {
|
|
clear: right;
|
|
}
|
|
|
|
.clear-both {
|
|
clear: both;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.hidden-visually {
|
|
position: absolute;
|
|
left: -10000px;
|
|
top: -10000px;
|
|
width: 1px;
|
|
height: 1px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bold {
|
|
font-weight:600;
|
|
}
|
|
|
|
.center {
|
|
text-align:center;
|
|
}
|
|
|
|
.inlineblock {
|
|
display: inline-block;
|
|
}
|