From: dpvc v. a. <we...@ma...> - 2005-06-06 00:48:03
|
Log Message: ----------- Added styles to make Parser's ans_array methods show up properly in the student answer and correct answer blocks. The style for the td in the results table causes havoc for tables that are nested in there. This solves is for Parser produced answer arrays, but it is still messed up for the standard ans_array() and for the output of tth (the formatted text option). The way the style for this table is handled should probably be changed. Perhaps if we could override for td's in tables nested in the results area? I don't know enough about CSS to figure that out. Modified Files: -------------- webwork-modperl/htdocs/css: ur.css Revision Data ------------- Index: ur.css =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/css/ur.css,v retrieving revision 1.1 retrieving revision 1.2 diff -Lhtdocs/css/ur.css -Lhtdocs/css/ur.css -u -r1.1 -r1.2 --- htdocs/css/ur.css +++ htdocs/css/ur.css @@ -122,6 +122,14 @@ padding: 2px 5px 2px 5px; background-color: #DDDDDD; } +/* + * override above settings in tables used to display ans_array results + */ +table.ArrayLayout td { + border-style: none; + border-width: 0px; + padding: 0px; +} table.attemptResults td.Message { text-align: left; padding: 2px 5px 2px 5px; |