Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengyu-yang committed Jan 3, 2023
2 parents 7f40718 + 6091c13 commit c77d301
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [1.26.15](https://github.com/pengx17/logseq-dev-theme/compare/v1.26.14...v1.26.15) (2022-12-14)


### Bug Fixes

* **scheduled:** add space between content, time cost and scheduled date when references ([52a9a15](https://github.com/pengx17/logseq-dev-theme/commit/52a9a15e9085664788a219822a58b64956f9c857))

## [1.26.14](https://github.com/pengx17/logseq-dev-theme/compare/v1.26.13...v1.26.14) (2022-12-14)


### Bug Fixes

* **blocks:** code block references are not displayed properly ([4c62445](https://github.com/pengx17/logseq-dev-theme/commit/4c62445b03ee0e2e84b4c6d3d640cb953695a37d))

## [1.26.13](https://github.com/pengx17/logseq-dev-theme/compare/v1.26.12...v1.26.13) (2022-11-07)


Expand Down
15 changes: 15 additions & 0 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,10 @@ a.title h1.title {
display: inline;
}

.block-ref .block-body > .cp__fenced-code-block div {
display: block !important;
}

.block-ref .flex.flex-row.justify-between {
display: inline;
}
Expand Down Expand Up @@ -695,6 +699,17 @@ a:hover > .bullet-container .bullet {
transform: scale(0.9);
}

.block-ref a.fade-link::before, .block-ref a.fade-link::after,
.block-ref .timestamp .opacity-80::before, .block-ref .timestamp .opacity-80::after {
content: " ";
}

.block-ref a.fade-link,
.block-ref .timestamp-label,
.block-ref .timestamp .opacity-80 {
font-size: 75% !important;
}

/* embed */
.embed,
.embed-page,
Expand Down
15 changes: 15 additions & 0 deletions no_bullet_threading.css
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,10 @@ a.title h1.title {
display: inline;
}

.block-ref .block-body > .cp__fenced-code-block div {
display: block !important;
}

.block-ref .flex.flex-row.justify-between {
display: inline;
}
Expand Down Expand Up @@ -552,6 +556,17 @@ a:hover > .bullet-container .bullet {
transform: scale(0.9);
}

.block-ref a.fade-link::before, .block-ref a.fade-link::after,
.block-ref .timestamp .opacity-80::before, .block-ref .timestamp .opacity-80::after {
content: " ";
}

.block-ref a.fade-link,
.block-ref .timestamp-label,
.block-ref .timestamp .opacity-80 {
font-size: 75% !important;
}

/* embed */
.embed,
.embed-page,
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.26.13",
"version": "1.26.15",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down
17 changes: 17 additions & 0 deletions src/_blocks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
display: inline;
}

.block-ref .block-body > .cp__fenced-code-block div {
display: block !important;
}

.block-ref .flex.flex-row.justify-between {
display: inline;
}
Expand Down Expand Up @@ -194,3 +198,16 @@ a:hover > .bullet-container .bullet {
opacity: 0.6 !important;
transform: scale(0.9);
}

// https://github.com/pengx17/logseq-dev-theme/issues/77
// add space between content, time cost and scheduled date when references
.block-ref a.fade-link::before, .block-ref a.fade-link::after,
.block-ref .timestamp .opacity-80::before, .block-ref .timestamp .opacity-80::after {
content: " ";
}

.block-ref a.fade-link,
.block-ref .timestamp-label,
.block-ref .timestamp .opacity-80 {
font-size: 75% !important;
}

0 comments on commit c77d301

Please sign in to comment.