Last active
August 29, 2015 14:00
-
-
Save dasgib/4bb955abb9aa0746a9d4 to your computer and use it in GitHub Desktop.
Userstyle for todoist.com (Non-Premium)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* hide useless stuff */ | |
#td_logo, | |
#notifications_counter, | |
#completed_items { | |
display: none !important; | |
} | |
#top_filters { | |
padding-top: 0 !important; | |
} | |
#list_holder { | |
margin-top: 10px !important; | |
} | |
/* HIDE PREMIUM FEATURES */ | |
/* list item hover actions */ | |
li.manager .cmp_reminders, | |
.task_item .task_content_item .note_icon { | |
display: none !important; | |
} | |
/* hide left menu premium tabs */ | |
#left_menu_tabs .control.labels, | |
#left_menu_tabs .control.filters { | |
display: none !important; | |
} | |
#left_menu_tabs .control { | |
text-align: left !important; | |
} | |
#premium_promotion { | |
display: none !important; | |
} | |
/* hide left menu tabs alltogether */ | |
#left_menu_tabs { | |
display: none !important; | |
} | |
/* clean project context menu */ | |
.AmiMenu .project_inbox_action { | |
display: none !important; | |
} | |
.AmiMenu .project_inbox_action:nth-child(8), | |
.AmiMenu .project_inbox_action:last-child { | |
display: table-row !important; | |
} | |
.AmiMenu .project_archive_action { | |
display: table-row !important; | |
} | |
#project_list li { | |
padding-left: 0 !important; | |
} | |
#project_list_man { | |
margin-left: 0 !important; | |
} | |
#project_list_man a { | |
padding-left: 0 !important; | |
} | |
/* STYLING */ | |
body { | |
padding-left: 0 !important; | |
} | |
#left_menu, | |
#left_menu #list_holder { | |
width: 180px !important; | |
} | |
#content { | |
margin-left: 210px !important; | |
} | |
#editor { | |
padding-left: 0 !important; | |
padding-right: 0 !important; | |
width: auto !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment