Tooltips for some settings

This commit is contained in:
2024-10-27 04:15:25 +01:00
parent 7eca06332a
commit e58d3f8741
3 changed files with 26 additions and 4 deletions

View File

@ -21,4 +21,22 @@ body{
font-family: "Inter", sans-serif;
overflow-x: hidden;
color: var(--primary-color);
}
.tooltip {
position: relative;
}
.tooltip:hover:before {
display: block;
content: attr(data-tooltip, "tooltip");
background-color: var(--second-background-color);
color: var(--secondary-color);
border: 1px solid var(--secondary-color);
border-radius: 6px;
bottom: 1em;
max-width: 90%;
position: absolute;
padding: 3px 7px 1px;
z-index: 999;
}

View File

@ -50,6 +50,10 @@
padding: 5px 5px 35px;
}
.section-item > * {
margin: 2px 0;
}
.section-item[connector-status="Not Configured"]{
border-color: var(--primary-color);
}