Replace deprecated css variable

The `assignee` styles are long deprecated and will be removed anytime.
Use the equivalent replacement added in change Ifba52ecf25a1d8c3705d60655d9bcb45fa2669bd
and available since Gerrit v3.8.

This also fixes how the banner appears in dark mode on those Gerrit
versions since the dark mode variable override was removed.

Change-Id: Iaed9a658904d6566b8ec67ddc47705e479642c66
diff --git a/gr-messageoftheday/gr-messageoftheday-banner_html.js b/gr-messageoftheday/gr-messageoftheday-banner_html.js
index d4d959c..e5a2661 100644
--- a/gr-messageoftheday/gr-messageoftheday-banner_html.js
+++ b/gr-messageoftheday/gr-messageoftheday-banner_html.js
@@ -18,7 +18,7 @@
 export const htmlTemplate = Polymer.html`
 <style include="shared-styles">
   #container {
-    background-color: var(--assignee-highlight-color);
+    background-color: var(--line-item-highlight-color);
     display: flex;
     height: fit-content;
     justify-content: space-between;
OSZAR »