Skip to content

Commit

Permalink
chore(release): 1.26.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.26.0](pengx17/logseq-dev-theme@v1.25.16...v1.26.0) (2022-04-27)

### Features

* allow users to overwrite the threading color in plugin ([218a1d8](pengx17@218a1d8))
  • Loading branch information
semantic-release-bot committed Apr 27, 2022
1 parent 218a1d8 commit b45887c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.26.0](https://github.com/pengx17/logseq-dev-theme/compare/v1.25.16...v1.26.0) (2022-04-27)


### Features

* allow users to overwrite the threading color in plugin ([218a1d8](https://github.com/pengx17/logseq-dev-theme/commit/218a1d86d8bdde7e7d865ba28d7346e13228abec))

## [1.25.16](https://github.com/pengx17/logseq-dev-theme/compare/v1.25.15...v1.25.16) (2022-04-25)


Expand Down
5 changes: 4 additions & 1 deletion bullet_threading.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
:root {
--ls-block-bullet-active-color: var(--ls-link-text-color);
--ls-block-bullet-active-color: var(
--ls-block-bullet-threading-active-color-overwrite,
--ls-link-text-color
);
--ls-block-bullet-threading-width: var(
--ls-block-bullet-threading-width-overwrite,
1px
Expand Down
5 changes: 4 additions & 1 deletion custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,10 @@ a.title h1.title {
}

:root {
--ls-block-bullet-active-color: var(--ls-link-text-color);
--ls-block-bullet-active-color: var(
--ls-block-bullet-threading-active-color-overwrite,
--ls-link-text-color
);
--ls-block-bullet-threading-width: var(
--ls-block-bullet-threading-width-overwrite,
1px
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logseq-dev-theme",
"author": "pengx17",
"version": "1.25.16",
"version": "1.26.0",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit b45887c

Please sign in to comment.