Skip to content

Instantly share code, notes, and snippets.

@Decicus
Last active July 1, 2019 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Decicus/f8b3da58154e8f4db09ed6b912e23148 to your computer and use it in GitHub Desktop.
Save Decicus/f8b3da58154e8f4db09ed6b912e23148 to your computer and use it in GitHub Desktop.
Hides the "Subscribe to our newsletter" div that makes the "My drafts" page look wonky on LET.

How to install

  1. Install a userstyles extension for your browser, such as Stylus
  2. Click this link (alternatively click the Raw button top-right of the .css file below) and Stylus should prompt you to install the userstyle.
/* ==UserStyle==
@name LowEndTalk - Fix "My Drafts"
@namespace gist.github.com/Decicus/f8b3da58154e8f4db09ed6b912e23148
@version 1.0.0
@description Hides the "Subscribe to our newsletter" div that makes the page look wonky.
@author Decicus
==/UserStyle== */
@-moz-document url("https://www.lowendtalk.com/drafts")
{
.BoxFilter:first-of-type {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment