Skip to content

Instantly share code, notes, and snippets.

@laymain
Created May 15, 2017 12:14
Show Gist options
  • Save laymain/f249a35e6d18982083d9256ec7cbd72c to your computer and use it in GitHub Desktop.
Save laymain/f249a35e6d18982083d9256ec7cbd72c to your computer and use it in GitHub Desktop.
Toggl beautifier
// ==UserScript==
// @name Toggl beautifier
// @namespace http://laymain.com/
// @version 0.1
// @description Toggl beautifier
// @author Julien Opoix
// @match https://www.toggl.com/app/timer
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
li.ListItem__item {
height: 40px !important;
line-height: 40px !important;
}
li.ListItem__item > div {
height: 40px !important;
}
li.ListItem__item > .Project__container {
margin-left: auto !important;
}
li.ListItem__item > .Tags__container {
margin-left: 0 !important;
}
`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment