Changeset - 55a3805cd3ae
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 15 years ago 2010-10-19 19:28:52
ohnobinki@ohnopublishing.net
Output prof/room directly into the result table per normaldotcom's request.
2 files changed with 12 insertions and 3 deletions:
0 comments (0 inline, 0 general)
class.schedule.php
Show inline comments
 
@@ -327,9 +327,11 @@ class Schedule
 
				      $table .= '            <td rowspan="' . $rowspan[$dayLoop]
 
					. '" class="' . $single_multi . ' class' . $j
 
					. '" title="prof: ' . htmlentities($section->getProf(), ENT_QUOTES)
 
					. ', room: ' . htmlentities($meeting->getLocation(), ENT_QUOTES) . '">'
 
					. htmlentities($class->getName(), ENT_QUOTES) . ' '
 
					. htmlentities($section->getLetter(), ENT_QUOTES)
 
					. ', room: ' . htmlentities($current_meeting->getLocation(), ENT_QUOTES) . '">'
 
					. htmlentities($class->getName(), ENT_QUOTES) . '-'
 
					. htmlentities($section->getLetter(), ENT_QUOTES) . "<br />\n"
 
					. '<span class="prof">' . htmlentities($section->getProf(), ENT_QUOTES) . "</span><br />\n"
 
					. '<span class="location">' . htmlentities($current_meeting->getLocation(), ENT_QUOTES) . "</span>\n"
 
					. "</td>\n";
 
				      $filled = TRUE;
 
				    }
styles/output.css
Show inline comments
 
@@ -55,6 +55,13 @@ td{
 
  border-style:none none solid solid;
 
}
 

	
 
.prof,
 
.location
 
{
 
    color: #444444;
 
    font-size: small;
 
}
 

	
 
/* Class Coloring */
 

	
 
.class0 { background: #69c76f; }
0 comments (0 inline, 0 general)