mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
Merge pull request #1036 from alphagov/header-bar-colours
Remove the red header meaning signed in to admin
This commit is contained in:
@@ -5,11 +5,9 @@
|
||||
<!--[if gt IE 8]><!-->
|
||||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main.css') }}" />
|
||||
<!--<![endif]-->
|
||||
{% if current_user.is_authenticated %}
|
||||
<style>
|
||||
#global-header-bar { background-color: {{header_colour}} }
|
||||
</style>
|
||||
{% endif %}
|
||||
<!--[if IE 6]>
|
||||
<link rel="stylesheet" media="screen" href="{{ asset_url('stylesheets/main-ie6.css') }}" />
|
||||
<![endif]-->
|
||||
|
||||
@@ -81,20 +81,20 @@ class Test(Development):
|
||||
|
||||
class Preview(Config):
|
||||
HTTP_PROTOCOL = 'https'
|
||||
HEADER_COLOUR = '#F47738' # $orange
|
||||
HEADER_COLOUR = '#F499BE' # $baby-pink
|
||||
CSV_UPLOAD_BUCKET_NAME = 'preview-notifications-csv-upload'
|
||||
|
||||
|
||||
class Staging(Config):
|
||||
SHOW_STYLEGUIDE = False
|
||||
HTTP_PROTOCOL = 'https'
|
||||
HEADER_COLOUR = '#F47738' # $orange
|
||||
HEADER_COLOUR = '#6F72AF' # $mauve
|
||||
CSV_UPLOAD_BUCKET_NAME = 'staging-notify-csv-upload'
|
||||
|
||||
|
||||
class Live(Config):
|
||||
SHOW_STYLEGUIDE = False
|
||||
HEADER_COLOUR = '#B10E1E' # $red
|
||||
HEADER_COLOUR = '#005EA5' # $govuk-blue
|
||||
HTTP_PROTOCOL = 'https'
|
||||
CSV_UPLOAD_BUCKET_NAME = 'live-notifications-csv-upload'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user