mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
[FEAT] Allow changing header image scaling on home page
This commit is contained in:
@@ -350,7 +350,7 @@ CONSTANCE_CONFIG = {
|
|||||||
'Help text to display at the top of relationship forms.'),
|
'Help text to display at the top of relationship forms.'),
|
||||||
'DEPLOYMENT_URL': (
|
'DEPLOYMENT_URL': (
|
||||||
'http://localhost',
|
'http://localhost',
|
||||||
'URL at which this mapper tool is accessible'),
|
'URL at which this mapper tool is accessible - do NOT include a trailing forward slash'),
|
||||||
'PARENT_PROJECT_NAME': (
|
'PARENT_PROJECT_NAME': (
|
||||||
'',
|
'',
|
||||||
'Parent project name'),
|
'Parent project name'),
|
||||||
@@ -370,6 +370,9 @@ CONSTANCE_CONFIG = {
|
|||||||
'800x500.png',
|
'800x500.png',
|
||||||
'Homepage header image',
|
'Homepage header image',
|
||||||
'image_field'),
|
'image_field'),
|
||||||
|
'HOMEPAGE_HEADER_IMAGE_SHRINK': (
|
||||||
|
False,
|
||||||
|
'Shrink the homepage header image to display the whole image at all times'),
|
||||||
'HOMEPAGE_CARD_1_TITLE': (
|
'HOMEPAGE_CARD_1_TITLE': (
|
||||||
'Step 1',
|
'Step 1',
|
||||||
'Homepage card #1 title'),
|
'Homepage card #1 title'),
|
||||||
@@ -418,6 +421,7 @@ CONSTANCE_CONFIG_FIELDSETS = {
|
|||||||
'PROJECT_TAGLINE',
|
'PROJECT_TAGLINE',
|
||||||
),
|
),
|
||||||
'Homepage configuration': (
|
'Homepage configuration': (
|
||||||
|
'HOMEPAGE_HEADER_IMAGE_SHRINK',
|
||||||
'HOMEPAGE_HEADER_IMAGE',
|
'HOMEPAGE_HEADER_IMAGE',
|
||||||
'HOMEPAGE_CARD_1_TITLE',
|
'HOMEPAGE_CARD_1_TITLE',
|
||||||
'HOMEPAGE_CARD_1_DESCRIPTION',
|
'HOMEPAGE_CARD_1_DESCRIPTION',
|
||||||
|
|||||||
@@ -12,6 +12,13 @@ header.masthead {
|
|||||||
z-index: -2;
|
z-index: -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header.masthead.masthead-shrink {
|
||||||
|
-webkit-background-size: contain;
|
||||||
|
-moz-background-size: contain;
|
||||||
|
-o-background-size: contain;
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
|
|
||||||
header.masthead .overlay {
|
header.masthead .overlay {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-color: #212529;
|
background-color: #212529;
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
{% block before_content %}
|
{% block before_content %}
|
||||||
|
|
||||||
{% get_media_prefix as MEDIA_URL %}
|
{% get_media_prefix as MEDIA_URL %}
|
||||||
<header class="container-fluid masthead text-white text-left"
|
<header class="container-fluid masthead text-white text-left {% if config.HOMEPAGE_HEADER_IMAGE_SHRINK %}masthead-shrink{% endif %}"
|
||||||
style="background-image: url('{{ MEDIA_URL }}{{ config.HOMEPAGE_HEADER_IMAGE }}')">
|
style="background-image: url('{{ MEDIA_URL }}{{ config.HOMEPAGE_HEADER_IMAGE }}')">
|
||||||
<div class="overlay"></div>
|
<div class="overlay"></div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user