MDL-23236 - adding current section styles

This commit is contained in:
Patrick Malley 2010-07-12 23:49:55 +00:00
parent a21ef213e4
commit 00ff58d449
4 changed files with 38 additions and 7 deletions

View File

@ -305,16 +305,16 @@ h2.headingblock {
padding: 2px;
}
#page-course-view-weeks .course-content .section.main {
.course-content .main {
background:#f3f8ed;
}
#page-course-view-weeks .course-content .section.current {
.course-content .current {
background:#69804e;
color:#fff;
}
#page-course-view-weeks .course-content .section .content {
.course-content .main .content {
padding: 10px;
background:#fff;
}

View File

@ -155,17 +155,17 @@ h2.headingblock {
color: #251c17;
}
.course-content .section.main {
.course-content .main {
background: #f7f5f1;
border: 1px solid #ddd
}
.course-content .section.current {
.course-content .current {
background: #da5013;
color: #fff;
}
.course-content .section.main .content {
.course-content .main .content {
background: #fff;
}

View File

@ -136,4 +136,21 @@ a:active {
.forumpost .topic {
background: #eee;
border-bottom: 1px solid #aaa;
}
}
/* Course
-------------------------------*/
.course-content .main {
border: 1px solid #eee;
background: #eee;
}
.course-content .current {
background: #1f5480;
color: #fff;
}
.course-content .main .content {
background: #fff;
}

View File

@ -105,6 +105,20 @@ a:hover {
padding: 2px 5px;
}
.course-content .main {
border: 1px solid #eee;
background: #eee;
}
.course-content .current {
background: #9ca7b4;
color: #fff;
}
.course-content .main .content {
background: #fff;
}
/* Forums
-----------------------------*/