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
5 changes: 3 additions & 2 deletions yardang/shibuya.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ a.reference > img {
max-width: unset;
}

/* Shibuya ships its own copy button; hide the sphinx-copybutton duplicate */
.copybtn {
/* Shibuya ships its own copy button; hide the sphinx-copybutton duplicate.
Must match copybutton.css's `button.copybtn` specificity to win. */
button.copybtn {
display: none;
}
5 changes: 3 additions & 2 deletions yardang/sphinxawesome_theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ a.reference > img {
background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Hide duplicate copybtn */
.copybtn {
/* Hide the sphinx-copybutton duplicate; the theme ships its own button.copy.
Must match copybutton.css's `button.copybtn` specificity to win. */
button.copybtn {
display: none;
}

Expand Down