fix explorer widget dark theme (#10454)

* force use inherit colors

* comments
This commit is contained in:
Alan Ren
2020-05-16 10:29:05 -07:00
committed by GitHub
parent de994972db
commit 0523190fbb

View File

@@ -17,3 +17,13 @@ explorer-widget .list-row {
.explorer-widget .slick-cell {
border-right-style: none;
}
/**
* The widget could be put into container with class name "grid" and inherit colors unexpectedly,
* using this selector to force the cell to use the colors from parent elements
*/
.grid .explorer-widget .slick-cell {
color: inherit;
background-color: inherit;
border-color: inherit;
}