Firefox is built partially in CSS itself, and you are provided with a CSS file in which you can add tweaks. These override default settings. The problem is that I hadn't been able to find a listing of the names of features. From searching the web though, I did find what I needed.
The Status-4-Evar Add-on is built inside the Add-on bar. It has 3 sections, lined up horizontally, each with a separate id. Since it is inside the Add-On bar, I can give it a white top border, and give the Add-on bar a gray border. This will give a 3D finishing effect.
The code below is what I added to by userChrome.css file. I added the dark border, black but only .6 transparent. I also set the bottom border to zero, because for some reason setting the -moz-appearance added one, I'm not sure why. I then did the same thing for each of the 3 Status bar sections, but white instead of gray.
#addon-bar {
-moz-appearance: none !important;
border-top: 1px solid solid rgba(0,0,0,.6) !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status-bar{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status4evar-progress-widget{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status4evar-status-widget{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
-moz-appearance: none !important;
border-top: 1px solid solid rgba(0,0,0,.6) !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status-bar{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status4evar-progress-widget{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
#status4evar-status-widget{
-moz-appearance: none !important;
border-top: 1px solid white !important;
border-bottom: 0px solid rgba(0,0,0,.25) !important;
}
The two images below are before and after screenshots. Click to view the entire window for reference.
No comments:
Post a Comment