Merge "Compress murano-dashboard css"

This commit is contained in:
Jenkins 2015-09-24 16:42:25 +00:00 committed by Gerrit Code Review
commit 9f25a517da
10 changed files with 47 additions and 22 deletions

View File

@ -1,3 +0,0 @@
div.left {
margin-top: 25px;
}

View File

@ -1,12 +1,19 @@
{% extends 'murano_base.html' %}
{% load i18n sizeformat %}
{% load static %}
{% load compress %}
{% load url from future %}
{% block title %}{% trans "Application Details" %}: {{ app.name }}{% endblock %}
{% block css %}
{{ block.super }}
{% compress css %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}">
<link rel="stylesheet" href="{% static 'horizon/lib/font-awesome/css/font-awesome.min.css' %}">
{% endcompress %}
{% endblock %}
{% block page_header %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}">
<link rel="stylesheet" href="{% static 'horizon/lib/font-awesome/css/font-awesome.min.css' %}">
{% include "catalog/_details_page_header.html" with name=app.name %}
{% endblock page_header %}

View File

@ -1,15 +1,20 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
{% load compress %}
{% load url from future %}
{% block title %}{% trans "Applications" %}{% endblock %}
{% block css %}
{{ block.super }}
{% compress css %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}">
<link rel="stylesheet" href="{% static 'horizon/lib/font-awesome/css/font-awesome.min.css' %}">
{% endcompress %}
{% endblock %}
{% block page_header %}
<link rel="stylesheet"
href="{% static 'muranodashboard/css/catalog.css' %}">
<link rel="stylesheet"
href="{% static 'horizon/lib/font-awesome/css/font-awesome.min.css' %}">
{% include "horizon/common/_page_header.html" with title=_("Applications") %}
{% endblock page_header %}

View File

@ -1,7 +1,5 @@
{% load i18n static %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/reports.css' %}">
<div class="clearfix">
<h3 class="table-title">{% trans "Deployment Logs" %}</h3>
</div>
@ -9,4 +7,4 @@
{% for report in reports %}
<div title="{{report.level|capfirst}}" class="report-{{report.level}}">{{report.created}} &mdash; {{report.text | urlize}}</div>
{% endfor %}
</div>
</div>

View File

@ -1,6 +1,7 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
{% load compress %}
{% block title %}{% trans "Environments" %}{% endblock %}
{% block page_header %}
@ -13,5 +14,7 @@
{% block css %}
{{ block.super }}
<link href='{{ STATIC_URL }}muranodashboard/css/catalog.css' type='text/css' media='screen' rel='stylesheet' />
{% compress css %}
<link href="{% static 'muranodashboard/css/catalog.css' %}" type='text/css' media='screen' rel='stylesheet' />
{% endcompress %}
{% endblock %}

View File

@ -10,7 +10,6 @@
{% block modal-header %}{% trans 'Import Bundle' %}{% endblock %}
{% block modal-body %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/one_field_form.css' %}">
<div class="left" >
{{ wizard.management_form }}
{% if wizard.form.forms %}

View File

@ -11,7 +11,6 @@
{% block modal-header %}{% trans 'Import Package' %}{% endblock %}
{% block modal-body %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/one_field_form.css' %}">
<div class="left" >
{{ wizard.management_form }}
{% if wizard.form.forms %}

View File

@ -1,12 +1,18 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
{% load compress %}
{% block title %}{% trans "Package Definitions" %}{% endblock %}
{% block css %}
{{ block.super }}
{% compress css %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/packages.css' %}">
{% endcompress %}
{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Package Definitions") %}
<link rel="stylesheet"
href="{% static 'muranodashboard/css/packages.css' %}">
{% endblock page_header %}
{% block main %}
{{ table.render }}

View File

@ -1,7 +1,16 @@
{% extends 'murano_base.html' %}
{% load i18n sizeformat %}
{% load static %}
{% load compress %}
{% block title %}{% trans "Component Details" %}{% endblock %}
{% block css %}
{{ block.super }}
{% compress css %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/reports.css' %}">
{% endcompress %}
{% endblock %}
{% block page_header %}
{% include "services/_detail_page_header.html" %}
{% endblock page_header %}

View File

@ -1,6 +1,7 @@
{% extends 'murano_base.html' %}
{% load i18n %}
{% load static %}
{% load compress %}
{% load horizon %}
{% load custom_filters %}
{% block title %}{% trans "Components" %}{% endblock %}
@ -18,11 +19,12 @@
{% endblock %}
{% block css %}
{% include "_stylesheets.html" %}
<link rel="stylesheet"
href="{% static 'muranodashboard/css/catalog.css' %}"/>
<link rel="stylesheet"
href="{% static 'muranodashboard/css/components.css' %}">
{{ block.super }}
{% compress css %}
<link rel="stylesheet" href="{% static 'muranodashboard/css/catalog.css' %}"/>
<link rel="stylesheet" href="{% static 'muranodashboard/css/components.css' %}">
<link rel="stylesheet" href="{% static 'muranodashboard/css/reports.css' %}">
{% endcompress %}
{% endblock %}
{% block js %}