When I shrunk gmail to half my screen (840px) I couldn't read email titles, and that was really annoying me.
This stylesheet:
Reduces the left sidebar to be narrower
Removes the right sidebar to other apps
takes out a bunch of padding
shrinks some text sizes so more text is visible
Notes
Userstyle doesn't have notes.
Source code
/* ==UserStyle==
@name 30/10/2022, 5:22:49 pm
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("mail.google.com") {
/* narrows sidebar a lot */
.aeN {
width: 100px !important;
min-width: 160px !important;
}
.aUx {
display: none !important;
}
.T-I-KE {
color: white !important;
width: 20px !important;
min-width: 30px !important;
}
/*
mucking with sizing of the elements in the email table, goal is less white space,
show longer titles more easily,
*/
.xY {
padding: 0px !important;
}
.yX {
flex-basis: 148px !important;
}
.a4W {
font-size: 12px !important;
}
/* Removes redundant tag of 'promotion', 'social' etc on views where I didn't want them */
.yi {
display: none;
}
/* Removes the date, which I have never looked at */
.xW {
display: none !important;
}
.gb_Md{
padding: 2px !important;
}
.aKh {
height: 32px !important;
}
}