Add html namespace and some comments

This commit is contained in:
MrOtherGuy 2018-12-06 21:38:02 +02:00
parent 95ef609337
commit 900c1930dd
4 changed files with 9 additions and 0 deletions

View file

@ -1,4 +1,5 @@
/* Scrollbar colors and width - applied globally */ /* Scrollbar colors and width - applied globally */
@namespace url("http://www.w3.org/1999/xhtml");
:root{ :root{
scrollbar-color: rgb(210,210,210) rgb(46,54,69); scrollbar-color: rgb(210,210,210) rgb(46,54,69);
scrollbar-width: thin; scrollbar-width: thin;

View file

@ -1,4 +1,6 @@
/* Limit CSS data leak, POTENTIALLY BREAKS SOME SITES */ /* 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],
body input:not([value=""])[type]:focus ~ *, body input:not([value=""])[type]:focus ~ *,
body input:not([value=""])[type] * { body input:not([value=""])[type] * {

View file

@ -1,3 +1,5 @@
@namespace url("http://www.w3.org/1999/xhtml");
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){ @-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing"){
body{background-color: rgb(46,54,69) !important} body{background-color: rgb(46,54,69) !important}
} }

View file

@ -1,3 +1,7 @@
/* Toolbar is invisible until hovered */
@namespace html url("http://www.w3.org/1999/xhtml");
@-moz-document url-prefix("about:reader"){ @-moz-document url-prefix("about:reader"){
.reader-toolbar, .reader-toolbar .button:not(:hover) { .reader-toolbar, .reader-toolbar .button:not(:hover) {
background-color: transparent !important; background-color: transparent !important;