You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
726 B

/* Hides the close button all tabs. I think this looks cleaner and ends with less ctrl+shift+Ts
* To use:
* - Go to about:support and locate 'Profile Folder' item. Open this location in file explorer.
* - Create a new folder called 'chrome' and enter it.
* - Save this file in that folder.
* - Navigate to about:config in Firefox and look for the toolkit.legacyUserProfileCustomizations.stylesheets option.
* - Double click this option to set it to true.
* - Restart firefox and enjoy no more close tab buttons cluttering up your tabs.
*
* Source: https://support.mozilla.org/en-US/questions/1288218
*/
/*** Hide Tab Close buttons ***/
.tabbrowser-tab .tab-close-button {
visibility: collapse !important;
}