Add html namespace and some comments
This commit is contained in:
parent
95ef609337
commit
900c1930dd
4 changed files with 9 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
/* Scrollbar colors and width - applied globally */
|
||||
@namespace url("http://www.w3.org/1999/xhtml");
|
||||
:root{
|
||||
scrollbar-color: rgb(210,210,210) rgb(46,54,69);
|
||||
scrollbar-width: thin;
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
/* 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] * {
|
||||
|
|
|
@ -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"){
|
||||
body{background-color: rgb(46,54,69) !important}
|
||||
}
|
|
@ -1,3 +1,7 @@
|
|||
/* 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;
|
||||
|
|
Loading…
Reference in a new issue