Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/styles/_bootstrap_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ $warning: #ec9433 !default; // Orange
$danger: #cf4444 !default; // Red
$light: #f8f9fa !default; // As Bootstrap $gray-100
$dark: darken(#2b4e72, 17%) !default; // Blue gray (darker)
$highlightColor: rgba(30, 111, 144, 0.3) !default; // $info color with 0.3 opacity

// Add new semantic colors here (you don't need to add existing semantic colors)
$global-custom-semantic-colors: (
Expand Down
2 changes: 2 additions & 0 deletions src/styles/_bootstrap_variables_mapping.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@

--bs-border-radius-lg: #{$bs-border-radius-lg};

--bs-highlight-color: #{$highlightColor};

}

// Some Bootstrap CSS variables are tied to classes
Expand Down
2 changes: 2 additions & 0 deletions src/styles/_global-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -559,3 +559,5 @@ ngb-tooltip-window {
// We use underline to discern link from text as we can't make color lighter on a white bg
text-decoration: underline;
}

ds-search-filter .facet-filter:has([type="checkbox"]:checked) { background: var(--bs-highlight-color); }
Loading