Skip to content

Commit

Permalink
Merge pull request #466 from getodk/warning-light
Browse files Browse the repository at this point in the history
Use different warning color for background color
  • Loading branch information
matthew-white authored May 18, 2021
2 parents 031e67d + 3df911d commit 4f366fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/assets/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ $color-info: #31708f;
$color-info-light: #d9edf7;
$color-info-dark: darken($color-info, 10%);
$color-warning: #f29e00;
$color-warning-light: #f5c93b;
$color-danger: #de2a11;
$color-danger-light: #ffe6e6;
$color-danger-dark: darken($color-danger, 10%);
Expand Down
2 changes: 1 addition & 1 deletion src/components/form-attachment/popups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ $popup-width: 300px;
#form-attachment-popups-unmatched {
$padding: 10px;

background-color: $color-warning;
background-color: $color-warning-light;
font-size: 12px;
line-height: 14px;
margin-bottom: 17px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export default {
}

.modal-warnings {
background-color: $color-warning;
background-color: $color-warning-light;
margin-bottom: 15px;
padding: 15px;

Expand Down

0 comments on commit 4f366fd

Please sign in to comment.