Remove counter for tasks

This commit is contained in:
Knoch 2019-05-08 12:15:27 +02:00
parent e35cf64e90
commit 4b22e85d85
2 changed files with 0 additions and 31 deletions

View File

@ -549,17 +549,3 @@ p a:link, p a:hover, p a:active, p a:visited {
p a:hover::before {
height: 110%; }
/*
* Counters for Tasks
* ==================
*/
body {
counter-reset: tasks; }
[data-category^=Aufgabe] {
counter-increment: tasks; }
.layout-content-only h2[data-category^=Aufgabe]::after,
.layout-wide-content h2[data-category^=Aufgabe]::after {
content: counter(tasks); }

View File

@ -679,20 +679,3 @@ p a {
}
}
/*
* Counters for Tasks
* ==================
*/
body {
counter-reset: tasks;
}
[data-category^=Aufgabe] {
counter-increment: tasks;
}
.layout-content-only h2[data-category^=Aufgabe]::after,
.layout-wide-content h2[data-category^=Aufgabe]::after {
content: counter(tasks);
}