fix updater

Took 58 minutes
This commit is contained in:
2023-04-17 10:40:10 +02:00
parent b8f09542b6
commit 61e93883a5
11 changed files with 130 additions and 93 deletions

View File

@ -155,6 +155,7 @@ h2 {
height: 9%;
background-color: #167FCC;
box-shadow: inset 11px -45px 50px 3px rgba(223, 12, 42, 0.66);
overflow: visible;
}
@ -193,6 +194,7 @@ h2 {
grid-template-rows: 100%;
grid-column-gap: 1.5%;
padding: 1% 2% 0.2%;
overflow: auto;
}
@ -224,8 +226,7 @@ h2 {
.pane {
height: 100%;
padding: 1% 2%;
overflow: auto;
ms-overflow-style: none; /* IE and Edge */
overflow: visible;
scrollbar-width: none; /* Firefox */
scroll-behavior: smooth;
color: white;
@ -284,23 +285,25 @@ h2 {
.tooltip {
position: relative;
display: inline-block;
overflow: visible;
}
.tooltip .tooltiptext {
opacity: 0;
width: 110px;
background-color: #214B74;
color: #FFFFFF;
text-align: center;
border-radius: 8px;
border-radius: 9px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
bottom: 40%;
bottom: -55%;
left: 50%;
margin-left: -80px;
}