piwigo/template/yoga/default-colors.css
chrisaga e3c4d79f5b fix bugs 244: different display of checkbox in IE/firefox and 484: Missing onfocus/onblur
in some user section *.tpl and many admin section *.tpl 
	handle FORM elements with a behaviour (inputfix.htc) in IE
	the behaviour sets onfocus and onblur events too (no longer needed in *.tpl)
	other browsers use css selector :focus and [type=___]

git-svn-id: http://piwigo.org/svn/trunk@1491 68402e56-0260-453c-a942-63ccdbb3a9ee
2006-07-22 09:21:40 +00:00

91 lines
1.9 KiB
CSS

/* $Id$ */
/* others */
.pleaseNote {
background: #9c9c9c;
color: #ffff99;
padding: 1ex;
font-weight: bold;
}
#imageToolBar * {
background: inherit;
}
/* So that non-links are slightly greyed out */
#content .navigationBar {
color: #696969;
}
#content .pageNumberSelected {
color: #000000;
}
/* Tables & forms */
/* IE <= 6 is so bad with this that you can't merge with the following rule */
INPUT[type="text"], INPUT[type="password"], INPUT[type="button"],
INPUT[type="submit"], INPUT[type="reset"], INPUT[type="file"] {
color:black;
background-color: #d3d3d3; /* lightgrey */
}
INPUT.text, INPUT.password, INPUT.button,
INPUT.submit, INPUT.reset, INPUT.file,
SELECT, TEXTAREA {
color:black;
background-color: #d3d3d3; /* lightgrey */
}
/*INPUT.text.focus, INPUT.password.focus, INPUT.button.focus,
INPUT.submit.focus, INPUT.reset.focus, INPUT.file.focus,*/
INPUT:focus, SELECT:focus, TEXTAREA:focus, INPUT.focus, FORM .focus {
background-color: #f5f5f5; /* whitesmoke */
}
.errors { /* Errors display */
color: red;
background-color: #ffe1e1;
font-weight: bold;
text-align: left;
margin: 5px;
border: 1px solid red;
background-image: url(icon/admin/errors.png);
background-repeat: no-repeat;
background-position: top right;
padding: 10px 50px 10px 10px;
}
.errors UL LI
{
font-weight: normal;
}
/**
* Informations box in administration
*/
.infos {
text-align: left;
background-color: palegreen;
background-image: url(icon/admin/infos.png);
background-repeat: no-repeat;
background-position: top right;
color: darkgreen;
font-weight: bold;
margin: 5px;
padding: 10px 50px 10px 10px;
}
/**
* Header message like upgrade or adviser mode
*/
.header_msgs {
text-align:center;
font-weight: bold;
color:#696969; /* dimgray */
background-color: #d3d3d3;
margin: 1px;
padding: 1px;
}
LEGEND {
font-style: italic;
}