Skip to content
Open

test #2298

Show file tree
Hide file tree
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 omero/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.wy-side-nav-search, .wy-nav-top {
background: #0b750a;
}
14 changes: 14 additions & 0 deletions omero/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{% extends "!layout.html" %}
{% block footer %} {{ super() }}

<style>
/* Sidebar header (and topbar for mobile) */
.wy-side-nav-search, .wy-nav-top {
background: #00ff00;
}
/* Sidebar */
.wy-nav-side {
background: #ff0000;
}
</style>
{% endblock %}
1 change: 1 addition & 0 deletions omero/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ def copy_legacy_redirects(app, exception):

def setup(app):
app.connect('build-finished', copy_legacy_redirects)
app.add_css_file('custom.css')
app.add_crossref_type(
directivename = "property",
rolename = "property",
Expand Down