Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-36590: [Docs] Support Pydata Sphinx Theme 0.14.0#36591
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
e9ac3f7d8c3a6c7fc77e2a587e905f81509b419680551da4eebcfbf6040d7094bc4841d62971c73ee2ca614ea75aa3e5e35faf28653abd8c628e36efd1363d1656b375c702dbd8776f56711bbfa9107efe94fdbbe05eedb803a3360cb970c5d66af29ad6293689f63b2cdcbd1File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -21,43 +21,15 @@ | ||
| /* Customizing with theme CSS variables */ | ||
| :root { | ||
| --pst-color-active-navigation: 215, 70, 51; | ||
| --pst-color-link-hover: 215, 70, 51; | ||
| --pst-color-headerlink: 215, 70, 51; | ||
| /* Use normal text color (like h3, ..) instead of primary color */ | ||
| --pst-color-h1: var(--color-text-base); | ||
| --pst-color-h2: var(--color-text-base); | ||
| /* Use softer blue from bootstrap's default info color */ | ||
| --pst-color-info: 23, 162, 184; | ||
| --pst-header-height: 0px; | ||
| } | ||
| code { | ||
| color: rgb(215, 70, 51); | ||
| } | ||
| .footer { | ||
| text-align: center; | ||
| } | ||
| /* Ensure the logo is properly displayed */ | ||
| .navbar-brand { | ||
| height: auto; | ||
| width: auto; | ||
| } | ||
| a.navbar-brand img { | ||
| height: auto; | ||
| width: auto; | ||
| max-height: 15vh; | ||
| max-width: 100%; | ||
| /* Change header hight to make the logo a bit larger */ | ||
| --pst-header-height: 6rem; | ||
AlenkaF marked this conversation as resolved.
Outdated
Uh oh!There was an error while loading. Please reload this page. | ||
| /* Make headings more bold */ | ||
| --pst-font-weight-heading: 600; | ||
jorisvandenbossche marked this conversation as resolved.
Outdated
Uh oh!There was an error while loading. Please reload this page. | ||
| } | ||
| /* Contibuting landing page overview cards */ | ||
| .contrib-card { | ||
| background: #fff; | ||
| border-radius: 0; | ||
| padding: 30px 10px 20px 10px; | ||
| margin: 10px 0px; | ||
| @@ -70,12 +42,12 @@ a.navbar-brand img { | ||
| .contrib-card .sd-card-img-top { | ||
| margin: 2px; | ||
| height: 75px; | ||
| background: none !important; | ||
| } | ||
| .contrib-card .sd-card-title { | ||
| /* color: rgb(var(--pst-color-h1)) !important; */ | ||
| color: var(--pst-color-primary); | ||
| font-size: var(--pst-font-size-h3); | ||
| /* font-weight: bold; */ | ||
| padding: 1rem 0rem 0.5rem 0rem; | ||
| } | ||
| @@ -112,48 +84,3 @@ dl.cpp.enumerator { | ||
| p.breathe-sectiondef-title { | ||
| margin-top: 1rem; | ||
| } | ||
| /* Limit the max height of the sidebar navigation section. Because in our | ||
| custimized template, there is more content above the navigation, i.e. | ||
| larger logo: if we don't decrease the max-height, it will overlap with | ||
| the footer. | ||
| Details: min(15vh, 110px) for the logo size, 8rem for search box etc*/ | ||
| @media (min-width:720px) { | ||
| @supports (position:-webkit-sticky) or (position:sticky) { | ||
| .bd-links { | ||
| max-height: calc(100vh - min(15vh, 110px) - 8rem) | ||
| } | ||
| } | ||
| } | ||
| /* Styling to get the version dropdown and search box side-by-side on wide screens */ | ||
| #version-search-wrapper { | ||
| width: inherit; | ||
| display: flex; | ||
| flex-wrap: wrap; | ||
| justify-content: left; | ||
| align-items: center; | ||
| } | ||
| #version-button { | ||
| padding-left: 0.5rem; | ||
| padding-right: 1rem; | ||
| } | ||
| #search-box { | ||
| flex: 1 0 12em; | ||
| } | ||
| /* Fix table text wrapping in RTD theme, | ||
| * see https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html | ||
| */ | ||
| @media screen { | ||
| table.docutils td { | ||
| /* !important prevents the common CSS stylesheets from overriding | ||
| this as on RTD they are loaded after this stylesheet */ | ||
| white-space: normal !important; | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,62 +1,73 @@ | ||
| [ | ||
| { | ||
| "name": "14.0 (dev)", | ||
| "version": "dev/" | ||
| "version": "dev/", | ||
| "url": "https://arrow.apache.org/docs/dev/" | ||
| }, | ||
| { | ||
| "name": "13.0 (stable)", | ||
| "version": "" | ||
| "version": "", | ||
| "url": "https://arrow.apache.org/docs/", | ||
| "preferred": true | ||
| }, | ||
| { | ||
| "name": "12.0", | ||
| "version": "12.0/" | ||
| }, | ||
| { | ||
| "name": "12.0", | ||
| "version": "12.0/" | ||
| "version": "12.0/", | ||
| "url": "https://arrow.apache.org/docs/12.0/" | ||
| }, | ||
| { | ||
| "name": "11.0", | ||
| "version": "11.0/" | ||
| "version": "11.0/", | ||
| "url": "https://arrow.apache.org/docs/11.0/" | ||
| }, | ||
| { | ||
| "name": "10.0", | ||
| "version": "10.0/" | ||
| "version": "10.0/", | ||
| "url": "https://arrow.apache.org/docs/10.0/" | ||
| }, | ||
| { | ||
| "name": "9.0", | ||
| "version": "9.0/" | ||
| "version": "9.0/", | ||
| "url": "https://arrow.apache.org/docs/9.0/" | ||
| }, | ||
| { | ||
| "name": "8.0", | ||
| "version": "8.0/" | ||
| "version": "8.0/", | ||
| "url": "https://arrow.apache.org/docs/8.0/" | ||
| }, | ||
| { | ||
| "name": "7.0", | ||
| "version": "7.0/" | ||
| "version": "7.0/", | ||
| "url": "https://arrow.apache.org/docs/7.0/" | ||
| }, | ||
| { | ||
| "name": "6.0", | ||
| "version": "6.0/" | ||
| "version": "6.0/", | ||
| "url": "https://arrow.apache.org/docs/6.0/" | ||
| }, | ||
| { | ||
| "name": "5.0", | ||
| "version": "5.0/" | ||
| "version": "5.0/", | ||
| "url": "https://arrow.apache.org/docs/5.0/" | ||
| }, | ||
| { | ||
| "name": "4.0", | ||
| "version": "4.0/" | ||
| "version": "4.0/", | ||
| "url": "https://arrow.apache.org/docs/4.0/" | ||
| }, | ||
| { | ||
| "name": "3.0", | ||
| "version": "3.0/" | ||
| "version": "3.0/", | ||
| "url": "https://arrow.apache.org/docs/3.0/" | ||
| }, | ||
| { | ||
| "name": "2.0", | ||
| "version": "2.0/" | ||
| "version": "2.0/", | ||
| "url": "https://arrow.apache.org/docs/2.0/" | ||
| }, | ||
| { | ||
| "name": "1.0", | ||
| "version": "1.0/" | ||
| "version": "1.0/", | ||
| "url": "https://arrow.apache.org/docs/dev/" | ||
| } | ||
| ] |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.