DarkNightMode / Dark-Night-Mode-Chrome-Extension

Dark Night Mode is a free open source chrome extension which turns all the websites you browse into dark/night mode so that the white bright light do not strain your eyes.
GNU General Public License v3.0
171 stars 26 forks source link

Google Top Bar #32

Open saravanabalagi opened 5 years ago

saravanabalagi commented 5 years ago

This is perhaps due to Google changing the styles recently, here's how google looks like when scrolled

image

Expected the top bar to turn to dark mode

saravanabalagi commented 5 years ago

CSS needs to be

.minidiv .sfbg {
    background: black;
    box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255);
}

instead of

.minidiv .sfbg {
    background: white;
    box-shadow: 0 1px 6px 0 rgba(32,33,36,0.28);
    height: 72px;
}