Skip to content

Commit

Permalink
chore(release): 1.21.16 [skip ci]
Browse files Browse the repository at this point in the history
## [1.21.16](v1.21.15...v1.21.16) (2021-11-18)

### Bug Fixes

* threading styles regression for 0.4.6 ([a997d7e](a997d7e))
  • Loading branch information
semantic-release-bot committed Nov 18, 2021
1 parent a997d7e commit 02328d6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.21.16](https://github.com/pengx17/logseq-dev-theme/compare/v1.21.15...v1.21.16) (2021-11-18)


### Bug Fixes

* threading styles regression for 0.4.6 ([a997d7e](https://github.com/pengx17/logseq-dev-theme/commit/a997d7e66069c2f2f710d64990e73928c0bce1af))

## [1.21.15](https://github.com/pengx17/logseq-dev-theme/compare/v1.21.14...v1.21.15) (2021-11-17)


Expand Down
8 changes: 8 additions & 0 deletions bullet_threading.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@
height: 14px !important;
width: 14px !important;
position: relative;
transform: translate(1px, -1px);
}

/* Block bullet path should only show in a nested block */
.ls-block {
/* Fix for headings like h1, h2 etc */
/* Basic "curve" */
/* Fix multi-line blocks with children */
}
Expand All @@ -34,11 +36,17 @@
position: relative;
height: 26px !important;
}
.ls-block > .items-baseline {
align-items: initial;
}
.ls-block:not(:focus-within) .bullet {
background-color: var(--ls-block-bullet-color);
transform: scale(1);
box-shadow: none;
}
.ls-block:not(:focus-within) > .items-baseline {
align-items: baseline;
}
.ls-block .ls-block > div > div.items-center::before {
pointer-events: none;
content: "";
Expand Down
8 changes: 8 additions & 0 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,12 @@ a.title h1.title {
height: 14px !important;
width: 14px !important;
position: relative;
transform: translate(1px, -1px);
}

/* Block bullet path should only show in a nested block */
.ls-block {
/* Fix for headings like h1, h2 etc */
/* Basic "curve" */
/* Fix multi-line blocks with children */
}
Expand All @@ -398,11 +400,17 @@ a.title h1.title {
position: relative;
height: 26px !important;
}
.ls-block > .items-baseline {
align-items: initial;
}
.ls-block:not(:focus-within) .bullet {
background-color: var(--ls-block-bullet-color);
transform: scale(1);
box-shadow: none;
}
.ls-block:not(:focus-within) > .items-baseline {
align-items: baseline;
}
.ls-block .ls-block > div > div.items-center::before {
pointer-events: none;
content: "";
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.21.15",
"version": "1.21.16",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit 02328d6

Please sign in to comment.