modifications mostly to awesome
This commit is contained in:
parent
a7db9e944a
commit
dda80f1d77
126 changed files with 6539 additions and 27 deletions
8
firefox/chrome/content/about_page_scrollbars.css
Normal file
8
firefox/chrome/content/about_page_scrollbars.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
@namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
@-moz-document url-prefix("about:"){
|
||||
xul|page,
|
||||
xul|scrollbar{
|
||||
scrollbar-color: rgb(210,210,210) rgb(44, 46, 49);
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
}
|
4
firefox/chrome/content/css_scrollbar_width_color.css
Normal file
4
firefox/chrome/content/css_scrollbar_width_color.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
/* Scrollbar colors and width - applied globally */
|
||||
@namespace url("http://www.w3.org/1999/xhtml");
|
||||
:root{ scrollbar-color: rgb(210,210,210) rgb(48, 50, 53) }
|
||||
*{ scrollbar-width: thin }
|
37
firefox/chrome/content/limit_css_data_leak.css
Normal file
37
firefox/chrome/content/limit_css_data_leak.css
Normal file
|
@ -0,0 +1,37 @@
|
|||
/* Limit CSS data leak, POTENTIALLY BREAKS SOME SITES */
|
||||
@namespace html url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
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;
|
||||
}
|
||||
*/
|
6
firefox/chrome/content/newtab_background_color.css
Normal file
6
firefox/chrome/content/newtab_background_color.css
Normal file
|
@ -0,0 +1,6 @@
|
|||
@namespace url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){
|
||||
body{background-color: rgb(44,44,44) !important;
|
||||
color:white}
|
||||
}
|
12
firefox/chrome/content/transparent_reader_toolbar.css
Normal file
12
firefox/chrome/content/transparent_reader_toolbar.css
Normal file
|
@ -0,0 +1,12 @@
|
|||
/* Toolbar is invisible until hovered */
|
||||
|
||||
@namespace html url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
@-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