1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

chat, theme changes, bugfixes

This commit is contained in:
NoobishSVK
2024-03-01 14:15:05 +01:00
parent e9b7c2a77f
commit 67ff5af341
16 changed files with 612 additions and 82 deletions

View File

@@ -74,6 +74,7 @@
position: absolute;
right: 0;
text-align: center;
display: none;
background-color: var(--color-main);
}
@@ -122,6 +123,26 @@
margin: auto;
}
.modal-panel-chat {
width: 100%;
max-width: 960px;
height: 450px;
position: absolute;
bottom: 0;
margin: auto;
left: 0;
right: 0;
text-align: center;
display: none;
background-color: var(--color-main);
border-radius: 30px 30px 0px 0px;
}
.modal-panel-chat .modal-panel-sidebar {
width: 100%;
border-radius: 30px 30px 0px 0px;
}
@media only screen and (max-width: 768px) {
.modal-content {
min-width: 90% !important;
@@ -134,12 +155,18 @@
.modal-title {
position: static;
}
#closeModalButton {
.closeModalButton {
position: static;
}
.modal-panel {
width: 100%;
}
.modal-panel-chat {
height: 500px;
}
#chat-chatbox {
height: 333px !important;
}
}
@media only screen and (max-height: 768px) {