Commit 83f4e1ed by Kyle Fiedler

Added fix for the bottom sequnce navigation

parent bd56116b
...@@ -3751,11 +3751,15 @@ nav.sequence-nav ul li.next a { ...@@ -3751,11 +3751,15 @@ nav.sequence-nav ul li.next a {
nav.sequence-nav ul li.next a:hover { nav.sequence-nav ul li.next a:hover {
background-color: none; } background-color: none; }
section.course-content {
position: relative; }
section.course-content div#seq_content { section.course-content div#seq_content {
margin-bottom: 60px; } margin-bottom: 60px; }
section.course-content nav.sequence-bottom { section.course-content nav.sequence-bottom {
bottom: -22.652px; position: absolute;
position: relative; } bottom: 0;
left: 50%;
margin-left: -50px; }
section.course-content nav.sequence-bottom ul { section.course-content nav.sequence-bottom ul {
background-color: #f2e7bf; background-color: #f2e7bf;
background-color: #f2e7bf; background-color: #f2e7bf;
...@@ -3768,10 +3772,7 @@ section.course-content nav.sequence-bottom ul { ...@@ -3768,10 +3772,7 @@ section.course-content nav.sequence-bottom ul {
border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0;
-webkit-box-shadow: inset 0 0 0 1px #faf7e9; -webkit-box-shadow: inset 0 0 0 1px #faf7e9;
-moz-box-shadow: inset 0 0 0 1px #faf7e9; -moz-box-shadow: inset 0 0 0 1px #faf7e9;
box-shadow: inset 0 0 0 1px #faf7e9; box-shadow: inset 0 0 0 1px #faf7e9; }
margin: 0 auto;
overflow: hidden;
width: 106px; }
section.course-content nav.sequence-bottom ul li { section.course-content nav.sequence-bottom ul li {
float: left; } float: left; }
section.course-content nav.sequence-bottom ul li.prev, section.course-content nav.sequence-bottom ul li.next { section.course-content nav.sequence-bottom ul li.prev, section.course-content nav.sequence-bottom ul li.next {
......
...@@ -235,14 +235,17 @@ nav.sequence-nav { ...@@ -235,14 +235,17 @@ nav.sequence-nav {
section.course-content { section.course-content {
position: relative;
div#seq_content { div#seq_content {
margin-bottom: 60px; margin-bottom: 60px;
} }
nav.sequence-bottom { nav.sequence-bottom {
bottom: (-(lh())); position: absolute;
position: relative; bottom: 0;
left: 50%;
margin-left: -50px;
ul { ul {
@extend .clearfix; @extend .clearfix;
...@@ -252,9 +255,6 @@ section.course-content { ...@@ -252,9 +255,6 @@ section.course-content {
border-bottom: 0; border-bottom: 0;
@include border-radius(3px 3px 0 0); @include border-radius(3px 3px 0 0);
@include box-shadow(inset 0 0 0 1px lighten(#f6efd4, 5%)); @include box-shadow(inset 0 0 0 1px lighten(#f6efd4, 5%));
margin: 0 auto;
overflow: hidden;
width: 106px;
li { li {
float: left; float: left;
......
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