Skip to content

Commit

Permalink
chore(release): 1.15.5 [skip ci]
Browse files Browse the repository at this point in the history
## [1.15.5](pengx17/logseq-dev-theme@v1.15.4...v1.15.5) (2021-07-28)

### Bug Fixes

* block hovering selector fix ([9313735](pengx17@9313735))
  • Loading branch information
semantic-release-bot committed Jul 28, 2021
1 parent 9313735 commit 4e4cca6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.15.5](https://github.com/pengx17/logseq-dev-theme/compare/v1.15.4...v1.15.5) (2021-07-28)


### Bug Fixes

* block hovering selector fix ([9313735](https://github.com/pengx17/logseq-dev-theme/commit/9313735a95d2bcb5b2eabd430b38767f54c44889))

## [1.15.4](https://github.com/pengx17/logseq-dev-theme/compare/v1.15.3...v1.15.4) (2021-07-28)


Expand Down
10 changes: 5 additions & 5 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -437,19 +437,19 @@ a:hover > .bullet-container .bullet {
transform: scale(1);
}

.block-content > span > span > [id] {
.block-content-wrapper > div > .block-content > span > span > :first-of-type {
position: relative;
}
.block-content > span > span > [id]::before {
.block-content-wrapper > div > .block-content > span > span > :first-of-type::before {
content: "";
display: block;
position: absolute;
width: 4px;
height: 40%;
top: 30%;
height: 12px;
top: calc(50% - 6px);
left: -8px;
}
.block-content:hover > span > span > [id]::before {
.block-content-wrapper > div > .block-content:hover > span > span > :first-of-type::before {
background: var(--ct-primary-color);
}

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.15.4",
"version": "1.15.5",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit 4e4cca6

Please sign in to comment.