Skip to content

Commit

Permalink
fix(ui): ad darkmode for loading spinner
Browse files Browse the repository at this point in the history
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
  • Loading branch information
ernolf committed Oct 17, 2024
1 parent 352a8c2 commit 03a5fe2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion php/public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
--color-info: #0071ad;
--color-info-hover: #00aaef;
--color-border-maxcontrast: #7d7d7d;
--color-loader: #f3f3f3;
--border: .5px;
--border-hover: 2px;
--border-radius: 7px;
Expand All @@ -35,6 +36,7 @@
--color-error-text: #ff8080;
--color-info: #00aeff;
--color-info-hover: #33beff;
--color-loader: var(--color-border-maxcontrast);
--border-hover: var(--border);
}

Expand Down Expand Up @@ -385,7 +387,7 @@ label {
}

.loader {
border: 16px solid #f3f3f3;
border: 16px solid var(--color-loader);
border-radius: 50%;
border-top: 16px solid var(--color-nextcloud-blue);
width: 120px;
Expand Down

0 comments on commit 03a5fe2

Please sign in to comment.