ErikReider / SwayNotificationCenter

A simple GTK based notification daemon for SwayWM
GNU General Public License v3.0
1.15k stars 59 forks source link

[Question] mpris player buttons style configuration #365

Closed godfuzz3r closed 5 months ago

godfuzz3r commented 5 months ago

May be it's a stupid quistion, but I can't find any example for configuring mpris player buttons in the center (previous track, play/pause, next track): image

I'd like to change them to white colors. Current css for mpris widget:

.widget-mpris {

}
.widget-mpris-player {
    padding: 3px 6px;
    margin: 5px;
}
.widget-mpris-title {
    font-weight: 300;
}

.widget-mpris-subtitle {
    font-size: 0.75rem
}
ErikReider commented 5 months ago

This should do the trick! :)

.widget-mpris-player > box > button:hover {

}
godfuzz3r commented 5 months ago

This should do the trick! :)

.widget-mpris-player > box > button:hover {

}

thank you very much