Skip to content

Commit

Permalink
Restore blockquote vertical markers. [adam-p#104]
Browse files Browse the repository at this point in the history
  • Loading branch information
jfx2006 committed Nov 13, 2024
1 parent 18e42c2 commit 1067f17
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [4.0.3]

### Fixed
- Vertical lines left adjacent to block quotes not present. (default css fix)
[#104](https://gitlab.com/jfx2006/markdown-here-revival/-/issues/104)

## [4.0.2]

### New
Expand All @@ -9,6 +15,7 @@
### Fixed
- Disable excessive logging of options changes
- Fix locale-maker save data issue

## [4.0.1]

- Unreleased
Expand Down
7 changes: 7 additions & 0 deletions extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [4.0.3]

### Fixed
- Vertical lines left adjacent to block quotes not present. (default css fix)
[#104](https://gitlab.com/jfx2006/markdown-here-revival/-/issues/104)

## [4.0.2]

### New
Expand All @@ -9,6 +15,7 @@
### Fixed
- Disable excessive logging of options changes
- Fix locale-maker save data issue

## [4.0.1]

- Unreleased
Expand Down
14 changes: 14 additions & 0 deletions extension/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,22 @@ blockquote, q {
padding: 0 1em;
color: #777;
quotes: none;
border-inline-start: 2px solid rgb(114, 159, 207);
& & {
border-inline-start-color: rgb(173, 127, 168);
& & {
border-inline-start-color: rgb(138, 226, 52);
& & {
border-inline-start-color: rgb(252, 175, 62);
& & {
border-inline-start-color: rgb(233, 185, 110);
}
}
}
}
}


blockquote::before, blockquote::after, q::before, q::after {
content: none;
}
Expand Down
8 changes: 5 additions & 3 deletions extension/options/options_migration.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ const OLD_CSS_SUMS = [
// 3.5.0
"807ddb7e46507d2a3b4e69614db057692a1dbc9e2af10d42848035020986c526",
// 3.999.17
"2dfd2ecbf89f60805829a9ebbc7506324242dba94c21dced5419395cba646918"
"2dfd2ecbf89f60805829a9ebbc7506324242dba94c21dced5419395cba646918",
// 3.999.20
"9a35df2a345ea9a92cdbe0b6660d47a0dc5a88b096890a34d1e4388ea813e59c",
]

// Checksum of the current version of default.css
// 3.999.20
const DEFAULT_CSS_SUM = "9a35df2a345ea9a92cdbe0b6660d47a0dc5a88b096890a34d1e4388ea813e59c"
// 4.0.3
const DEFAULT_CSS_SUM = "4ce7f019d49a86b7ec733997a70529dae901f069d011543debbdbb1f0e0a5798"

export function testCssSum(checksum) {
// Checks the default.css checksum to ensure the above are correct
Expand Down

0 comments on commit 1067f17

Please sign in to comment.