6f1eec9ca7
- Setting up base launch instance wizard to enable parallel development on steps in the work flow. - Adding business logic related code to openstack_dashboard project. - Using Horizon's well-defined plug-in architecture to hook launch instance to Horizon. Partially Implements: blueprint launch-instance-redesign Change-Id: Ibbbbfc7f49c58a78b0d1b29e363531d5ae1a9aab
19 lines
756 B
HTML
19 lines
756 B
HTML
{% comment %}
|
|
We want to have separate compressed css files for horizon.scss and dashboard.scss.
|
|
The reason for it is based on the fact that IE9 has a limit on the number of css rules
|
|
that can be parsed in a single css file. The limit is 4095 = (4k - 1). This causes some
|
|
css rules getting cut off if one css file to get more than 4k rules inside.
|
|
{% endcomment %}
|
|
|
|
{% load compress %}
|
|
|
|
{% compress css %}
|
|
<link href='{{ STATIC_URL }}dashboard/scss/horizon.scss' type='text/scss' media='screen' rel='stylesheet' />
|
|
{% endcompress %}
|
|
|
|
{% compress css %}
|
|
<link href='{{ STATIC_URL }}dashboard/dashboard.scss' type='text/scss' media='screen' rel='stylesheet' />
|
|
{% endcompress %}
|
|
|
|
<link rel="shortcut icon" href="{{ STATIC_URL }}dashboard/img/favicon.ico"/>
|