Split client specific and user css for firefox

This commit is contained in:
Daniel Siepmann 2023-04-19 13:20:43 +02:00
parent dab8b69e67
commit 72917d1970
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
4 changed files with 5 additions and 2 deletions

2
.gitattributes vendored
View file

@ -1,4 +1,4 @@
home/programs/firefox/userContent.css filter=git-crypt diff=git-crypt
home/programs/firefox/clientSpecific.css filter=git-crypt diff=git-crypt
home/programs/ssh-match-blocks.nix filter=git-crypt diff=git-crypt
home/files/composer/auth.json filter=git-crypt diff=git-crypt
home/files/docker/config.json filter=git-crypt diff=git-crypt

View file

@ -263,7 +263,10 @@ in {
"network.IDN_show_punycode" = true;
};
userContent = builtins.readFile(./firefox/userContent.css);
# See: https://lists.w3.org/Archives/Public/www-style/2004Aug/0135
# See: https://developer.mozilla.org/en-US/docs/Web/CSS/@document
userContent = builtins.readFile(./firefox/userContent.css) + builtins.readFile(./firefox/clientSpecific.css);
};
toggl = {
name = "toggl";

Binary file not shown.