Skip to content

Instantly share code, notes, and snippets.

@loimu
Last active March 8, 2020 14:12
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 loimu/d567eb4920df58e5e415b81960de815a to your computer and use it in GitHub Desktop.
Save loimu/d567eb4920df58e5e415b81960de815a to your computer and use it in GitHub Desktop.
Dark userstyle for launchpad.net
// ==UserScript==
// @name Launchpad Dark
// @namespace greasemonkey
// @description Dark greyish userstyle for LP
// @author blaze
// @license Creative Commons Attribution 3.0 Unported
// @version 0.0.1
// @include https://launchpad.net/*
// @include https://code.launchpad.net/*
// @run-at document-start
// ==/UserScript==
var css = "html{background-color: #222;}body{color:#bebebe;}\
input,textarea,select{color:#bebebe;background-color:#222;border:1px solid #000;}\
a{color:#55aa00 !important;}\
table.listing thead th{background-color:#222;border: 1px solid #000;}\
table.listing td{border:1px #000;border-style:dotted none none none;}\
table.listing,table.listing tbody,table.listing td.end-of-section{border-bottom-color:#000;}\
table#packages_list tr.superseded,tr.blacklisted{background-color:#1c1c1c;}\
ul.latest-ppa-updates li:nth-child(odd){background-color:#3f3f3f !important;border-top-color:#000 !important;border-bottom-color:#000 !important;}\
.lazr-multiline-edit .edit-controls{background-image:none;}\
.lazr-multiline-edit .yui3-editable_text-text{border-top-color:#000 !important;}\
.yui3-ieditor-input textarea{background-color: #111;}\
.yui3-editable_text-edit_mode .lazr-multiline-edit .yui3-ieditor-input{background-color: #111;}\
.footer .lp-arcana {background: #333;border: 1px solid #000;}\
.portlet{border-top-color:#000;}\
.portlet dl strong {color:#bebebe;}\
.side .portlet{background-color: #333;border: 1px solid #000;}";
GM_addStyle(css);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment