kaytrance
kaytrance

Reputation: 2757

Change statusbar in chrome

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

Answers (2)

JayD
JayD

Reputation: 6521

.statuspanel-label 
{
   color: InfoText !important;
   border-color: rgba(0,0,0,.3) !important;
   background: yellow !important;
}

Something along those lines ?

Upvotes: 1

A1rPun
A1rPun

Reputation: 16847

I think you are looking for the div with the fbar class.

.fbar{
    background: #BADA55;
}

Upvotes: 1

Related Questions