make button selected outline color match theme

This commit is contained in:
joshuaboud 2021-07-16 11:28:35 -03:00
parent d1c3d72d67
commit f7753d2a0a
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E

View File

@ -35,6 +35,7 @@
--nav-border-radius: 4px;
--symlink-symbol-color: var(--navigation);
--list-view-header: var(--selected);
--outline-color: black;
}
[data-theme="dark"] {
@ -53,6 +54,11 @@
--nav-entry-color: #555F6E;
--symlink-symbol-color: var(--navigation);
--list-view-header: var(--container);
--outline-color: white;
}
button {
outline-color: var(--outline-color) !important;
}
html {