#Better Windows Titlebar w/ macos traffic lights buttons (Snippet Bump)

1 messages · Page 1 of 1 (latest)

little aspen
#

I'm not an expert in CSS, but I added hover effects to buttons myself:

.winButtonClose-3Q8ZH5 > svg:hover {
    background: rgb(194, 66, 70) !important;
    background-size: contain !important;
    border-radius: var(--mactitlebar-button-border-radius);
}
.winButtonClose-3Q8ZH5 > svg > polygon {
    display: none !important;
}
.winButtonMinMax-3RsPUg > svg:hover {
    background: #2cb637 !important;
    background-size: contain !important;
    border-radius: var(--mactitlebar-button-border-radius);
}
.winButtonMinMax-3RsPUg:last-child > svg:hover {
    background: #a38123 !important;
    background-size: contain !important;
    border-radius: var(--mactitlebar-button-border-radius);
}
.winButtonMinMax-3RsPUg > svg > rect {
    display: none !important;
}
young tangle
#
.winButtonClose-3Q8ZH5 > svg:hover,
.winButtonMinMax-3RsPUg > svg:hover {
    filter: brightness(.6);
}

Got the same effect with this, since you are just reducing the color brighness

rough pendant
#

i think this broke