Browse Source

lazygit

main
Gregory Leeman 4 weeks ago
parent
commit
88cb973947
  1. 5
      workflowy-helper/main.js
  2. 11
      workflowy-helper/style.css

5
workflowy-helper/main.js

@ -158,8 +158,13 @@
if (hotspots.includes(text)) { if (hotspots.includes(text)) {
const hotspot = text; const hotspot = text;
projectNode.classList.add(`hotspot-${hotspot}`); projectNode.classList.add(`hotspot-${hotspot}`);
// const link = document.createElement('a');
// link.href = bc.href;
// link.innerText = text;
// names[0].appendChild(link);
} }
}); });
} }
}); });
[notes, names].forEach(function(ns) { [notes, names].forEach(function(ns) {

11
workflowy-helper/style.css

@ -109,11 +109,11 @@ body::-webkit-scrollbar {
.project .breadcrumbs > .menu { .project .breadcrumbs > .menu {
display: none; display: none;
} }
.project * .breadcrumbs > a:last-child { .project * .breadcrumbs > :nth-last-child(3) {
font-size: 0; font-size: 0;
display: initial !important; display: initial !important;
} }
.project * .breadcrumbs > a:last-child::after { .project * .breadcrumbs > :nth-last-child(3)::after {
font-size: 12px; font-size: 12px;
content: "→"; content: "→";
} }
@ -357,7 +357,7 @@ body::-webkit-scrollbar {
color: var(--red) !important; color: var(--red) !important;
} }
.tagged-reminder > .name > .content > .innerContentContainer { .tagged-note > .name > .content > .innerContentContainer {
color: var(--blue) !important; color: var(--blue) !important;
} }
@ -369,15 +369,10 @@ body::-webkit-scrollbar {
color: var(--green) !important; color: var(--green) !important;
} }
.tagged-work > .name > .content > .innerContentContainer {
color: var(--magenta) !important;
}
.tagged-birthday > .name > .content > .innerContentContainer { .tagged-birthday > .name > .content > .innerContentContainer {
color: var(--violet) !important; color: var(--violet) !important;
} }
.half-open.tagged-a > .name > .bullet, .half-open.tagged-a > .name > .bullet,
.collapsed.tagged-a > .name > .bullet, .collapsed.tagged-a > .name > .bullet,
.tagged-a > .name > .bullet { .tagged-a > .name > .bullet {

Loading…
Cancel
Save