4b5886d276
The padding around the Top Nav Bar's Dropdown Icons have been done with actual text spaces, instead of relying on padding that is set via css. This makes it very difficult to customize the padding around these elements at a global level. Some contextual classes have been added for ease of branding-level customization. Change-Id: I6768135351637db8a950a4b44366880817ce2df3 Closes-bug: #1537608
13 lines
437 B
HTML
13 lines
437 B
HTML
<span class="fa fa-list-alt"></span>
|
|
<span class="context-overview">
|
|
{% if domain_supported %}
|
|
<span class="context-domain">{{ domain_name }}</span>
|
|
<span class="fa fa-circle context-delimiter"></span>
|
|
{% endif %}
|
|
<span class="context-project">{{ project_name }}</span>
|
|
{% if multi_region %}
|
|
<span class="fa fa-circle context-delimiter"></span>
|
|
<span class="context-region">{{ region_name }}</span>
|
|
{% endif %}
|
|
</span>
|