Commit aec5e8a6 by Tom Giannattasio

new sequence nav; new courseware sidebar; new textbook styling; fixed gradebook glitch

parent bec33049
...@@ -6,6 +6,9 @@ div.gradebook-wrapper { ...@@ -6,6 +6,9 @@ div.gradebook-wrapper {
section.gradebook-content { section.gradebook-content {
@extend .content; @extend .content;
display: block;
width: 100%;
@include clearfix;
.student-search { .student-search {
padding: 0 20px 0 15px; padding: 0 20px 0 15px;
......
...@@ -69,7 +69,7 @@ div.info-wrapper { ...@@ -69,7 +69,7 @@ div.info-wrapper {
section.handouts { section.handouts {
@extend .sidebar; @extend .sidebar;
@include border-radius(0 4px 4px 0); @include border-radius(0 4px 4px 0);
border-right: 0; border-left: 1px solid #ddd;
@include box-shadow(none); @include box-shadow(none);
font-size: 14px; font-size: 14px;
......
div.book-wrapper { div.book-wrapper {
@extend .table-wrapper; @extend .table-wrapper;
#open_close_accordion {
display: none;
}
section.book-sidebar { section.book-sidebar {
@extend .sidebar; @extend .sidebar;
@extend .tran; @extend .tran;
@include box-sizing(border-box); @include box-sizing(border-box);
padding: 10px 0;
border-radius: 3px 0 0 3px;
border-right: 1px solid #ccc;
ul#booknav { ul#booknav {
font-size: em(14); font-size: em(14);
...@@ -50,7 +57,7 @@ div.book-wrapper { ...@@ -50,7 +57,7 @@ div.book-wrapper {
div.hitarea { div.hitarea {
background-image: url('../images/treeview-default.gif'); background-image: url('../images/treeview-default.gif');
margin-left: -22px;
position: relative; position: relative;
top: 4px; top: 4px;
...@@ -63,27 +70,23 @@ div.book-wrapper { ...@@ -63,27 +70,23 @@ div.book-wrapper {
ul { ul {
background: none; background: none;
margin-top: lh(.25); margin-top: lh(.25);
border-top: 1px solid $border-color;
padding-top: lh(.25); padding-top: lh(.25);
li { li {
padding-bottom: lh(.25); padding-bottom: 10px;
} }
} }
} }
> li { > li {
border-bottom: 1px solid $border-color; padding: 5px 6px;
padding: 7px 7px 7px 30px; margin: 0 16px 5px 25px;
} }
} }
} }
section.book { section.book {
@extend .content; @extend .content;
padding-bottom: 0;
padding-right: 0;
padding-top: 0;
nav { nav {
@extend .clearfix; @extend .clearfix;
......
...@@ -54,7 +54,7 @@ h1.top-header { ...@@ -54,7 +54,7 @@ h1.top-header {
text-transform: none; text-transform: none;
font-family: $sans-serif; font-family: $sans-serif;
text-align: left; text-align: left;
font-style: italic; font-style: normal;
} }
a { a {
......
...@@ -12,6 +12,7 @@ div.course-wrapper { ...@@ -12,6 +12,7 @@ div.course-wrapper {
section.course-content { section.course-content {
@extend .content; @extend .content;
padding-top: 0 !important;
@include border-radius(0 4px 4px 0); @include border-radius(0 4px 4px 0);
h1 { h1 {
...@@ -45,6 +46,7 @@ div.course-wrapper { ...@@ -45,6 +46,7 @@ div.course-wrapper {
ol.vert-mod { ol.vert-mod {
padding: 0; padding: 0;
margin: 0; margin: 0;
line-height: 1.4;
> li { > li {
@extend .clearfix; @extend .clearfix;
...@@ -210,3 +212,12 @@ div.course-wrapper { ...@@ -210,3 +212,12 @@ div.course-wrapper {
} }
} }
} }
.xmodule_VideoModule {
margin-bottom: 30px;
}
...@@ -90,8 +90,7 @@ section.course-index { ...@@ -90,8 +90,7 @@ section.course-index {
li { li {
border-bottom: 0; border-bottom: 0;
@include border-radius(0); @include border-radius(0);
margin-bottom: lh(.5); margin-bottom: 4px;
line-height: 1.4;
a { a {
background: transparent; background: transparent;
...@@ -105,20 +104,18 @@ section.course-index { ...@@ -105,20 +104,18 @@ section.course-index {
font-weight: bold; font-weight: bold;
font-family: $sans-serif; font-family: $sans-serif;
margin-bottom: 0; margin-bottom: 0;
line-height: 1.3;
span.subtitle { span.subtitle {
color: #666; color: #666;
font-size: 13px;
font-weight: normal; font-weight: normal;
display: block; display: block;
} }
} }
&:hover { &:hover {
&:after { background: #fff;
opacity: 1;
right: 15px;
@include transition();
}
> a p { > a p {
color: #333; color: #333;
...@@ -138,10 +135,23 @@ section.course-index { ...@@ -138,10 +135,23 @@ section.course-index {
&.active { &.active {
font-weight: bold; font-weight: bold;
&:after {
content: '›';
position: absolute;
top: 50%;
right: 20px;
margin-top: -13px;
font-size: 30px;
font-weight: normal;
color: #333;
opacity: 0;
@include transition();
}
> a { > a {
border: none; border: 1px solid #bbb;
@include box-shadow(0 1px 0 rgba(255, 255, 255, .35) inset); @include box-shadow(0 1px 0 rgba(255, 255, 255, .35) inset);
@include linear-gradient(top, #ddd, #bbb); @include linear-gradient(top, #e6e6e6, #d6d6d6);
&:after { &:after {
opacity: 1; opacity: 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment