Skip to content

Commit

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

### Bug Fixes

* strong elements should inherit their color ([a7a3778](a7a3778))
  • Loading branch information
semantic-release-bot committed Nov 17, 2021
1 parent a7a3778 commit a43836c
Show file tree
Hide file tree
Showing 3 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.21.15](https://github.com/pengx17/logseq-dev-theme/compare/v1.21.14...v1.21.15) (2021-11-17)


### Bug Fixes

* strong elements should inherit their color ([a7a3778](https://github.com/pengx17/logseq-dev-theme/commit/a7a3778f52d5ac6d2428744b858b09fa617621cd))

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


Expand Down
10 changes: 8 additions & 2 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,10 @@ strong {
font-weight: 600;
}

.with-bg-color :is(b, strong) {
color: inherit;
}

/* External links */
.external-link,
.external-link:hover {
Expand Down Expand Up @@ -729,7 +733,8 @@ a.tag:hover {
}

/* Page properties */
.page-properties, .block-properties {
.page-properties,
.block-properties {
margin: 0 0 0.5em -8px;
font-size: 0.8em;
background: var(--ls-secondary-background-color);
Expand All @@ -738,7 +743,8 @@ a.tag:hover {
max-width: var(--ct-block-max-width);
}

.sidebar-item-list .page-properties, .sidebar-item-list .block-properties {
.sidebar-item-list .page-properties,
.sidebar-item-list .block-properties {
background: var(--ls-tertiary-background-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.21.14",
"version": "1.21.15",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit a43836c

Please sign in to comment.