Fixed hidden course section not changing. Now hidden sections are evidenced by a dashed line all around hidden sections.

This commit is contained in:
andreabix
2005-07-28 11:57:31 +00:00
parent dd153b32fe
commit c793c3ff04
2 changed files with 23 additions and 2 deletions
+15 -2
View File
@@ -229,16 +229,29 @@ table.minicalendar tr td.weekend {
border-color: #C6BDA8;
}
#course-view .section .content {
#course-view .section.main .content {
border-color: #C6BDA8;
background-color: #FFFFFF;
}
#course-view .section .side {
#course-view .section.main .side {
border-color: #C6BDA8;
background-color: #FFFFFF;
}
#course-view .current .right.side,
#course-view .current .left.side {
background-color: #C6BDA8;
}
#course-view .section.hidden .content,
#course-view .section.hidden .side {
border-color:#C6BDA8;
}
/***
*** Tabs
***/
+8
View File
@@ -183,3 +183,11 @@ table.calendarmonth tr td {
border-right-width: 1px;
border-right-style: dashed;
}
#course-view .section.hidden .content,
#course-view .section.hidden .side {
border-width: 1px;
border-style: dashed;
}