Skip to content
Merged
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
3 changes: 3 additions & 0 deletions src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,9 @@ so that we can apply CSS-filters to change the arrow color in themes */
align-items: center;
cursor: pointer;
}
.setting-check input {
flex-shrink: 0,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah right, it was invalid CSS: it's supposed to be a colon and not a comma. Hence why it's important to add GUI test.

}

.setting-radio input:checked {
box-shadow: inset 0 0 0 3px var(--main-background-color);
Expand Down
Loading