зеркало из https://github.com/nextcloud/spreed.git
Set height for header element in public pages
The header element contains the header div; as the header div uses a fixed position the header element has no height, so it must be explicitly set to prevent #app-content-wrapper from overlapping with the header element. Right now it was not very noticeable, as it only affected the empty content; as it name implies most of the space was empty except for a message at the centre of the screen, so visually it did not overlap with the header. However having a proper height set for the header will be a must once the chat view is shown in the app content wrapper. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Родитель
63111646f5
Коммит
4507c9ad5c
|
@ -690,6 +690,13 @@ video {
|
|||
}
|
||||
}
|
||||
|
||||
/* The header element contains the header div; as the header div uses a fixed
|
||||
position the header element has no height, so it must be explicitly set to
|
||||
prevent #app-content-wrapper from overlapping with the header element */
|
||||
#body-public header {
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
/* make blue header bar transparent in shared room */
|
||||
#body-public #app-content:not(.participants-1) #header.spreed-public {
|
||||
background: transparent;
|
||||
|
|
Загрузка…
Ссылка в новой задаче