Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/changelog-1.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All changes included in 1.8:

- ([#678](https://github.com/quarto-dev/quarto-cli/issues/678)): a11y - Provide appropriate `aria-label` to search button.
- ([#726](https://github.com/quarto-dev/quarto-cli/issues/726)): a11y - Provide `.screen-reader-only` callout type when callout text doesn't naturally include the type.
- ([#5538](https://github.com/quarto-dev/quarto-cli/issues/5538)): Fix code-copy button style so that scrolling behaves properly.
- ([#10983](https://github.com/quarto-dev/quarto-cli/issues/10983)): Fix spacing inconsistency between paras and first section headings.
- ([#12259](https://github.com/quarto-dev/quarto-cli/issues/12259)): Fix conflict between `html-math-method: katex` and crossref popups (author: @benkeks).
- ([#12734](https://github.com/quarto-dev/quarto-cli/issues/12734)): `highlight-style` now correctly supports setting a different `light` and `dark`.
Expand Down
3 changes: 1 addition & 2 deletions src/resources/formats/html/_quarto-rules.scss
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,7 @@ details > summary > p:only-child {
}

// codeCopy
pre.sourceCode,
code.sourceCode {
div.sourceCode {
position: relative;
}

Expand Down
4 changes: 2 additions & 2 deletions src/resources/formats/html/bootstrap/_bootstrap-rules.scss
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ pre.sourceCode {
border: none;
}
font-size: $code-block-font-size;
overflow: visible !important;
overflow-y: auto !important;
@if $code-block-bg {
padding: $code-block-bg-padding;
}
Expand All @@ -890,7 +890,7 @@ pre.sourceCode > code.sourceCode {
}

div.sourceCode {
overflow-y: hidden;
position: relative;
}

.callout div.sourceCode {
Expand Down
Loading