rosenrot-browser

A hackable browser based on Webkitgtk
Log | Files | Refs | README

commit 86fef30c22582896f468b9cb1b1c8dbd3043e1f5
parent 95829b06a27c27106b94660fe1cc5d48c5887f9e
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Sat, 11 Feb 2023 14:40:15 +0100

tweak: proton stylesheet

Diffstat:
Mplugins/style/style.c | 2+-
Mplugins/style/style.h | 2+-
Mplugins/style/style.js | 18++++++++++++++++++
3 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/plugins/style/style.c b/plugins/style/style.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#define STYLE_N 794 + 1 +#define STYLE_N 1358 + 1 void read_style_js(char* string){ FILE *fp=fopen("/home/loki/Documents/core/software/fresh/C/rose-browser/rose-browser/plugins/style/style.js", "r"); diff --git a/plugins/style/style.h b/plugins/style/style.h @@ -1,7 +1,7 @@ #ifndef STYLE #define STYLE -#define STYLE_N 794 + 1 +#define STYLE_N 1358 + 1 void read_style_js(char* string); diff --git a/plugins/style/style.js b/plugins/style/style.js @@ -23,4 +23,22 @@ if (document.domain == "forum.effectivealtruism.org"){ console.log('Style changed') } +if (document.domain == "mail.proton.me" ){ + var styles = ` + .item-container-row.read, .item-container.read { + background-color: white; + } + .item-container-row.unread, .item-container.unread { + background-color: #E8E8E8; + } + .selection .item-container-row.item-is-selected, .item-container.item-is-selected { + background-color: var(--selection-background-color) !important; + } + ` + var styleSheet = document.createElement('style') + styleSheet.innerText = styles + document.head.appendChild(styleSheet) + console.log('Style changed') +} + document.body.style.visibility = "visible"