Browse Source

lazygit

main
Gregory Leeman 2 weeks ago
parent
commit
7f4ecccb97
  1. 2
      workflowy-helper/main.js
  2. 19
      workflowy-helper/style.css

2
workflowy-helper/main.js

@ -190,7 +190,7 @@
} }
} }
const content = names[0].querySelector('.content'); const content = names[0].querySelector('.content');
const hotspots = ["admin", "art","mind","health","social","church","career","work"] const hotspots = ["admin", "art","mind","health","social","church","job","work","side"]
text.forEach(function(t) { text.forEach(function(t) {
const breadcrumb = t.querySelector('.breadcrumbs'); const breadcrumb = t.querySelector('.breadcrumbs');
if (breadcrumb !== null) { if (breadcrumb !== null) {

19
workflowy-helper/style.css

@ -316,7 +316,9 @@ body::-webkit-scrollbar {
color: var(--red) !important; color: var(--red) !important;
} }
.tag-RELAX, .tag-RELAX {
color: var(--cyan) !important;
}
.tag-REVIEW { .tag-REVIEW {
color: var(--yellow) !important; color: var(--yellow) !important;
} }
@ -329,6 +331,14 @@ body::-webkit-scrollbar {
color: var(--yellow) !important; color: var(--yellow) !important;
} }
.timed-today > .name > .content::after,
.tagged-DAILY > .name > .content::after {
content: "★";
color: var(--yellow);
margin-left: 6px;
/* margin-right: 4px; */
}
.notes .time-today > .content-wrapper { .notes .time-today > .content-wrapper {
background-color: var(--white) !important; background-color: var(--white) !important;
color: var(--black); color: var(--black);
@ -489,12 +499,17 @@ body::-webkit-scrollbar {
margin-left: 4px; margin-left: 4px;
} }
.hotspot-side > .name .innerContentContainer::after {
content: "🖼️";
margin-left: 4px;
}
.hotspot-social > .name .innerContentContainer::after { .hotspot-social > .name .innerContentContainer::after {
content: "👥"; content: "👥";
margin-left: 4px; margin-left: 4px;
} }
.hotspot-career > .name .innerContentContainer::after { .hotspot-job > .name .innerContentContainer::after {
content: "💻"; content: "💻";
margin-left: 4px; margin-left: 4px;
} }

Loading…
Cancel
Save