Browse Source

lazygit

main
Gregory Leeman 1 month ago
parent
commit
2d9f2b93d1
  1. 8
      workflowy-helper/main.js
  2. 39
      workflowy-helper/style.css

8
workflowy-helper/main.js

@ -183,10 +183,10 @@
}); });
}); });
if (isIosSafari()) { // if (isIosSafari()) {
const content = n.querySelector('.content'); // const content = n.querySelector('.content');
removeKeyboard(content); // removeKeyboard(content);
} // }
} }
}); });

39
workflowy-helper/style.css

@ -44,11 +44,10 @@ body {
/* .root:not(.board) > .name { */ /* .root:not(.board) > .name { */
/* /1* max-width: 800px; *1/ */ /* /1* max-width: 800px; *1/ */
/* } */ /* } */
.name > .content::before { .name > .content > .innerContentContainer::before {
margin-right: 4px; margin-right: 4px;
} }
body::-webkit-scrollbar { body::-webkit-scrollbar {
display: none; display: none;
} }
@ -126,12 +125,12 @@ body::-webkit-scrollbar {
.tagged-GOAL > .name .innerContentContainer { .tagged-GOAL > .name .innerContentContainer {
font-weight: bold; font-weight: bold;
} }
.tagged-GOAL > .name > .content::before { .tagged-GOAL > .name > .content > .innerContentContainer::before {
content: "★"; content: "★";
color: var(--yellow); color: var(--yellow);
} }
.tagged-RESPONSIBILITY > .name > .content::before { .tagged-RESPONSIBILITY > .name > .content > .innerContentContainer::before {
content: "✦"; content: "✦";
color: var(--red); color: var(--red);
} }
@ -145,7 +144,7 @@ body::-webkit-scrollbar {
font-weight: bold; font-weight: bold;
} }
.tagged-VISUALISATION > .name > .content::before { .tagged-VISUALISATION > .name > .content > .innerContentContainer::before {
content: "☁︎"; content: "☁︎";
color: var(--green); color: var(--green);
} }
@ -163,10 +162,10 @@ body::-webkit-scrollbar {
.tagged-PROJECT > .name .innerContentContainer { .tagged-PROJECT > .name .innerContentContainer {
font-weight: bold; font-weight: bold;
} }
.tagged-PROJECT > .name > .content::before { .tagged-PROJECT > .name > .content > .innerContentContainer::before {
content: "⚑"; content: "⚑";
} }
.tagged-PROJECT.tagged-ACTIVE > .name > .content::before { .tagged-PROJECT.tagged-ACTIVE > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(300deg) brightness(100%) contrast(300%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(300deg) brightness(100%) contrast(300%); */
color: var(--magenta); color: var(--magenta);
} }
@ -174,7 +173,7 @@ body::-webkit-scrollbar {
.tagged-PROJECT.tagged-ACTIVE > .notes .innerContentContainer { .tagged-PROJECT.tagged-ACTIVE > .notes .innerContentContainer {
color: var(--magenta); color: var(--magenta);
} }
.tagged-PROJECT.tagged-PLANT > .name > .content::before { .tagged-PROJECT.tagged-PLANT > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(340deg) brightness(100%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(340deg) brightness(100%) contrast(100%); */
color: var(--orange); color: var(--orange);
} }
@ -182,7 +181,7 @@ body::-webkit-scrollbar {
.tagged-PROJECT.tagged-PLANT > .notes .innerContentContainer { .tagged-PROJECT.tagged-PLANT > .notes .innerContentContainer {
color: var(--orange); color: var(--orange);
} }
.tagged-PROJECT.tagged-STALLED > .name > .content::before { .tagged-PROJECT.tagged-STALLED > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(120deg) brightness(100%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(120deg) brightness(100%) contrast(100%); */
color: var(--cyan); color: var(--cyan);
} }
@ -190,7 +189,7 @@ body::-webkit-scrollbar {
.tagged-PROJECT.tagged-STALLED > .notes .innerContentContainer { .tagged-PROJECT.tagged-STALLED > .notes .innerContentContainer {
color: var(--cyan); color: var(--cyan);
} }
.tagged-PROJECT.tagged-SOMEDAY > .name > .content::before { .tagged-PROJECT.tagged-SOMEDAY > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(210deg) brightness(100%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(210deg) brightness(100%) contrast(100%); */
color: var(--violet); color: var(--violet);
} }
@ -199,7 +198,7 @@ body::-webkit-scrollbar {
color: var(--violet); color: var(--violet);
} }
.tagged-HABIT > .name > .content::before { .tagged-HABIT > .name > .content > .innerContentContainer::before {
content: "↻"; content: "↻";
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(330deg) brightness(100%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(330deg) brightness(100%) contrast(100%); */
color: var(--orange); color: var(--orange);
@ -211,12 +210,12 @@ body::-webkit-scrollbar {
color: var(--orange); color: var(--orange);
} }
.tagged-TASK > .name > .content::before { .tagged-TASK > .name > .content > .innerContentContainer::before {
/* content: "✔️"; */ /* content: "✔️"; */
content: "✓"; content: "✓";
} }
.tagged-TASK.tagged-READY > .name > .content::before { .tagged-TASK.tagged-READY > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(160deg) brightness(90%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(160deg) brightness(90%) contrast(100%); */
color: var(--blue); color: var(--blue);
} }
@ -224,10 +223,10 @@ body::-webkit-scrollbar {
.tagged-TASK.tagged-READY > .notes .innerContentContainer { .tagged-TASK.tagged-READY > .notes .innerContentContainer {
color: var(--blue); color: var(--blue);
} }
.tagged-TASK.tagged-DAILY > .name > .content::before , .tagged-TASK.tagged-DAILY > .name > .content > .innerContentContainer::before,
.tagged-TASK.tagged-WEEKLY > .name > .content::before , .tagged-TASK.tagged-WEEKLY > .name > .content > .innerContentContainer::before,
.tagged-TASK.tagged-MONTHLY > .name > .content::before , .tagged-TASK.tagged-MONTHLY > .name > .content > .innerContentContainer::before,
.tagged-TASK.tagged-IRREGULAR > .name > .content::before { .tagged-TASK.tagged-IRREGULAR > .name > .content > .innerContentContainer::before {
content: "↻"; content: "↻";
color: var(--green); color: var(--green);
} }
@ -242,7 +241,7 @@ body::-webkit-scrollbar {
color: var(--green); color: var(--green);
} }
.tagged-TASK.tagged-WAITING > .name > .content::before { .tagged-TASK.tagged-WAITING > .name > .content > .innerContentContainer::before {
color: var(--cyan); color: var(--cyan);
} }
.tagged-TASK.tagged-WAITING > .name .innerContentContainer, .tagged-TASK.tagged-WAITING > .name .innerContentContainer,
@ -250,7 +249,7 @@ body::-webkit-scrollbar {
color: var(--cyan); color: var(--cyan);
} }
.tagged-TASK.tagged-BLOCKED > .name > .content::before { .tagged-TASK.tagged-BLOCKED > .name > .content > .innerContentContainer::before {
color: var(--red); color: var(--red);
} }
.tagged-TASK.tagged-BLOCKED > .name .innerContentContainer, .tagged-TASK.tagged-BLOCKED > .name .innerContentContainer,
@ -258,7 +257,7 @@ body::-webkit-scrollbar {
color: var(--red); color: var(--red);
} }
.tagged-TASK.tagged-MAYBE > .name > .content::before { .tagged-TASK.tagged-MAYBE > .name > .content > .innerContentContainer::before {
/* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(210deg) brightness(90%) contrast(100%); */ /* filter: invert(50%) sepia(100%) saturate(300%) hue-rotate(210deg) brightness(90%) contrast(100%); */
color: var(--violet); color: var(--violet);
} }

Loading…
Cancel
Save