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

ui changes + map preparation + bugfixes

This commit is contained in:
NoobishSVK
2024-02-08 16:48:55 +01:00
parent 8ad8015ae7
commit 0453cdc75a
8 changed files with 231 additions and 94 deletions

View File

@@ -68,6 +68,60 @@
background: var(--color-5);
}
.modal-panel {
width: 450px;
height: 100%;
position: absolute;
right: 0;
text-align: center;
background-color: var(--color-main);
}
.modal-panel .flex-container {
align-items: stretch;
}
.modal-panel h1 {
font-size: 42px;
}
.modal-panel-sidebar {
width: 64px;
background-color: var(--color-1);
cursor: pointer;
}
.modal-panel-content {
flex: 1;
position: relative;
}
.modal-panel-content .version-info {
position: absolute;
bottom: 0;
width: 100%;
}
.modal-panel-footer {
width: 450px;
height: 100px;
background-color: var(--color-main);
vertical-align: bottom;
}
.modal-panel .form-group {
float: none !important;
}
.modal-panel .dropdown {
margin: auto;
}
.modal-panel label {
width: 200px;
margin: auto;
}
@media only screen and (max-width: 768px) {
.modal-content {
min-width: 90% !important;
@@ -83,4 +137,17 @@
#closeModalButton {
position: static;
}
.modal-panel {
width: 100%;
}
}
@media only screen and (max-height: 768px) {
.modal-panel .version-info {
position: static;
bottom: auto;
}
.modal-panel-content {
overflow-y: auto;
}
}