diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-21 15:28:36 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-21 15:28:36 -0400 | 
| commit | 10e9f7acb867194d5f79e6254b4e8695ea5a6002 (patch) | |
| tree | 5db96d6c06b58510d6ab55abe9504f241734ec86 | |
| parent | e498e2d029095e6f15417a3d7dfa693c497e54eb (diff) | |
Fix the color of links in display footer notifications (#2151)
| -rw-r--r-- | ext/css/display.css | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/ext/css/display.css b/ext/css/display.css index f703be85..3e83b01b 100644 --- a/ext/css/display.css +++ b/ext/css/display.css @@ -1719,6 +1719,9 @@ button.footer-notification-close-button {  .tag-details-disambiguation-list>.tag-details-disambiguation:not(:last-child)::after {      content: var(--disambiguation-separator);  } +.footer-notification a { +    color: var(--notification-text-color); +}  /* Overlays */ |