Commit f9071f8c authored by Randall Leeds's avatar Randall Leeds

add a border to tab panes, seamless w/ tabs

parent 30e8855e
...@@ -197,7 +197,7 @@ svg { -webkit-tap-highlight-color: rgba(255, 255, 255, 0); } ...@@ -197,7 +197,7 @@ svg { -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }
.sheet { .sheet {
border: solid 1px $grayLighter; border: solid 1px $grayLighter;
margin-top: 2em; margin-top: 2em;
padding: 1em; padding-top: 1em;
position: absolute; position: absolute;
width: 100%; width: 100%;
} }
......
...@@ -128,8 +128,16 @@ label { ...@@ -128,8 +128,16 @@ label {
} }
.tab-pane { .tab-pane {
background: $bodyBackground;
border: solid thin $grayLighter;
display: none; display: none;
&.active { display: inherit !important; } margin-top: -1px; // Pull up and under tabs
padding: 1em;
position: relative;
&.active {
display: inherit !important;
}
} }
.red { .red {
...@@ -314,6 +322,7 @@ label { ...@@ -314,6 +322,7 @@ label {
.nav-tabs { .nav-tabs {
@include pie-clearfix; @include pie-clearfix;
margin: 0 .5em;
& > li > a { & > li > a {
cursor: pointer; cursor: pointer;
......
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