Exclude dropdown items from night mode style

Makes dropdown menu look cleaner.

:not() selector did not work because the color selector button would be affected for some reason.
This commit is contained in:
Matthias M 2021-05-23 15:58:22 +02:00
parent 7cb20b3a9f
commit ef476b8fe3

View File

@ -53,3 +53,9 @@
padding-right: 15px; padding-right: 15px;
color: #e5e5e5; color: #e5e5e5;
} }
button.dropdown-item {
background: none;
box-shadow: none;
border: none;
}