FIX: fixed css (space between page header and page body)

This commit is contained in:
2019-03-25 10:54:22 +01:00
parent eebf02b66c
commit 94402fb5d0
24 changed files with 63 additions and 46 deletions

View File

@@ -5,7 +5,7 @@
{% block head-title %}{% block form-title %}{{ form.form_title }}{% endblock form-title %} - {{ block.super }}{% endblock head-title %}
{% block page-container-fluid %}
<h3>{% block form-header %}{{ form.form_title }}{% endblock form-header %}</h3>
<h3 class="top-most">{% block form-header %}{{ form.form_title }}{% endblock form-header %}</h3>
{% block form-errors %}
{% bootstrap_form_errors form %}
{% endblock form-errors %}

View File

@@ -110,7 +110,7 @@
{% endblock modals %}
{% block page-container-fluid %}
<div class="action-tabs">
<div class="action-tabs top-most">
<div class="pull-right">
{% if has_permission_submit %}
<a id="btn-submit" class="btn {% if not is_submitted %}btn-success{% else %}btn-default disabled{% endif %}"

View File

@@ -4,7 +4,7 @@
{% load dav_events %}
{% block page-container-fluid %}
<div class="action-tabs">
<div class="action-tabs top-most">
<div class="pull-right">
<a id="btn-event-create" class="btn btn-primary"
href="{% url 'dav_events:create' %}">

View File

@@ -3,7 +3,7 @@
{% load i18n %}
{% block page-container-fluid %}
<div class="action-tabs">
<div class="action-tabs top-most">
<div class="pull-right">
<a class="btn btn-primary"
href="{% url 'dav_events:create' %}">

View File

@@ -34,7 +34,7 @@
{% endblock head-additional %}
{% block page-container-fluid %}
<div class="action-tabs">
<div class="action-tabs top-most">
<ul class="nav nav-tabs" role="tablist">
<li>
<a href="{% url 'dav_events:list' %}">{% trans 'Veranstaltungsliste' %}</a>

View File

@@ -3,7 +3,7 @@
{% load i18n %}
{% block page-container-fluid %}
<h3>{% trans 'Veranstaltungen' %}</h3>
<h3 class="top-most">{% trans 'Veranstaltungen' %}</h3>
<div class="well">
<p class="lead">Neue Veranstaltung eintragen...</p>
<p>Hier kannst du Touren und Kurse anmelden, die du anbieten möchtest.</p>

View File

@@ -3,7 +3,7 @@
{% block page-container %}
{% if text %}
<div class="panel panel-{{ status }}">
<div class="panel panel-{{ status }} top-most">
<div class="panel-heading">
{{ message }}
</div>
@@ -12,7 +12,7 @@
</div>
</div>
{% else %}
<div class="alert alert-{{ status }}" role="alert">
<div class="alert alert-{{ status }} top-most" role="alert">
{{ message }}
</div>
{% endif %}