View Single Post
Old 4 Jul 2019, 07:37 PM   #3
hbs
Junior Member
 
Join Date: Jul 2016
Posts: 23
Another way is tweaking the CSS directly (e.g. with the "Stylus" extension/addon, available for Chrome and Firefox).

This code snippet can be imported right away into "Stylus":

Code:
@-moz-document url-prefix("https://www.fastmail.com/mail/") {
/* Suppress "+/Edit/Find"-Toolbar */
[class^="v-Sidebar-toolbar"] {
    display:none !important;
}

/* Suppress Quota Box */
[class^="v-Quota"] {
    display:none !important;
}

}
hbs is offline   Reply With Quote