Commit e1256ce9 authored by Aron Carroll's avatar Aron Carroll Committed by Randall Leeds

Improve tab styles on the authentication forms

Previously the active tab would be red, which could be confused with our
red anchor text and make the other tab look disabled. The new design
makes all text gray but adds an "active" border below the button.
parent 94ed17cd
...@@ -416,7 +416,7 @@ blockquote { ...@@ -416,7 +416,7 @@ blockquote {
background-color: $body-background; background-color: $body-background;
border: 1px none $gray-lighter; border: 1px none $gray-lighter;
border-bottom-style: solid; border-bottom-style: solid;
padding: 1em; padding: 0.9em 1em 1.1em;
& > li { & > li {
display: inline-block; display: inline-block;
...@@ -427,10 +427,21 @@ blockquote { ...@@ -427,10 +427,21 @@ blockquote {
font-weight: bold; font-weight: bold;
color: $gray-dark; color: $gray-dark;
cursor: pointer; cursor: pointer;
border-bottom: 3px solid $gray-lighter;
padding-left: 2 / 13 * 1em;
padding-right: 2 / 13 * 1em;
padding-bottom: 3 / 13 * 1em;
}
&:active a {
position: relative;
top: 1 / 13 * 1em;
padding-bottom: 2 / 13 * 1em;
} }
&.active a, &:active a { &:active a,
color: $hypothered; &.active a {
border-color: $hypothered-desat;
} }
&:before { &:before {
...@@ -439,8 +450,7 @@ blockquote { ...@@ -439,8 +450,7 @@ blockquote {
} }
&:first-child:before { &:first-child:before {
content: ""; content: none;
margin: 0;
} }
} }
} }
......
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