Skip to content

Commit

Permalink
chore(release): 1.24.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.24.3](v1.24.2...v1.24.3) (2022-04-01)

### Bug Fixes

* threading in the first block of the embedded ([986e791](986e791))
  • Loading branch information
semantic-release-bot committed Apr 1, 2022
1 parent 986e791 commit 8d7928b
Show file tree
Hide file tree
Showing 4 changed files with 24 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.24.3](https://github.com/pengx17/logseq-dev-theme/compare/v1.24.2...v1.24.3) (2022-04-01)


### Bug Fixes

* threading in the first block of the embedded ([986e791](https://github.com/pengx17/logseq-dev-theme/commit/986e7913b1822aaaf9f3f44c7389758fd6963ee3))

## [1.24.2](https://github.com/pengx17/logseq-dev-theme/compare/v1.24.1...v1.24.2) (2022-03-28)


Expand Down
9 changes: 8 additions & 1 deletion bullet_threading.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
:root {
--ls-block-bullet-active-color: var(--ls-link-text-color);
--ls-block-bullet-threading-width: var(--ls-block-bullet-threading-width-overwrite, 1px);
--ls-block-bullet-threading-width: var(
--ls-block-bullet-threading-width-overwrite,
1px
);
}

.block-control {
Expand Down Expand Up @@ -112,6 +115,10 @@
border-color: var(--ls-block-bullet-active-color);
}

:is(.embed-block > div, .embed-page) > div > div > div > div.ls-block > div > div.items-center::before {
border-color: transparent !important;
}

@media (max-width: 640px) {
.ls-block[haschild=true] > div > .block-content-wrapper::before {
left: -11px;
Expand Down
9 changes: 8 additions & 1 deletion custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,10 @@ a.title h1.title {

:root {
--ls-block-bullet-active-color: var(--ls-link-text-color);
--ls-block-bullet-threading-width: var(--ls-block-bullet-threading-width-overwrite, 1px);
--ls-block-bullet-threading-width: var(
--ls-block-bullet-threading-width-overwrite,
1px
);
}

.block-control {
Expand Down Expand Up @@ -510,6 +513,10 @@ a.title h1.title {
border-color: var(--ls-block-bullet-active-color);
}

:is(.embed-block > div, .embed-page) > div > div > div > div.ls-block > div > div.items-center::before {
border-color: transparent !important;
}

@media (max-width: 640px) {
.ls-block[haschild=true] > div > .block-content-wrapper::before {
left: -11px;
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.24.2",
"version": "1.24.3",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit 8d7928b

Please sign in to comment.