Skip to content

Commit

Permalink
fix bootstrap 5 variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
njaeggi committed Dec 4, 2023
1 parent 5815ba2 commit 1fb77bc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/assets/stylesheets/hitobito/customizable/_wagon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ html.turbolinks-progress-bar::before {


.btn {
@include buttonBackground($btn-background, $btn-background-highlight, $green, 0 1px 1px rgba(255,255,255,.75));
@include btn-bg($btn-bg, $btn-bg-hover, $green, 0 1px 1px rgba(255,255,255,.75));
color: $green;

&:hover,
Expand Down Expand Up @@ -167,17 +167,17 @@ html.turbolinks-progress-bar::before {
}

.btn-danger {
@include buttonBackground($btn-danger-background, $btn-danger-background-highlight);
@include btn-bg($btn-danger-bg, $btn-danger-hover-bg);
}

.btn-primary {
@include buttonBackground($btnPrimaryBackground, $btnPrimaryBackgroundHighlight);
@include btn-bg($btn-primary-hover-bg, $btn-primary-hover-bg);
}

.btn-group.open .btn.dropdown-toggle {
background: $btn-background-highlight;
background: $btn-hover-bg;
color: darken($green, 10%);
border-color: $btn-background-highlight;
border-color: $btn-hover-bg;
}

select,
Expand Down

0 comments on commit 1fb77bc

Please sign in to comment.