Greasy Fork is available in English.

Discussions » Creation Requests

Script creation: Auto-hide or hide Gmail search bar

§
Posted: 2020/03/03
Edited: 2020/03/03

Script creation: Auto-hide or hide Gmail search bar

This used to be a feature in Gmelius, but they've since "depreciated" that feature (thanks for asking customers what they wanted) so I'm looking for another option to do this. I've searched and it appears that there was a script that could do this on the old userscripts site.

Can anyone create a script to do this? I'd be eternally grateful.

Thank you!

Deleted user 368327
§
Posted: 2020/03/06
woxxomMod
§
Posted: 2020/03/06
Edited: 2020/03/06

You can use any style manager like Stylus extension to add the following CSS:

form[role="search"] {
  display: none;
}

Or autoshow it when hovering the header:

form[role="search"] {
  opacity: 0;
  transition: opacity .25s .25s;
}
header:hover form[role="search"] {
  opacity: 1;
}

You can do it in a userscript as well:

// ==UserScript==
// @name        gmail autohide search
// @match       https://mail.google.com/*
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle(`
form[role="search"] {
  opacity: 0;
  transition: opacity .25s .25s;
}
header:hover form[role="search"] {
  opacity: 1;
}
`);
§
Posted: 2020/03/09

@wOxxOm

I was looking to hide the entire bar that contains search, but thank you!

woxxomMod
§
Posted: 2020/03/10

Well, you can adjust the selector using devtools so for example it would be .nH.w-asV instead of form[role="search"].

Post reply

Sign in to post a reply.