Skip to content

Instantly share code, notes, and snippets.

@drosenstark
Last active May 4, 2016 15:18
Show Gist options
  • Save drosenstark/05ccbd48e72b5e5c8f989aab8851a906 to your computer and use it in GitHub Desktop.
Save drosenstark/05ccbd48e72b5e5c8f989aab8851a906 to your computer and use it in GitHub Desktop.
Dan's Workflowy Changes for Stylish
/* URLs starting with https://workflowy.com/ */
/* hide share buttons */
#share_buttons,
#helpButton,
#leftGradient,
#rightGradient {
display:none;
}
/* Outer border, set to none */
#workflowy > DIV.children {
border-left:none !important;
}
/* Re-style the tags to look more tag-like
div.name ensures that notes won't get their tags marked up
*/
div.name .contentTag[title*="hot"] {
background-color: #F62817 !important;
}
div.name .contentTag[title*="todoList"] {
background-color: #98F516 !important;
}
div.name .contentTag[title*="list"] {
background-color: #F5E216 !important;
}
div.name .contentTag {
background-color: yellow !important;
border-radius: 3px 3px 3px 3px !important;
font-size: 10.75px !important;
font-weight: bold !important;
padding: 2px 3px 2px !important;
white-space: nowrap !important;
color: black !important;
}
/* remove the underline from tags */
.content .contentTagText {
text-decoration: none !important;
}
#pageContainer {
margin-top: 0px;
}
.page {
max-width: 100% !important;
border: none !important;
margin-bottom: 0 !important;
padding: 10px 25px !important;
/* fix for dynamic positioning of the .page div */
transform: none !important;
width: auto !important;
}
/* Remove the "Get more space" top left link so it does not interfere */
.getMoreSpaceButton {
display: none;
}
/* completed items in purple color color: #9900e6 !important;
*/
.project.done > .name > .content, div.done > div.notes > div.content {
color: LightGray !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment