diff --git a/app/packs/stylesheets/decidim/decidim_application.scss b/app/packs/stylesheets/decidim/decidim_application.scss index b4c3376..47e5116 100644 --- a/app/packs/stylesheets/decidim/decidim_application.scss +++ b/app/packs/stylesheets/decidim/decidim_application.scss @@ -3,6 +3,7 @@ --bg-finished: #f6f5fc; --progressing: #165922; --bg-progressing: #c4ecd0; + --bg-progressing-2: #f6fdf9; } span.label.finished { @@ -21,6 +22,6 @@ div.flash.finished { } div.flash.progressing { - background-color: var(--bg-progressing); + background-color: var(--bg-progressing-2); border-color: var(--progressing); } diff --git a/spec/features/proposals_answers_spec.rb b/spec/features/proposals_answers_spec.rb index 1b5c019..73cf0ff 100644 --- a/spec/features/proposals_answers_spec.rb +++ b/spec/features/proposals_answers_spec.rb @@ -93,7 +93,7 @@ it "views the overrided colors" do within "main" do # Capybara understands rgba instead of hexadecimal colors - expect(page.find("div.flash.progressing")).to match_style("background-color" => "rgba(196, 236, 208, 1)") + expect(page.find("div.flash.progressing")).to match_style("background-color" => "rgba(246, 253, 249, 1)") expect(page.find("div.flash.progressing")).to match_style("border-color" => "rgb(22, 89, 34)") end end