Skip to content

Instantly share code, notes, and snippets.

@chimericdream
Last active April 3, 2017 20:25
Show Gist options
  • Save chimericdream/433d97194c1374d458e46f9bca3a5b89 to your computer and use it in GitHub Desktop.
Save chimericdream/433d97194c1374d458e46f9bca3a5b89 to your computer and use it in GitHub Desktop.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("lists.toodledo.com") {
#contents_left.thinside,
#contents_left.thinside #sidebar {
width: 400px;
}
}
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("tasks.toodledo.com") {
#TasksContainer.style_date .status1 > span:first-child > div:last-child,
#TasksContainer.style_date .status2 > span:first-child > div:last-child,
#TasksContainer.style_date .status3 > span:first-child > div:last-child {
position: relative;
}
#TasksContainer.style_date .status1 > span:first-child > div:last-child::before,
#TasksContainer.style_date .status2 > span:first-child > div:last-child::before,
#TasksContainer.style_date .status3 > span:first-child > div:last-child::before {
display: inline-block;
width: auto;
color: #888;
font-size: 80%;
white-space: nowrap;
position: absolute;
top: 50%;
left: -60px;
transform: translateY(-50%);
}
#TasksContainer.style_date .status1 > span:first-child > div:last-child::before {
content: "Next Action";
}
#TasksContainer.style_date .status2 > span:first-child > div:last-child::before {
content: "Active";
}
#TasksContainer.style_date .status3 > span:first-child > div:last-child::before {
content: "Planning";
}
#TasksContainer.style_date .status1 > span > div.multiDetails:last-child::before,
#TasksContainer.style_date .status2 > span > div.multiDetails:last-child::before,
#TasksContainer.style_date .status3 > span > div.multiDetails:last-child::before {
display: none;
}
.taskRow > .flex > .taskCell.highlight {
background-color: inherit !important;
outline: none !important;
}
.taskRow > .flex > .cellSubtasks {
order: 1;
margin-right: 3px;
}
.taskRow > .flex > .cellCheckSmall {
order: 2;
}
.taskRow > .flex > .cellStarSmall {
order: 3;
}
.taskRow > .flex > .cellToggle {
background-color: inherit;
order: 4;
}
.taskRow > .flex > .taskCell {
order: 5;
}
.taskRow > .flex > .sortedCell {
order: 6;
}
.taskRow.subtask > .flex > .cellSubtasks {
padding-left: 25px;
background-color: rgba(0, 0, 0, 0.05);
margin-right: 2px;
border-width: 0;
}
.taskRow.subtask > .flex > .cellStarSmall {
order: 2;
}
.taskRow.subtask > .flex > .cellToggle {
order: 3;
padding-left: 0;
border: 1px solid #e8e8e7;
border-width: 0 1px;
}
.taskRow > .flex > .taskCell {
order: 4;
}
.taskRow > .flex > .sortedCell {
order: 5;
}
.taskCell > .pop_tag > .tag_group {
width: calc(100% - 20px);
margin: 0 10px;
}
.taskCell > .pop_tag > .tag_group > .tag_style {
width: calc(100% - 10px);
opacity: 0.4;
margin: 0 0 5px 0;
}
.taskCell > .pop_tag.dd_opened > .tag_group > .tag_style:nth-of-type(4n) {
margin-right: 0;
}
.taskCell > .pop_tag.dd_opened > .tag_group > .tag_style.selected,
.taskCell > .pop_tag.dd_opened > .tag_group > .tag_style.highlight {
opacity: 1.0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment