Files
Piwigo/admin/themes/default/default-colors.css
plegall d0f73ea10f bug 1495: "infos" and "errors" blocks are more visible for the "roma" admin
theme. I have simply used the same CSS rules as for "clear" theme.

git-svn-id: http://piwigo.org/svn/trunk@5364 68402e56-0260-453c-a942-63ccdbb3a9ee
2010-03-25 22:03:28 +00:00

61 lines
1.1 KiB
CSS

/* So that non-links are slightly greyed out */
.content .navigationBar {
color: #999;
}
/* Tables & forms */
INPUT.text, INPUT.password, INPUT.button,
INPUT.submit, INPUT.reset, INPUT.file,
SELECT, TEXTAREA {
color:#999;
background-color: #666;
}
INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
background-color: #444; /* whitesmoke */
}
/* some theme set a border on INPUT which is not pretty for radio/checkbox */
INPUT[type="radio"], INPUT[type="checkbox"] {
border: none; /* <= Opera needs this */
}
INPUT.radio, INPUT.checkbox {
border: none; /* <= IE6 needs this */
}
/**
* Header message like upgrade or adviser mode
*/
.header_msgs {
text-align:center;
font-weight: bold;
color:#333;
background-color: transparent;
margin: 1px;
padding: 1px;
}
/**
* Header notes box in public/administration
*/
.header_notes {
border: 1px solid #666;
text-align: center;
background-image: url(icon/note.png);
background-repeat: no-repeat;
background-position: top left;
font-weight: bold;
margin: 14px;
padding: 5px 00px 0px 0px;
}
LEGEND {
font-weight: bold;
letter-spacing: 1px;
padding: 0 10px;
}