initial commit
This commit is contained in:
commit
15cb67cf2c
12 changed files with 864 additions and 0 deletions
5
content/css_scrollbar_width_color.css
Normal file
5
content/css_scrollbar_width_color.css
Normal file
|
@ -0,0 +1,5 @@
|
|||
/* Scrollbar colors and width - applied globally */
|
||||
:root{
|
||||
scrollbar-color: rgb(210,210,210) rgb(46,54,69);
|
||||
scrollbar-width: thin;
|
||||
}
|
35
content/limit_css_data_leak.css
Normal file
35
content/limit_css_data_leak.css
Normal file
|
@ -0,0 +1,35 @@
|
|||
/* Limit CSS data leak, POTENTIALLY BREAKS SOME SITES */
|
||||
body input:not([value=""])[type],
|
||||
body input:not([value=""])[type]:focus ~ *,
|
||||
body input:not([value=""])[type] * {
|
||||
background-image: none !important;
|
||||
border-image: none !important;
|
||||
font-family: inherit !important;
|
||||
list-style-image: none !important;
|
||||
cursor: unset !important;
|
||||
content: none !important;
|
||||
}
|
||||
body input:not([value=""])[type]::before,
|
||||
body input:not([value=""])[type]:focus ~ *::before,
|
||||
body input:not([value=""])[type] *::before,
|
||||
body input:not([value=""])[type]::after,
|
||||
body input:not([value=""])[type]:focus ~ *::after,
|
||||
body input:not([value=""])[type] *::after {
|
||||
content:none !important;
|
||||
}
|
||||
|
||||
/* Remove the comment to apply more strict version, causes even more trouble */
|
||||
/*
|
||||
body input:not([value=""])[type] ~ *{
|
||||
background-image: none !important;
|
||||
border-image: none !important;
|
||||
font-family: inherit !important;
|
||||
list-style-image: none !important;
|
||||
cursor: unset !important;
|
||||
content: none !important;
|
||||
}
|
||||
body input:not([value=""])[type] ~ *::before,
|
||||
body input:not([value=""])[type] ~ *::after{
|
||||
content:none !important;
|
||||
}
|
||||
*/
|
3
content/newtab_background_color.css
Normal file
3
content/newtab_background_color.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){
|
||||
body{background-color: rgb(46,54,69) !important}
|
||||
}
|
8
content/transparent_reader_toolbar.css
Normal file
8
content/transparent_reader_toolbar.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@-moz-document url-prefix("about:reader"){
|
||||
.reader-toolbar, .reader-toolbar .button:not(:hover) {
|
||||
background-color: transparent !important;
|
||||
border: none !important;
|
||||
}
|
||||
.reader-toolbar:not(:hover)>*:not([open]){ visibility:hidden; }
|
||||
body{ text-align: justify; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue