Reputation: 2757
What css selector should I use inside Stylish addon for chrome to change colors of the chrome's status bar (or status balloon) in the bottom?
Thank you in advance!
Upvotes: 4
Views: 646
Reputation: 6521
.statuspanel-label
{
color: InfoText !important;
border-color: rgba(0,0,0,.3) !important;
background: yellow !important;
}
Something along those lines ?
Upvotes: 1
Reputation: 16847
I think you are looking for the div
with the fbar
class.
.fbar{
background: #BADA55;
}
Upvotes: 1