This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Burrow fixes for upstream PicoCSS v2.x | |
| * Load alongside pico.min.css; source order matters so this file must come after. | |
| * See contrib/pico documentation for the rationale of each fix below. */ | |
| /* 1. Firefox dropdown positioning — picocss/pico#701 | |
| * Pico sets `nav details.dropdown { display: inline }`. Inline elements do not | |
| * reliably establish a positioning context for absolute-positioned descendants | |
| * in Firefox, so the dropdown submenu lands at the page's top-left instead of | |
| * below the toggle. `inline-block` keeps the inline visual flow while giving | |
| * a proper offset parent. */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! Hide all videos containing the phrase "#shorts" | |
| youtube.com##ytd-grid-video-renderer:has(#video-title:has-text(#shorts)) | |
| youtube.com##ytd-grid-video-renderer:has(#video-title:has-text(#Shorts)) | |
| youtube.com##ytd-grid-video-renderer:has(#video-title:has-text(#short)) | |
| youtube.com##ytd-grid-video-renderer:has(#video-title:has-text(#Short)) | |
| ! Hide all videos with the shorts indicator on the thumbnail | |
| youtube.com##ytd-grid-video-renderer:has([overlay-style="SHORTS"]) | |
| youtube.com##ytd-rich-item-renderer:has([overlay-style="SHORTS"]) | |
| youtube.com##ytd-video-renderer:has([overlay-style="SHORTS"]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| /* You may copy+paste this file and use it as it is. | |
| * | |
| * If you make changes to your about:config while the program is running, the | |
| * changes will be overwritten by the user.js when the application restarts. | |
| * | |
| * To make lasting changes to preferences, you will have to edit the user.js. | |
| */ | |
| /**************************************************************************** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [tool.ruff] | |
| select = ["A", "B", "C4", "E", "F", "I", "DJ", "INP", "TID", "UP", "YTT"] | |
| ignore = [] | |
| # Allow autofix for all enabled rules (when `--fix`) is provided. | |
| fixable = ["A", "B", "C4", "E", "F", "I", "TID", "UP"] | |
| unfixable = [] | |
| # Exclude a variety of commonly ignored directories. | |
| exclude = [ |