diff --git a/plinth/templates/app-header.html b/plinth/templates/app-header.html index be1c12ddb..5470a0639 100644 --- a/plinth/templates/app-header.html +++ b/plinth/templates/app-header.html @@ -17,11 +17,16 @@
{% block pagetitle %} - {% if setup %} -

{% trans "Installation" %}: {{ app_info.short_description|default:'' }} ({{ app_info.name }})

- {% else %} -

{{ app_info.name }}

- {% endif %} +
+ {% if setup %} +

{% trans "Installation" %}: {{ app_info.name }}

+ {% else %} +

{{ app_info.name }}

+ {% endif %} + {% if app_info.short_description %} +

{{ app_info.short_description }}

+ {% endif %} +
{% endblock %}
{% if is_enabled %} diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css index 0af361868..857364a21 100644 --- a/static/themes/default/css/plinth.css +++ b/static/themes/default/css/plinth.css @@ -568,6 +568,14 @@ a.menu_link_active { margin: auto 0; } +.app-titles h3 { + margin-top: -0.5rem; + margin-bottom: 1.6rem; + font-size: 1.6rem; + font-weight: normal; + font-style: italic; +} + .app-toggle-container { display: none; flex-flow: row;