Merge pull request #19 from algolia/lighter-default-colors
Lighter default colors
This commit is contained in:
commit
88f6ceb3b9
2 changed files with 10 additions and 10 deletions
|
|
@ -1,12 +1,12 @@
|
|||
$color-border: #3A3A3A;
|
||||
$color-border-light: lighten($color-border, 15%);
|
||||
$color-category-header: #333333;
|
||||
$color-highlight-header: #3A3A3A;
|
||||
$color-highlight: #448CDE;
|
||||
$color-selected-background: #CECECE;
|
||||
$color-selected-text: #0000FF;
|
||||
$color-left-column-bg: #CECECE;
|
||||
$color-left-column: #4E4726;
|
||||
$color-category-header-background: #3C4658;
|
||||
$color-highlight-header-background: lighten($color-category-header-background, 15%);
|
||||
$color-highlight-text: #0064E1;
|
||||
$color-selected-background: #E7EDF3;
|
||||
$color-selected-text: #0064E1;
|
||||
$color-left-column-bg: #F1F3F5;
|
||||
$color-left-column: #555;
|
||||
|
||||
$breakpoint-medium: 568px;
|
||||
$breakpoint-large: 768px;;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
// Main category headers
|
||||
.ads-suggestion--category-header {
|
||||
display: none;
|
||||
background-color: $color-category-header;
|
||||
background: $color-category-header-background;
|
||||
color: white;
|
||||
font-weight: 600;
|
||||
padding: 5px 10px;
|
||||
|
|
@ -43,13 +43,13 @@
|
|||
// Highlight
|
||||
.ads-suggestion--highlight {
|
||||
padding: 0;
|
||||
color: $color-highlight;
|
||||
color: $color-highlight-text;
|
||||
background: none;
|
||||
font-weight: 600;
|
||||
// Highlight the background in header
|
||||
.ads-suggestion--category-header & {
|
||||
color: inherit;
|
||||
background-color: $color-highlight-header;
|
||||
background: $color-highlight-header-background;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue