1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 00:47:00 +02:00

fix button colors for dark mode (#26)

This commit is contained in:
Hasan Özbey
2020-05-27 19:51:55 +03:00
committed by GitHub
parent df32bae2b6
commit 72bb3ef5be

View File

@@ -6,8 +6,12 @@
background: #aaa;
}
.SubscriptionMenu-button--follow {
.Button--color(#de8e00, #fff2ae);
// TODO: dark mode
& when (@config-dark-mode = false) {
.Button--color(#de8e00, #fff2ae);
}
& when (@config-dark-mode = true) {
.Button--color(#784d00, #fbb94c);
}
}
.SubscriptionMenu .Dropdown-menu {
min-width: 260px;