Commit 1bb71a86 by Giulio Gratta

increasing visibility of tab navigation on site by making focus state very obvious

parent a5c9db08
...@@ -257,7 +257,6 @@ body.discussion { ...@@ -257,7 +257,6 @@ body.discussion {
font-size: 11px; font-size: 11px;
line-height: 16px; line-height: 16px;
color: #333; color: #333;
outline: 0;
} }
} }
...@@ -932,7 +931,6 @@ body.discussion { ...@@ -932,7 +931,6 @@ body.discussion {
font-size: 11px; font-size: 11px;
line-height: 16px; line-height: 16px;
color: #333; color: #333;
outline: 0;
} }
.post-search { .post-search {
...@@ -959,7 +957,6 @@ body.discussion { ...@@ -959,7 +957,6 @@ body.discussion {
font-size: 13px; font-size: 13px;
line-height: 20px; line-height: 20px;
color: #333; color: #333;
outline: 0;
cursor: pointer; cursor: pointer;
pointer-events: none; pointer-events: none;
@include transition(all .2s ease-out); @include transition(all .2s ease-out);
...@@ -1642,7 +1639,6 @@ body.discussion { ...@@ -1642,7 +1639,6 @@ body.discussion {
border-radius: 3px; border-radius: 3px;
box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset; box-shadow: 0 1px 3px rgba(0, 0, 0, .1) inset;
@include transition(border-color .1s); @include transition(border-color .1s);
outline: 0;
&:focus { &:focus {
border-color: #4697c1; border-color: #4697c1;
......
...@@ -84,6 +84,10 @@ a:link, a:visited { ...@@ -84,6 +84,10 @@ a:link, a:visited {
} }
} }
a:focus {
outline: 3px groove $black;
}
.content-wrapper { .content-wrapper {
width: flex-grid(12); width: flex-grid(12);
margin: 0 auto; margin: 0 auto;
......
...@@ -5,7 +5,7 @@ section.course-index { ...@@ -5,7 +5,7 @@ section.course-index {
border-right: 1px solid $border-color-2; border-right: 1px solid $border-color-2;
#open_close_accordion { #open_close_accordion {
display: none; //display: none;
} }
header { header {
...@@ -23,7 +23,7 @@ section.course-index { ...@@ -23,7 +23,7 @@ section.course-index {
h3 { h3 {
@include border-radius(0); @include border-radius(0);
margin: 0; margin: 0;
overflow: hidden; overflow: visible;
&:first-child { &:first-child {
border: none; border: none;
......
...@@ -66,6 +66,11 @@ ...@@ -66,6 +66,11 @@
width: 0; width: 0;
} }
a {
position: relative;
display: block;
}
a:hover { a:hover {
text-decoration: none; text-decoration: none;
} }
......
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