Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Horizontally align the collapse button icon #219

Merged
merged 1 commit into from
Feb 3, 2025
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
10 changes: 3 additions & 7 deletions python_docs_theme/static/pydoctheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ div.sphinxsidebar input[type='text'] {
}

#sidebarbutton {
display: flex;
justify-content: center;
align-items: center;
/* Sphinx 4.x and earlier compat */
height: 100%;
background-color: #CCCCCC;
Expand All @@ -200,19 +203,12 @@ div.sphinxsidebar input[type='text'] {
cursor: pointer;
padding-top: 1px;
float: right;
display: table;
/* after Sphinx 4.x and earlier is dropped, only the below is needed */
width: 12px;
border-radius: 0 5px 5px 0;
border-left: none;
}

#sidebarbutton span {

Choose a reason for hiding this comment

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

Can we achieve compatibility without deleting this?

/* Sphinx 4.x and earlier compat */
display: table-cell;
vertical-align: middle;
}

#sidebarbutton:hover {
background-color: #AAAAAA;
}
Expand Down
Loading