From acdfbb72259178ee7d1461d0428ee733acb6467d Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 23 Nov 2020 14:47:50 -0500 Subject: [PATCH] Change the banner animation to go from the colored background to gray - that way the errors are still visible but you know they aren't new (Issue #86) --- pappl/resource-private.h | 4 ++-- pappl/style.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pappl/resource-private.h b/pappl/resource-private.h index 62558515..6f9d31d1 100644 --- a/pappl/resource-private.h +++ b/pappl/resource-private.h @@ -2581,8 +2581,8 @@ static const char * const style_css = "}\n" "\n" "@keyframes banner {\n" -" 0% { opacity: 1; }\n" -" 100% { opacity: 0; }\n" +" 0% { background: rgba(160,160,224,0.5); }\n" +" 100% { background: rgba(160,160,160,0.5); }\n" "}\n" "\n" "/* Form Tables */\n" diff --git a/pappl/style.css b/pappl/style.css index bb186042..f0fb15ea 100644 --- a/pappl/style.css +++ b/pappl/style.css @@ -321,8 +321,8 @@ h2.title { } @keyframes banner { - 0% { opacity: 1; } - 100% { opacity: 0; } + 0% { background: rgba(160,160,224,0.5); } + 100% { background: rgba(160,160,160,0.5); } } /* Form Tables */