Compress murano-dashboard css
This commit gathers murano-related css files, into css section and compresses them for better space and performance. Removes no longer required css from modal forms. Change-Id: Iaeeec20bd9c6b89e46fb65f4da2e67038acef849 Closes-Bug: #1358233
This commit is contained in:
parent
5ef1386eba
commit
85765e8ddc
@ -1,3 +0,0 @@
|
||||
div.left {
|
||||
margin-top: 25px;
|
||||
}
|
@ -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 %}
|
||||
|
||||
|
@ -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 %}
|
||||
|
||||
|
@ -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}} — {{report.text | urlize}}</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -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 %}
|
||||
|
@ -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 %}
|
||||
|
@ -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 %}
|
||||
|
@ -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 }}
|
||||
|
@ -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 %}
|
||||
|
@ -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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user