Help update

This commit is contained in:
Renan LE CARO 2025-04-01 13:35:33 +02:00
parent d31f8ef0b4
commit b19cc5c0b4
23 changed files with 863 additions and 446 deletions

View file

@ -173,6 +173,9 @@ body:not(.has-alert-open) #popup {
filter: saturate(0);
}
}
&[disabled] {
opacity: 0.2;
}
}
}
}
@ -181,6 +184,13 @@ body:not(.has-alert-open) #popup {
&.actionsAsGrid > div {
max-width: none;
&>div,&>p,&>h1,&>h2{
width: 100%;
max-width: 550px;
margin-left: auto;
margin-right: auto;
}
section {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
@ -410,3 +420,21 @@ h2.histogram-title strong {
opacity: 0.8;
}
}
#tooltip {
display: block;
position:fixed;
left: 0;
top:0;
background:black;
color:white;
padding:10px;
z-index:11;
border-radius: 2px;
pointer-events: none;
user-select: none;
opacity: 1;
border: 1px solid white;
max-width: 300px;
}