Commit 9accb962 by Torkel Ödegaard

ux(sass): temp fix for dashboard edit tabs

parent 4ab3542c
...@@ -91,7 +91,7 @@ $form-sizes: ( ...@@ -91,7 +91,7 @@ $form-sizes: (
// Typography // Typography
// ------------------------- // -------------------------
$font-family-sans-serif: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
$font-family-serif: Georgia, "Times New Roman", Times, serif; $font-family-serif: Georgia, "Times New Roman", Times, serif;
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
$font-family-base: $font-family-sans-serif !default; $font-family-base: $font-family-sans-serif !default;
...@@ -127,7 +127,7 @@ $lead-font-size: 1.25rem !default; ...@@ -127,7 +127,7 @@ $lead-font-size: 1.25rem !default;
$lead-font-weight: 300 !default; $lead-font-weight: 300 !default;
$headings-margin-bottom: ($spacer / 2) !default; $headings-margin-bottom: ($spacer / 2) !default;
$headings-font-family: inherit !default; $headings-font-family: "Open Sans" !default;
$headings-font-weight: 400 !default; $headings-font-weight: 400 !default;
$headings-line-height: 1.1 !default; $headings-line-height: 1.1 !default;
......
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
// Actual tabs (as links) // Actual tabs (as links)
.nav-tabs > li > a { .nav-tabs > li > a {
color: $text-color;
padding-top: 8px; padding-top: 8px;
padding-bottom: 8px; padding-bottom: 8px;
line-height: $line-height-base; line-height: $line-height-base;
...@@ -64,8 +65,10 @@ ...@@ -64,8 +65,10 @@
&:hover, &:hover,
&:focus { &:focus {
border-color: $divider-border-color; border-color: $divider-border-color;
color: $link-color;
} }
} }
// Active state, and it's :hover/:focus to override normal :hover/:focus // Active state, and it's :hover/:focus to override normal :hover/:focus
.nav-tabs > .active > a, .nav-tabs > .active > a,
.nav-tabs > .active > a:hover, .nav-tabs > .active > a:hover,
...@@ -85,3 +88,27 @@ ...@@ -85,3 +88,27 @@
.tab-content > .active { .tab-content > .active {
display: block; display: block;
} }
// temp hack
.modal-body, .gf-box {
.nav-tabs {
border-bottom: none;
}
.nav-tabs > li > a {
border: none;
border-radius: 0;
&:hover,
&:focus {
border-bottom: 1px solid $blue;
}
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
border: none;
border-bottom: 1px solid $blue;
color: $link-color;
}
}
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