-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
os.path -> pathlib.Path, change in docs
- Loading branch information
Showing
9 changed files
with
223 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 21 additions & 9 deletions
30
biobb_common/docs/source/_static/theme_overrides.css
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
/* override table width restrictions as found on https://github.com/getpelican/pelican/issues/1311 */ | ||
.wy-table-responsive table td, .wy-table-responsive table th { | ||
/* !important prevents the common CSS stylesheets from | ||
overriding this as on RTD they are loaded after this stylesheet */ | ||
white-space: normal !important; | ||
} | ||
|
||
.wy-table-responsive { | ||
overflow: visible !important; | ||
} | ||
a { color:#dcbc3c; } | ||
a:hover { color:#29b3b6; } | ||
a:visited { color:#9e8830; } | ||
|
||
.highlight { background: #fffae4; } | ||
|
||
.wy-table-responsive table td, .wy-table-responsive table th { white-space: normal !important; } | ||
.wy-table-responsive { overflow: visible !important; } | ||
|
||
.wy-menu-vertical a:active { background-color: #29b3b6; } | ||
|
||
.wy-nav-content { max-width: 1200px; margin: unset; } | ||
|
||
.wy-side-nav-search { background-color: #29b3b6; } | ||
.wy-side-nav-search>a:hover { background:none; } | ||
.wy-side-nav-search>div.version { color:rgba(255, 255, 255, 1); } | ||
|
||
/* !!! */ | ||
.ethical-rtd.ethical-dark-theme { display: none; } | ||
|
||
.icon:before { display:none; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$(document).ready(function(){ | ||
$('.icon.icon-home').html('<img src="_static/logo.png" class="logo" alt="Logo">'); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.