Skip to content

Commit

Permalink
Fix dark/light mode footer message box colors (#1157)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuuuube authored Jul 1, 2024
1 parent dd7a4de commit fafa196
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions ext/css/display.css
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@
--progress-bar-indicator-color: var(--accent-color);
--entry-current-indicator-color: var(--accent-color);

--notification-text-color: #ffffff;
--notification-background-color: #333333;
--notification-background-color-light: #555555;
--notification-background-color-lighter: #666666;
--notification-shadow-color: rgba(0, 0, 0, 0.5);
--notification-text-color: #2f2f2f;
--notification-background-color: #f1f1f1;
--notification-background-color-light: #e1e1e1;
--notification-background-color-lighter: #bbbbbb;
--notification-shadow-color: rgba(255, 255, 255, 0.25);

--action-button-hover-color: #dddddd;
--action-button-active-color: #c1c1c1;
Expand Down Expand Up @@ -236,11 +236,11 @@
--progress-bar-indicator-color: var(--accent-color);
--entry-current-indicator-color: var(--accent-color);

--notification-text-color: #2f2f2f;
--notification-background-color: #e1e1e1;
--notification-background-color-light: #bbbbbb;
--notification-background-color-lighter: #aaaaaa;
--notification-shadow-color: rgba(255, 255, 255, 0.25);
--notification-text-color: #ffffff;
--notification-background-color: #333333;
--notification-background-color-light: #555555;
--notification-background-color-lighter: #666666;
--notification-shadow-color: rgba(0, 0, 0, 0.5);

--action-button-hover-color: #282828;
--action-button-active-color: #444444;
Expand Down
2 changes: 1 addition & 1 deletion ext/templates-display.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
<template id="tag-with-body-template"><span class="tag tag-has-body"><span class="tag-label"><span class="tag-label-content"></span></span><span class="tag-body"><span class="tag-body-content"></span></span></span></template>

<!-- Extra -->
<template id="footer-notification-template"><div class="footer-notification scrollbar-inverse">
<template id="footer-notification-template"><div class="footer-notification scrollbar">
<div class="footer-notification-body"></div>
<div class="footer-notification-close-button-container">
<button type="button" class="footer-notification-close-button"><span class="footer-notification-close-button-icon icon" data-icon="cross"></span></button>
Expand Down

0 comments on commit fafa196

Please sign in to comment.