ksucpea / bettercanvas

Dark mode, better todo list, GPA calculator, and more for Canvas
MIT License
101 stars 27 forks source link

Assignments header is not dark mode #75

Open ds196 opened 4 weeks ago

ds196 commented 4 weeks ago

It seems like assignment details pages have been updated in some way, and now the top of the page is not dark mode.

Example: image

The dark mode inspector fixes most of it, but not the background: image

Output of the dark mode inspector: https://pastebin.com/DeFuv8rE

The closest reliable selector seems to be div#content.ic-Layout-contentMain: image

Best, David

ds196 commented 3 weeks ago

Fixed

/* Header */
div[data-testid="assignments-2-student-view"]>div[class$="-view"] {
    background-color: #161616;
}

/* Header text */
div[data-testid="assignments-2-student-view"] span[class$="-text"] {
    color: #aaa;
}

image

ksucpea commented 1 week ago

Thanks, I'll try adding this in