modifications mostly to awesome

This commit is contained in:
Chris Cochrun 2020-06-01 07:15:38 -05:00
parent a7db9e944a
commit dda80f1d77
126 changed files with 6539 additions and 27 deletions

View 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;
}
*/