From 81447490c98a5f861141796e4a1fbb7cc126f0f3 Mon Sep 17 00:00:00 2001 From: insects Date: Thu, 13 Mar 2025 11:40:54 +0100 Subject: [PATCH] fix: show proper stripe colors for popped weather --- app/assets/stylesheets/application.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 2e6ae54..e1d8301 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -86,6 +86,17 @@ main { color: #63f0fd; } +#nm-list section.missing_reqs.popped { + background-color: #b5443aD2; + background-image: repeating-linear-gradient( + 45deg, + rgba(181, 68, 58, 0.47), + rgba(181, 68, 58, 0.47) 10px, + #b5443a 10px, + #b5443a 20px + ); +} + #nm-list section.popped:hover { background-color: rgba(181, 68, 58, 0.9); }