userstyles fix here

in
Subscribe to userstyles fix here 3 posts, 2 voices



dudebudbro Scriptwright
FirefoxWindows

There is a better fix here http://userstyles.org/styles/35570

The links now work when you switch labels and show up at the top and bottom of page just like before. It's also faster as it removes the dropdown list entirely so you don't have to wait that split second for it to open the list and check the boxes like this script does.

The only possible issue is the font color for the links is white because it was created for a dark colored theme so if you use a light color one just change the font color. I installed it as a userscript and changed the color "#cdf" to "#000000" and color "white" to "blue"

It also has extra options like hiding the new Mail/Contacts/Tasks labels and turning the Compose mail button back into a link as well as a few others. Basically it brings back the old gmail layout.

Unfortunately I'm a noob and I don't know how to activate the extra options in Greasemonkey or Stylish. If someone could make a greasemonkey script from this for the default firefox theme with an easy way to turn those extra options on that would be nice.

 
Matt Kruse Script's Author
FirefoxWindows

I actually am now using a modified version of the user style. Here's mine:

@namespace url(http://www.w3.org/1999/xhtml);
/*
Gmail: Select "links" restored
*/
@-moz-document domain("mail.google.com") {

/* move search results text down below Select links */
.A1.D.E .yS { padding-top: 25px !important; }

/* same height as before (more or less) */
.A1.D.E .nH { height: 22px !important; }

.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) {
position: relative !important;
top: -4px !important;
left: 15px !important; /* line up with 'Search ...' */
display: inline !important;
height: 16px !important;
}
.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) > .SK:before {
content: "Select: " ; font-family: Arial ; color: black ;
}
.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) > .SK {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
padding-top: 4px !important;
padding-bottom: 2px !important;
background-color: transparent !important;
font-family: Verdana !important;
}
.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) > .SK.AX > .J-N {
display: inline-block !important;
padding-left: 8px !important;
padding-right: 8px !important;
-moz-border-radius: 3px !important;
-webkit-border-radius: 3px !important; /* WebKit */
cursor: pointer !important;
}
.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) > .SK.AX > .J-N:hover {
background-color:#406480 !important;
color:white !important;
}
/* optional bg: sort of a button look (dark/light bg with light/dark text) * /
.A1.D.E > .nH > .nH.Cq > div > div > .J-M.AW:nth-child(7) > .SK.AX > .J-N:not(:hover) {
background-color: #406480 !important;
} /* dark blue [Planets bg] */

}

 
dudebudbro Scriptwright
FirefoxWindows

Hmm I tried that but nothing happened.

Anyways thanks for the script. It was a nice temporary fix. Maybe you can make a greasemonkey version of this userstyle sometime.

Later