Editing Module:Sidebar/styles.css
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 148: | Line 148: | ||
} | } | ||
@media (max-width: | @media (max-width: 720px) { | ||
/* users have wide latitude to set arbitrary width and margin :( | /* users have wide latitude to set arbitrary width and margin :( | ||
"Super-specific" selector to prevent overriding this appearance by | "Super-specific" selector to prevent overriding this appearance by | ||
Line 172: | Line 172: | ||
/* Disable backgrounds via style attribute in night mode Eg.https://phabricator.wikimedia.org/F55243859 | /* Disable backgrounds via style attribute in night mode Eg.https://phabricator.wikimedia.org/F55243859 | ||
* https://en.wikipedia.org/w/index.php?title=Laissez-faire | * https://en.wikipedia.org/w/index.php?title=Laissez-faire | ||
* Less the usual @media screen because of @media print below | |||
*/ | */ | ||
@media screen { | @media screen { | ||
html.skin-theme-clientpref-night .sidebar-navbar { | |||
background: black !important; | |||
color: white !important; | |||
} | |||
html.skin-theme-clientpref-night .sidebar:not( .notheme ) .sidebar-list-title, | html.skin-theme-clientpref-night .sidebar:not( .notheme ) .sidebar-list-title, | ||
html.skin-theme-clientpref-night .sidebar:not( .notheme ) .sidebar-title-with-pretitle { | html.skin-theme-clientpref-night .sidebar:not( .notheme ) .sidebar-title-with-pretitle { | ||
Line 180: | Line 185: | ||
} | } | ||
html.skin-theme-clientpref-night .sidebar | html.skin-theme-clientpref-night .sidebar .sidebar-title-with-pretitle a { | ||
color: var( --color-progressive ) !important; | color: var( --color-progressive ) !important; | ||
} | } | ||
} | } | ||
@media | @media (prefers-color-scheme: dark) { | ||
html.skin-theme-clientpref-os .sidebar-navbar { | |||
background: black !important; | |||
color: white !important; | |||
} | |||
html.skin-theme-clientpref-os .sidebar:not( .notheme ) .sidebar-list-title, | html.skin-theme-clientpref-os .sidebar:not( .notheme ) .sidebar-list-title, | ||
html.skin-theme-clientpref-os .sidebar:not( .notheme ) .sidebar-title-with-pretitle { | html.skin-theme-clientpref-os .sidebar:not( .notheme ) .sidebar-title-with-pretitle { | ||
Line 191: | Line 200: | ||
} | } | ||
html.skin-theme-clientpref-os .sidebar | html.skin-theme-clientpref-os .sidebar .sidebar-title-with-pretitle a { | ||
color: var( --color-progressive ) !important; | color: var( --color-progressive ) !important; | ||
} | } |