Commit 9e915213 by Giulio Gratta

fixing sequence arrow nav styling so that previous and next arrows more easily click-able

parent 111fd9b8
...@@ -2,7 +2,7 @@ nav.sequence-nav { ...@@ -2,7 +2,7 @@ nav.sequence-nav {
// TODO (cpennington): This doesn't work anymore. XModules aren't able to // TODO (cpennington): This doesn't work anymore. XModules aren't able to
// import from external sources. // import from external sources.
@extend .topbar; @extend .topbar;
margin: -4px 0 30px; margin: -4px 30px 30px 30px;
position: relative; position: relative;
border-bottom: none; border-bottom: none;
...@@ -35,7 +35,7 @@ nav.sequence-nav { ...@@ -35,7 +35,7 @@ nav.sequence-nav {
z-index: 99; z-index: 99;
border: 1px solid #ccc; border: 1px solid #ccc;
height: 44px; height: 44px;
margin: 0 30px; margin: 0;
@include linear-gradient(top, #ddd, #eee); @include linear-gradient(top, #ddd, #eee);
@include box-shadow(0 1px 3px rgba(0, 0, 0, .1) inset); @include box-shadow(0 1px 3px rgba(0, 0, 0, .1) inset);
} }
...@@ -259,9 +259,8 @@ nav.sequence-nav { ...@@ -259,9 +259,8 @@ nav.sequence-nav {
} }
&.prev { &.prev {
left: -10px; left: -40px;
border-radius: 35px 0 0 35px; border-radius: 35px 0 0 35px;
a { a {
background-image: url('../images/sequence-nav/previous-icon.png'); background-image: url('../images/sequence-nav/previous-icon.png');
background-position: center 15px; background-position: center 15px;
...@@ -269,7 +268,7 @@ nav.sequence-nav { ...@@ -269,7 +268,7 @@ nav.sequence-nav {
} }
&.next { &.next {
right: -10px; right: -40px;
border-radius: 0 35px 35px 0; border-radius: 0 35px 35px 0;
a { a {
......
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