1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

Add advanced setting to force a light/dark theme

Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/issues/401#issuecomment-703075797

Name: `uiTheme`
Default: `unset`
Values:
- `unset`: uBO will pick the theme according to
  browser's `prefers-color-scheme`
- `light`: force light scheme
- `dark`: force dark theme

This advanced setting is not to be documented yet as
it has not been decided this is a long term solution.
This commit is contained in:
Raymond Hill 2020-10-03 07:13:40 -04:00
parent b179dc0268
commit e3a6d8465f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
5 changed files with 31 additions and 18 deletions

View File

@ -14,7 +14,7 @@
padding-left: 0.5em; padding-left: 0.5em;
} }
#domInspector ul { #domInspector ul {
background-color: #fff; background-color: var(--default-surface);
margin: 0; margin: 0;
padding-left: 1em; padding-left: 1em;
} }
@ -37,7 +37,7 @@
color: #aaa; color: #aaa;
} }
#domInspector li > span:first-child { #domInspector li > span:first-child {
color: #000; color: var(--default-ink);
cursor: default; cursor: default;
font-size: 1rem; font-size: 1rem;
margin-right: 0; margin-right: 0;

View File

@ -12,7 +12,7 @@ textarea {
width: 100%; width: 100%;
} }
.permatoolbar { .permatoolbar {
background-color: white; background-color: var(--default-surface);
border: 0; border: 0;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
@ -34,7 +34,7 @@ textarea {
fill: #5F9EA0; fill: #5F9EA0;
} }
.permatoolbar .button:hover { .permatoolbar .button:hover {
background-color: #eee; background-color: var(--default-surface-hover);
} }
#pageSelector { #pageSelector {
min-width: 10em; min-width: 10em;
@ -135,7 +135,7 @@ body[dir="rtl"] #pageSelector {
transform: scaleY(1); transform: scaleY(1);
} }
#netInspector #filterExprPicker { #netInspector #filterExprPicker {
background-color: white; background-color: var(--default-surface);
border: 1px solid gray; border: 1px solid gray;
display: none; display: none;
position: absolute; position: absolute;
@ -445,7 +445,7 @@ body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="2"] b
} }
#popupContainer { #popupContainer {
background: white; background-color: var(--default-surface);
border: 1px solid gray; border: 1px solid gray;
bottom: 0; bottom: 0;
display: none; display: none;
@ -481,7 +481,7 @@ body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="2"] b
position: relative; position: relative;
} }
#modalOverlay > div > div:nth-of-type(1) { #modalOverlay > div > div:nth-of-type(1) {
background-color: white; background-color: var(--default-surface);
border: 0; border: 0;
box-sizing: border-box; box-sizing: border-box;
padding: 1em; padding: 1em;
@ -490,13 +490,13 @@ body.colorBlind #netFilteringDialog > .panes > .details > div[data-status="2"] b
width: 90vw; width: 90vw;
} }
#modalOverlay > div > div:nth-of-type(2) { #modalOverlay > div > div:nth-of-type(2) {
stroke: #000; stroke: var(--default-ink);
stroke-width: 3px; stroke-width: 3px;
position: absolute; position: absolute;
width: 1.6em; width: 1.6em;
height: 1.6em; height: 1.6em;
bottom: calc(100% + 2px); bottom: calc(100% + 2px);
background-color: white; background-color: var(--default-surface);
} }
body[dir="ltr"] #modalOverlay > div > div:nth-of-type(2) { body[dir="ltr"] #modalOverlay > div > div:nth-of-type(2) {
right: 0; right: 0;
@ -505,7 +505,7 @@ body[dir="rtl"] #modalOverlay > div > div:nth-of-type(2) {
left: 0; left: 0;
} }
#modalOverlay > div > div:nth-of-type(2):hover { #modalOverlay > div > div:nth-of-type(2):hover {
background-color: #eee; background-color: var(--default-surface-hover);
} }
#modalOverlay > div > div:nth-of-type(2) > * { #modalOverlay > div > div:nth-of-type(2) > * {
pointer-events: none; pointer-events: none;

View File

@ -77,6 +77,7 @@ const µBlock = (( ) => { // jshint ignore:line
uiPopupConfig: 'undocumented', uiPopupConfig: 'undocumented',
uiFlavor: 'unset', uiFlavor: 'unset',
uiStyles: 'unset', uiStyles: 'unset',
uiTheme: 'unset',
updateAssetBypassBrowserCache: false, updateAssetBypassBrowserCache: false,
userResourcesLocation: 'unset', userResourcesLocation: 'unset',
}; };

View File

@ -160,7 +160,10 @@ const onMessage = function(request, sender, callback) {
break; break;
case 'uiStyles': case 'uiStyles':
response = µb.hiddenSettings.uiStyles; response = {
uiStyles: µb.hiddenSettings.uiStyles,
uiTheme: µb.hiddenSettings.uiTheme,
};
break; break;
case 'userSettings': case 'userSettings':

View File

@ -93,6 +93,22 @@ DOMListFactory.nodeFromSelector = function(selector) {
/******************************************************************************/ /******************************************************************************/
{ {
// https://github.com/uBlockOrigin/uBlock-issues/issues/1044
// Offer the possibility to bypass uBO's default styling
vAPI.messaging.send('uDom', { what: 'uiStyles' }).then(response => {
if ( typeof response !== 'object' || response === null ) { return; }
if ( response.uiTheme !== 'unset' ) {
if ( response.uiTheme === 'light' ) {
root.classList.remove('dark');
} else if ( response.uiTheme === 'dark' ) {
root.classList.add('dark');
}
}
if ( response.uiStyles !== 'unset' ) {
document.body.style.cssText = response;
}
});
const root = DOMListFactory.root = document.querySelector(':root'); const root = DOMListFactory.root = document.querySelector(':root');
if ( vAPI.webextFlavor.soup.has('mobile') ) { if ( vAPI.webextFlavor.soup.has('mobile') ) {
root.classList.add('mobile'); root.classList.add('mobile');
@ -105,13 +121,6 @@ DOMListFactory.nodeFromSelector = function(selector) {
if ( window.matchMedia('(prefers-color-scheme: dark)').matches ) { if ( window.matchMedia('(prefers-color-scheme: dark)').matches ) {
root.classList.add('dark'); root.classList.add('dark');
} }
// https://github.com/uBlockOrigin/uBlock-issues/issues/1044
// Offer the possibility to bypass uBO's default styling
vAPI.messaging.send('uDom', { what: 'uiStyles' }).then(response => {
if ( typeof response !== 'string' || response === 'unset' ) { return; }
document.body.style.cssText = response;
});
} }
/******************************************************************************/ /******************************************************************************/