mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 10:07:59 +01:00
simplify statusbar CSS to prevent subelements from being coloured with security
state change colours
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Help file
|
* Help file {{{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
div.main {
|
div.main {
|
||||||
@@ -118,11 +118,10 @@ fieldset.paypal {
|
|||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/* }}}
|
||||||
* XUL
|
* XUL {{{
|
||||||
*
|
|
||||||
* TODO: move to the standard location: chrome/skin/vimperator.css...if I can
|
* TODO: move to the standard location: chrome/skin/vimperator.css...if I can
|
||||||
* ever convince MS ;-) -- djk
|
* ever convince MS :( -- djk
|
||||||
*/
|
*/
|
||||||
#vimperator-container {
|
#vimperator-container {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
@@ -171,23 +170,23 @@ fieldset.paypal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#vimperator-commandline {
|
#vimperator-commandline {
|
||||||
/* FIXME: black on white or default skin colors? */
|
/* FIXME: black on white or default skin colors? -moz-Field/-moz-FieldText */
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* colors for the statusbar */
|
/* colors for the statusbar */
|
||||||
/* #status-bar is included so it also get's the right color before the first setClass("insecure") */
|
/* #status-bar is included so it also gets the right color before the first setClass("insecure") */
|
||||||
#status-bar, .status_insecure, .status_insecure * {
|
#status-bar, #status-bar.status_insecure*/ {
|
||||||
background-color: black; /* light green */
|
background-color: black;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
.status_secure, .status_secure * {
|
#status-bar.status_secure {
|
||||||
background-color: #B0FF00; /* light green */
|
background-color: #B0FF00; /* light green */
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
.status_broken, .status_broken * {
|
#status-bar.status_broken {
|
||||||
background-color: #FF6060; /* light red */
|
background-color: #FF6060; /* light red */
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
@@ -201,4 +200,8 @@ fieldset.paypal {
|
|||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* }}}
|
||||||
|
*/
|
||||||
|
|
||||||
/* vim: set fdm=marker sw=4 ts=4 et: */
|
/* vim: set fdm=marker sw=4 ts=4 et: */
|
||||||
|
|||||||
Reference in New Issue
Block a user