tweak: continue cat and mouse chase with Matt Levine newsletter

This commit is contained in:
NunoSempere 2023-04-21 09:44:33 -04:00
parent f8b4e9ff4a
commit a4f8ad8ae2
2 changed files with 10 additions and 3 deletions

View File

@ -11,13 +11,13 @@
#define ROSE_HOMEPAGE true #define ROSE_HOMEPAGE true
#define HOME ROSE_HOMEPAGE ? "file:///home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png" : "https://lite.duckduckgo.com/html" #define HOME ROSE_HOMEPAGE ? "file:///home/loki/Documents/core/software/fresh/C/rose-browser/rosenrot/user-scripts/ubuntu-20.04/rose-images/rose-homepage.png" : "https://lite.duckduckgo.com/html"
#define SEARCH "https://search.nunosempere.com/search?q=%s" // "https://lite.duckduckgo.com/html/?q=%s" #define SEARCH "https://search.nunosempere.com/search?q=%s" // "https://lite.duckduckgo.com/html/?q=%s"
#define CACHE_DIR "/home/loki/.cache/rose" #define CACHE_DIR "/home/root/.cache/rose"
#define WIDTH 1920 #define WIDTH 1920
#define HEIGHT 1080 #define HEIGHT 1080
#define SEARCH_BAR_SIZE 1200 #define SEARCH_BAR_SIZE 1200
#define KEY(x) GDK_KEY_##x #define KEY(x) GDK_KEY_##x
#define ZOOM 1.4 /* Starting zoom level.*/ #define ZOOM 1 /* Starting zoom level.*/
#define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */ #define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */
#define BG_COLOR "#FEFEFE" /* "FEFEFE", "#1E1E2E" */ #define BG_COLOR "#FEFEFE" /* "FEFEFE", "#1E1E2E" */
#define DEBUG false #define DEBUG false

View File

@ -2386,10 +2386,17 @@ if (document.domain == "archive.is" ){
display: none !important; display: none !important;
} }
/* Matt Levine's Money Stuff specific stuff: */
p > span > em { p > span > em {
display: none !important; display: none !important;
} }
/* ^ deletes the subscribe prompt in Matt Levine's Money Stuff. */ iframe {
display: none;
}
#div[id^='stickyModal'] {
display: none;
}
` `
} }