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
@-moz-document url("chrome://browser/content/browser.xhtml") { | |
/* To bring back OS title bar with min/max/close buttons, some users might | |
* consider setting browser.tabs.drawInTitlebar to false in about:config | |
*/ | |
:root { | |
--custom-sidebar-collapsed-width: 35px; | |
--custom-sidebar-full-width: 20vw; | |
--custom-sidebar-border: 0px solid #404040; | |
} |
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
<?php | |
/* | |
* A walker class to use that extends wp_dropdown_categories and allows it to use the term's slug as a value rather than ID. | |
* | |
* See http://core.trac.wordpress.org/ticket/13258 | |
* | |
* Usage, as normal: | |
* wp_dropdown_categories($args); | |
* |