Add item body indicator

This commit is contained in:
Tim Van Baak 2025-02-06 08:00:57 -08:00
parent fd7d9b00b3
commit bc9f2847a1
2 changed files with 8 additions and 1 deletions

View File

@ -4,7 +4,7 @@ help: ## display this help
@awk 'BEGIN{FS = ":.*##"; printf "\033[1m\nUsage\n \033[1;92m make\033[0;36m <target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } ' $(MAKEFILE_LIST) @awk 'BEGIN{FS = ":.*##"; printf "\033[1m\nUsage\n \033[1;92m make\033[0;36m <target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } ' $(MAKEFILE_LIST)
serve: ## Run "intake serve" with live reload serve: ## Run "intake serve" with live reload
@air -build.cmd "go build -o tmp/intake" -build.bin tmp/intake -build.args_bin serve,--data-dir,tmp @air -build.cmd "go build -o tmp/intake" -build.bin tmp/intake -build.args_bin serve,--data-dir,tmp -build.include_ext "go,html,css"
test-data: ## Recreate test data in tmp/ test-data: ## Recreate test data in tmp/
@test/test_items.sh @test/test_items.sh

View File

@ -16,6 +16,13 @@ article {
.item-title { .item-title {
font-size: 1.4em; font-size: 1.4em;
} }
.item-title::before, details[open] summary .item-title::before {
content: "= ";
opacity: 0.3;
}
summary .item-title::before {
content: "> ";
}
.item-button { .item-button {
font-size: 1em; font-size: 1em;
float:right; float:right;