From: Sam H. v. a. <we...@ma...> - 2008-03-04 15:56:56
|
Log Message: ----------- Bring back the green bar, which some students appear to worship. Modified Files: -------------- webwork2/htdocs/css: math.css Revision Data ------------- Index: math.css =================================================================== RCS file: /webwork/cvs/system/webwork2/htdocs/css/math.css,v retrieving revision 1.11 retrieving revision 1.12 diff -Lhtdocs/css/math.css -Lhtdocs/css/math.css -u -r1.11 -r1.12 --- htdocs/css/math.css +++ htdocs/css/math.css @@ -393,7 +393,14 @@ /* the info escape emits a DIV with this id. (not that the same DIV has class * "info-box" which is given above in the "template styles" section. Regardless, * it is emitted by WW code! */ -#InfoPanel { font-size: smaller; float: right; width: 40%; overflow: auto; } +#InfoPanel { + font-size: smaller; + float: right; + width: 40%; + overflow: auto; + margin-right: -1px; + background-color: #fff; +} /* tables used for laying out form fields shouldn't have a border */ table.FormLayout { border: 0; } @@ -411,7 +418,7 @@ /*ul.LinksMenu ul { list-style: none; margin-left: 0.5em; padding-left: 0; }*/ /* background styles for success and failure messages */ -div.ResultsWithoutError { color: #096; background-color: inherit; } /* green */ +div.ResultsWithoutError { color: inherit; background-color: #8F8; } /* green */ div.ResultsWithError { color: #C33; background-color: inherit; } /* red */ div.ResultsAlert { color: #F60; background-color: inherit; } /* orange */ |