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

FP-1022 a.k.a. Task/gh 191 support light navbar for dark logos #386

Closed
Closed
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
14 changes: 13 additions & 1 deletion server/conf/cms/secrets.sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,22 @@
}

########################
# BRANDING & LOGOS & FAVICON
# BRANDING SETTINGS
########################
# TODO: GH-59: Use Dict Not Array for Branding Settings

# Visual theme for the CMS

"""
Optional theming of CMS (certain themes may only affect some elements)

Usage:
- None (standard theme)
- 'has-dark-logo'
"""

_THEME = None

# Branding settings for portal and navigation.

"""
Expand Down
2 changes: 1 addition & 1 deletion server/conf/docker/docker-compose-dev.all.debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ services:
container_name: core_portal_workers

docs:
image: taccwma/frontera-docs:7af12ae
image: taccwma/frontera-docs:aea2e4f
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved
volumes:
- ../../docs:/docs/site
command: ["mkdocs", "build"]
Expand Down
3 changes: 2 additions & 1 deletion server/portal/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
<link rel="canonical" href="{{request.get_full_path}}">
<base href="/">
{% block head_extra %}{% endblock %}
<!-- styles -->
<!-- CMS Assets -->
<link id="css-site-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<script id="css-site-script" type="module" src="/static/site_cms/js/site.css.js"></script>
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved
<link id="css-site-header" rel="stylesheet" href="/static/site_cms/css/build/site.header.css" />
<!-- Vendor CSS -->
{# FP-526: Stop using Font Awesome icons; start using Cortal icons #}
Expand Down