Merge remote-tracking branch 'ungleich/master' into bugfix/dcl_cms_plugins
This commit is contained in:
commit
50312db5f8
10 changed files with 97 additions and 34 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
1.5.5: 2018-03-22
|
||||||
|
* #4278: [dcl cms] edit options for cms navbar and header plugins
|
||||||
|
* bgfix: [dcl cms] fix link plugin issues and section image alignment
|
||||||
1.5.4: 2018-03-17
|
1.5.4: 2018-03-17
|
||||||
* bgfix: [dcl cms] update DCLNavbarPlugin to allow change of brand logo and url
|
* bgfix: [dcl cms] update DCLNavbarPlugin to allow change of brand logo and url
|
||||||
1.5.3: 2018-03-16
|
1.5.3: 2018-03-16
|
||||||
|
|
|
@ -132,6 +132,10 @@ class DCLNavbarPluginModel(CMSPlugin):
|
||||||
related_name="dcl_navbar_logo_dark",
|
related_name="dcl_navbar_logo_dark",
|
||||||
)
|
)
|
||||||
logo_url = models.URLField(max_length=300, null=True, blank=True)
|
logo_url = models.URLField(max_length=300, null=True, blank=True)
|
||||||
|
language_dropdown = models.BooleanField(
|
||||||
|
default=True,
|
||||||
|
help_text='Select to include the language selection dropdown.'
|
||||||
|
)
|
||||||
|
|
||||||
def get_logo_dark(self):
|
def get_logo_dark(self):
|
||||||
# used only if atleast one logo exists
|
# used only if atleast one logo exists
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.9.4 on 2018-03-19 20:46
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('datacenterlight', '0013_dclnavbarpluginmodel'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='dclnavbarpluginmodel',
|
||||||
|
name='language_dropdown',
|
||||||
|
field=models.BooleanField(default=True, help_text='Select to include the language selection dropdown.'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -58,6 +58,16 @@ textarea {
|
||||||
min-width: 180px;
|
min-width: 180px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lead {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.lead {
|
||||||
|
font-size: 21px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Top navbar */
|
/* Top navbar */
|
||||||
|
|
||||||
|
@ -435,17 +445,20 @@ textarea {
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-section.left .split-description {
|
.split-section.left .split-description {
|
||||||
/* width: 90%; */
|
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-section .split-description .lead {
|
.split-section .split-description .lead {
|
||||||
color: #3a3a3a;
|
color: #3a3a3a;
|
||||||
font-size: 21px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-section .space .split-description .lead {
|
@media (min-width: 768px) {
|
||||||
|
.split-section .split-description .lead {
|
||||||
|
font-size: 21px;
|
||||||
|
}
|
||||||
|
.split-section .space .split-description .lead {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.split-section.right .split-description {
|
.split-section.right .split-description {
|
||||||
|
@ -542,6 +555,7 @@ textarea {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: #999 !important;
|
color: #999 !important;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.price-calc-section .card {
|
.price-calc-section .card {
|
||||||
|
@ -770,17 +784,11 @@ textarea {
|
||||||
|
|
||||||
.ssdimg {
|
.ssdimg {
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
/* vertical-align: middle; */
|
|
||||||
/* display: inline-block; */
|
|
||||||
}
|
|
||||||
|
|
||||||
.ssdimg img {
|
|
||||||
max-width: 125px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
.ssdimg img {
|
.ssdimg img {
|
||||||
width: 100px;
|
max-height: 120px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1196,7 +1204,7 @@ footer {
|
||||||
max-width: 430px;
|
max-width: 430px;
|
||||||
}
|
}
|
||||||
.flex-row-rev .desc-text {
|
.flex-row-rev .desc-text {
|
||||||
max-width: 710px;
|
max-width: 600px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
.flex-row-rev .percent-text {
|
.flex-row-rev .percent-text {
|
||||||
|
|
|
@ -107,11 +107,15 @@
|
||||||
var href = $(this).attr('href');
|
var href = $(this).attr('href');
|
||||||
$('.navbar-collapse').removeClass('in');
|
$('.navbar-collapse').removeClass('in');
|
||||||
$('.navbar-collapse').addClass('collapsing');
|
$('.navbar-collapse').addClass('collapsing');
|
||||||
|
if (href[0] === "#") {
|
||||||
if ($(href).length) {
|
if ($(href).length) {
|
||||||
$('html, body').animate({
|
$('html, body').animate({
|
||||||
scrollTop: $(href).offset().top - 50
|
scrollTop: $(href).offset().top - 50
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
} else if (href) {
|
||||||
|
window.location = href;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="{{ instance.id }}" class="full-contact-section">
|
<div id="contact" class="full-contact-section">
|
||||||
<div class="intro-header-2 contact-section">
|
<div class="intro-header-2 contact-section">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
@ -10,13 +10,12 @@
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
{% url 'datacenterlight:index' as default_logo_url %}
|
|
||||||
{% if instance.logo_dark or instance.logo_light %}
|
{% if instance.logo_dark or instance.logo_light %}
|
||||||
<a href="{{ instance.logo_url|default:default_logo_url }}" id="logoBlack" class="navbar-brand topnav"><img src="{{ instance.get_logo_dark }}"></a>
|
<a href="{{ instance.logo_url|default:'/' }}" id="logoBlack" class="navbar-brand topnav"><img src="{{ instance.get_logo_dark }}"></a>
|
||||||
<a href="{{ instance.logo_url|default:default_logo_url }}" id="logoWhite" class="navbar-brand topnav"><img src="{{ instance.get_logo_light }}"></a>
|
<a href="{{ instance.logo_url|default:'/' }}" id="logoWhite" class="navbar-brand topnav"><img src="{{ instance.get_logo_light }}"></a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ default_logo_url }}" id="logoBlack" class="navbar-brand topnav"><img src="{% static 'datacenterlight/img/logo_black.svg' %}"></a>
|
<a href="/" id="logoBlack" class="navbar-brand topnav"><img src="{% static 'datacenterlight/img/logo_black.svg' %}"></a>
|
||||||
<a href="{{ default_logo_url }}" id="logoWhite" class="navbar-brand topnav"><img src="{% static 'datacenterlight/img/logo_white.svg' %}"></a>
|
<a href="/" id="logoWhite" class="navbar-brand topnav"><img src="{% static 'datacenterlight/img/logo_white.svg' %}"></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="collapse navbar-collapse" id="dcl-topnav">
|
<div class="collapse navbar-collapse" id="dcl-topnav">
|
||||||
|
@ -27,6 +26,7 @@
|
||||||
{% render_plugin plugin %}
|
{% render_plugin plugin %}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% if instance.language_dropdown %}
|
||||||
<li>
|
<li>
|
||||||
{% if LANGUAGE_CODE == 'en-us'%}
|
{% if LANGUAGE_CODE == 'en-us'%}
|
||||||
<a class="on-hover-border" href="{% change_lang 'de' %}">Deutsch <i class="fa fa-globe" aria-hidden="true"></i></a>
|
<a class="on-hover-border" href="{% change_lang 'de' %}">Deutsch <i class="fa fa-globe" aria-hidden="true"></i></a>
|
||||||
|
@ -34,6 +34,7 @@
|
||||||
<a class="on-hover-border" href="{% change_lang 'en-us' %}">English <i class="fa fa-globe" aria-hidden="true"></i></a>
|
<a class="on-hover-border" href="{% change_lang 'en-us' %}">English <i class="fa fa-globe" aria-hidden="true"></i></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</li>
|
</li>
|
||||||
|
{% endif %}
|
||||||
{% if not request.user.is_authenticated %}
|
{% if not request.user.is_authenticated %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{% url 'hosting:login' %}">{% trans "Login" %} <span class="fa fa-sign-in"></span></a>
|
<a href="{% url 'hosting:login' %}">{% trans "Login" %} <span class="fa fa-sign-in"></span></a>
|
||||||
|
|
20
ungleich_page/migrations/0020_auto_20180320_0216.py
Normal file
20
ungleich_page/migrations/0020_auto_20180320_0216.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.9.4 on 2018-03-19 20:46
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('ungleich_page', '0019_merge'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='ungleichheaderwithbackgroundvideoslideritem',
|
||||||
|
name='btn_link',
|
||||||
|
field=models.CharField(blank=True, help_text='Url or #id to navigate on click. If this field is left empty, no button would be displayed.', max_length=100, null=True),
|
||||||
|
),
|
||||||
|
]
|
|
@ -125,9 +125,12 @@ class UngleichHeaderWithBackgroundVideoSliderItem(CMSPlugin):
|
||||||
blank=True, null=True,
|
blank=True, null=True,
|
||||||
help_text='An optional description for this slide.'
|
help_text='An optional description for this slide.'
|
||||||
)
|
)
|
||||||
btn_link = models.URLField(
|
btn_link = models.CharField(
|
||||||
blank=True, null=True,
|
max_length=100, blank=True, null=True,
|
||||||
help_text='If this field is left empty, no button would be displayed.'
|
help_text=(
|
||||||
|
'Url or #id to navigate on click. If this field is left empty, no '
|
||||||
|
'button would be displayed.'
|
||||||
|
)
|
||||||
)
|
)
|
||||||
btn_text = models.CharField(
|
btn_text = models.CharField(
|
||||||
blank=True, null=True, max_length=50,
|
blank=True, null=True, max_length=50,
|
||||||
|
|
|
@ -22,6 +22,6 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if instance.btn_link %}
|
{% if instance.btn_link %}
|
||||||
{% trans "Learn More" as default_btn_text %}
|
{% trans "Learn More" as default_btn_text %}
|
||||||
<a class="btn btn-trans" href="{{ instance.btn_link }}">{{ instance.btn_text|default:default_btn_text }}</a>
|
<a class="btn btn-trans page-scroll url" href="{{ instance.btn_link }}">{{ instance.btn_text|default:default_btn_text }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue