Log Message:
-----------
backport (sh002i): Bring back the green bar, which some students appear to worship.
Tags:
----
rel-2-4-dev
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.9.4.2
retrieving revision 1.9.4.3
diff -Lhtdocs/css/math.css -Lhtdocs/css/math.css -u -r1.9.4.2 -r1.9.4.3
--- 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 */
|