Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
costateixeira committed Sep 11, 2023
1 parent 8f9dcd2 commit c05d8f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion input/pagecontent/l3_processes.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ TO DO: Do we want to link processes to models?


### **Output Criteria / Definition of Done:**

* The PlanDefinition should

### **Change tracking**

Expand Down
15 changes: 11 additions & 4 deletions local-template/package/content/assets/css/local.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,20 @@ em {

:root {
--showtodo: "off";
--display-todo: none; /* Default display value */
}

/* If --showtodo is set to "on", modify the --display-todo variable */
[data-showtodo="on"] {
--display-todo: block;
}

.todo {
display: none; /* Default to not display */
display: var(--display-todo);
background-color: #ffe0e0; /* Very light pink */
}

/* If --showtodo is set to "on", display the element */
display: var(--showtodo, "off") == "on" ? block : none;
}

h1, h2, h3, h4, h5, h6 {
padding-top: 1.2em;
}

0 comments on commit c05d8f0

Please sign in to comment.