Skip to content

Commit

Permalink
FIX Search form border is now lighter, restore breadcrumbs variable o…
Browse files Browse the repository at this point in the history
…verrides
  • Loading branch information
robbieaverill committed Apr 2, 2019
1 parent ce4abbd commit 54a0550
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/css/main.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/scss/components/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ body > header {
}

.dropdown-menu {
border-color: rgba($gray-600, .4);
border-color: $gray-500;
margin-top: 0;

// Show focus on all links (override BS)
Expand Down Expand Up @@ -107,13 +107,13 @@ body > header {
.form-control,
button[type="submit"] {
@include form-controls-style();
border: 1px solid rgba($gray-600, .4);
border: 1px solid $gray-600;

// Special case for white/light-grey theme
body.theme-header-white &,
body.theme-header-light-grey & {
background: $input-bg;
border-color: rgba($gray-600, .4);
border-color: $gray-600;
}

&:focus {
Expand Down
2 changes: 1 addition & 1 deletion src/scss/components/pages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
margin-bottom: 0.7rem;

&-item {
font-size: font-size-sm;
font-size: $font-size-sm;
}
}
}
Expand Down
12 changes: 6 additions & 6 deletions src/scss/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1053,14 +1053,14 @@ $figure-caption-color: $gray-600 !default;

// Breadcrumbs

$breadcrumb-padding-y: .75rem !default;
$breadcrumb-padding-x: 1rem !default;
$breadcrumb-item-padding: .5rem !default;
$breadcrumb-padding-y: 0 !default; // Original: .75rem !default;
$breadcrumb-padding-x: 0 !default; // Original: 1rem !default;
$breadcrumb-item-padding: .8rem !default; // Original: .5rem !default;

$breadcrumb-margin-bottom: 1rem !default;
$breadcrumb-margin-bottom: 1.2rem !default; // Original: 1rem !default;

$breadcrumb-bg: $gray-100 !default;
$breadcrumb-divider-color: #ccc !default; // Original: $gray-600 !default;
$breadcrumb-bg: $white !default; // Original: $gray-100 !default;
$breadcrumb-divider-color: $gray-600 !default;
$breadcrumb-active-color: $gray-600 !default;
$breadcrumb-divider: quote("/") !default;

Expand Down

0 comments on commit 54a0550

Please sign in to comment.