You've already forked fm-dx-webserver
mirror of
https://github.com/KubaPro010/fm-dx-webserver.git
synced 2026-02-26 22:13:53 +01:00
bugfixes / sporadic e logging
This commit is contained in:
@@ -302,7 +302,7 @@ pre {
|
||||
position: absolute;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 2px solid var(--color-3);
|
||||
border: 2px solid var(--color-text);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
|
||||
@@ -333,6 +333,52 @@ select:hover {
|
||||
background: var(--color-5);
|
||||
}
|
||||
|
||||
.popup {
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.popup .popup-content {
|
||||
visibility: hidden;
|
||||
width: 230px;
|
||||
background-color: var(--color-2-transparent);
|
||||
backdrop-filter: blur(5px);
|
||||
color: var(--color-text);;
|
||||
text-align: center;
|
||||
border-radius: 15px;
|
||||
padding: 8px;
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 125%;
|
||||
left: 50%;
|
||||
margin-left: -115px;
|
||||
border: 3px solid var(--color-3);
|
||||
}
|
||||
|
||||
.popup .show {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
button[disabled] .popup-content {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.popup .popup-content::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: calc(100% + 3px);
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
border-width: 5px;
|
||||
border-style: solid;
|
||||
border-color: transparent transparent var(--color-3) transparent;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 768px) {
|
||||
#tune-buttons input[type="text"] {
|
||||
background-color: var(--color-1-transparent);
|
||||
|
||||
@@ -4,7 +4,6 @@ body.modal-open {
|
||||
|
||||
.modal-panel, .modal-panel-chat {
|
||||
max-height: 100vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.modal {
|
||||
@@ -99,6 +98,7 @@ body.modal-open {
|
||||
width: 64px;
|
||||
background-color: var(--color-1);
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.modal-panel-content {
|
||||
|
||||
Reference in New Issue
Block a user