Skip to content

Commit

Permalink
Change the banner animation to go from the colored background to gray…
Browse files Browse the repository at this point in the history
… - that

way the errors are still visible but you know they aren't new (Issue #86)
  • Loading branch information
michaelrsweet committed Nov 23, 2020
1 parent 411c8a2 commit acdfbb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pappl/resource-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions pappl/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit acdfbb7

Please sign in to comment.