gtk-4: tooltips

This commit is contained in:
He4eT 2024-08-10 10:45:44 +02:00
commit e0c7b940bf

View file

@ -63,17 +63,34 @@ popover.menu.background > contents .linked button:last-child{ margin-right: 4px;
/* Tooltips */ /* Tooltips */
tooltip { padding: 4px; border-radius: 0.0px; box-shadow: none; } tooltip {
tooltip.background { background-color: alpha(black,0.9); background-clip: padding-box; border: 1px solid alpha(white,0.2); color: white; } padding: 4px;
tooltip > box { border-spacing: 6px; } border-radius: 0.0px;
box-shadow: none;
}
tooltip.background {
background-color: @gtk_bg_color;
background-clip: padding-box;
color: @gtk_fg_color;
}
tooltip > box {
border-spacing: 6px;
}
/* Entry */ /* Entry */
searchbar > revealer > box entry{ margin: 8px;} searchbar > revealer > box entry{ margin: 8px;}
spinbutton > text {
padding: 6px;
}
spinbutton.vertical > text, spinbutton.vertical > text,
spinbutton:not(.vertical), spinbutton:not(.vertical),
entry { outline: 0 solid transparent; outline-offset: 4px; } entry {
outline: 0 solid transparent;
outline-offset: 4px;
}
spinbutton.vertical > text:focus-within, spinbutton.vertical > text:focus-within,
spinbutton:focus-within:not(.vertical), spinbutton:focus-within:not(.vertical),