You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
Purples are used for the left side bar on small screens including cell phones, and small tablets. Does not match desktops or other colors in theme (dark slate blue etc). Shade #8c489f is particularly bright and unpleasant.
Left menu that is always visible on desktops is blue.
Problem code appears to be in pivot.css ul.off-canvas-list li label { background: #c3c3e5; border: none; color: #222; } ul.off-canvas-list li a { border: none; background: transparent; color: #8c489f; } ul.off-canvas-list li a:hover { background: #eeffee; } .right-off-canvas-menu, .left-off-canvas-menu { background: #f1f0ff; }
###Potential improvement
A branch with a grayscale sidebar would be very welcome, or separate CSS in which to set all colors in the theme.
The text was updated successfully, but these errors were encountered:
You can override colors by creating the page MediaWiki:Pivot.css, then using your browser's web inspector to find the css style names to target, by adding something like:
ul.off-canvas-list li label {
background: #c3c3c3;
}
.right-off-canvas-menu, .left-off-canvas-menu {
background: #f9f9f9;
}
ul.off-canvas-list li a {
color: #2f2f2f;
}
(Or whatever colors you prefer, the purples aren't overbright on my device screens, so not sure why they are on yours. Easy to override for anyone that wants to override it.)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Setup
Issue
Purples are used for the left side bar on small screens including cell phones, and small tablets. Does not match desktops or other colors in theme (dark slate blue etc). Shade #8c489f is particularly bright and unpleasant.
Left menu that is always visible on desktops is blue.
Problem code appears to be in pivot.css
ul.off-canvas-list li label { background: #c3c3e5; border: none; color: #222; } ul.off-canvas-list li a { border: none; background: transparent; color: #8c489f; } ul.off-canvas-list li a:hover { background: #eeffee; } .right-off-canvas-menu, .left-off-canvas-menu { background: #f1f0ff; }
###Potential improvement
A branch with a grayscale sidebar would be very welcome, or separate CSS in which to set all colors in the theme.
The text was updated successfully, but these errors were encountered: