mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-06-12 14:57:53 +02:00
Tooltips for some settings
This commit is contained in:
@ -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;
|
||||
}
|
@ -50,6 +50,10 @@
|
||||
padding: 5px 5px 35px;
|
||||
}
|
||||
|
||||
.section-item > * {
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.section-item[connector-status="Not Configured"]{
|
||||
border-color: var(--primary-color);
|
||||
}
|
||||
|
Reference in New Issue
Block a user