Skip to content
Open
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
15 changes: 15 additions & 0 deletions python_docs_theme/static/pydoctheme.css
Original file line numberDiff line numberDiff line change
Expand Up@@ -149,6 +149,7 @@ div.sphinxsidebar{
border-radius: 5px;
line-height: 130%;
font-size: smaller;
transition: width 0.3s ease;
}

div.sphinxsidebar h3,
Expand DownExpand Up@@ -205,6 +206,9 @@ div.sphinxsidebar input[type='text']{
width: 12px;
border-radius: 0 5px 5px 0;
border-left: none;
position: absolute;
right: 0;
transition: background-color 0.3s ease, color 0.3s ease;
}

#sidebarbutton span{
Expand DownExpand Up@@ -761,3 +765,14 @@ div.versionremoved .versionmodified{
display: none;
}
}

/* Animation */
@media (prefers-reduced-motion: reduce){
div.document{
transition: none;
}

#sidebarbutton{
transition: none;
}
}
Loading