mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-09-19 04:59:01 +00:00
frontpage: Set icon size to 300%
Because the icons don't uniquely identify apps, we don't want to minimize the shortcut text too much. Rename center-header to center-info. Minor adjustments to templates for readability. Update changelog.
This commit is contained in:
parent
c501187af9
commit
66e3febc51
@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
- config: Handle clearing of domain name.
|
- config: Handle clearing of domain name.
|
||||||
- letsencrypt: When no domains are configured, show better message,
|
- letsencrypt: When no domains are configured, show better message,
|
||||||
and hide diagnostics button.
|
and hide diagnostics button.
|
||||||
|
- frontpage: Fix shortcut spacing issue.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- repro: Use firewalld provided SIP services.
|
- repro: Use firewalld provided SIP services.
|
||||||
@ -25,6 +26,8 @@ All notable changes to this project will be documented in this file.
|
|||||||
- frontpage: Don't show apps requiring login, unless logged in.
|
- frontpage: Don't show apps requiring login, unless logged in.
|
||||||
- ttrss: Show status block.
|
- ttrss: Show status block.
|
||||||
- frontpage: Make app icons larger.
|
- frontpage: Make app icons larger.
|
||||||
|
- frontpage: Center shortcut text under icons.
|
||||||
|
- frontpage: Move info to bottom and center.
|
||||||
|
|
||||||
## [0.11.0] - 2016-09-21
|
## [0.11.0] - 2016-09-21
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@ -160,7 +160,7 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
{% block content_row %}
|
{% block content_row %}
|
||||||
<div class="col-md-3 ">
|
<div class="col-md-3">
|
||||||
{% block submenu %}
|
{% block submenu %}
|
||||||
{% if submenu %}
|
{% if submenu %}
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
@ -172,7 +172,7 @@
|
|||||||
{% block sidebar %}
|
{% block sidebar %}
|
||||||
{# this sidebar should contain help texts but no menus #}
|
{# this sidebar should contain help texts but no menus #}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div><!--/col-->
|
||||||
|
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
{% block subsubmenu %}
|
{% block subsubmenu %}
|
||||||
@ -187,21 +187,21 @@
|
|||||||
{# main content goes here #}
|
{# main content goes here #}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div><!--/col-->
|
</div><!--/col-->
|
||||||
|
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
{% block icons %}
|
{% block icons %}
|
||||||
{# icons go here #}
|
{# icons go here #}
|
||||||
{% endblock %}
|
|
||||||
</div>
|
|
||||||
</div><!--/row-->
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
<div class="text-center">
|
|
||||||
{% block center-header %}
|
|
||||||
{# this center-header should contain help texts but no menus#}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div><!--/col-->
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
|
</div><!--/row-->
|
||||||
|
|
||||||
|
<div class="text-center">
|
||||||
|
{% block center-info %}
|
||||||
|
{# this center-info should contain help texts but no menus #}
|
||||||
|
{% endblock %}
|
||||||
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
|||||||
@ -38,10 +38,10 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<center>
|
<center>
|
||||||
<span class="{{ shortcut.icon }} glyphicon"
|
<span class="{{ shortcut.icon }} glyphicon"
|
||||||
style="font-size: 450%"></span>
|
style="font-size: 300%"></span>
|
||||||
<br>
|
<br>
|
||||||
{{ shortcut.label }}
|
{{ shortcut.label }}
|
||||||
</center>
|
</center>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -77,9 +77,10 @@
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
{% if user.is_authenticated and configure_url %}
|
{% if user.is_authenticated and configure_url %}
|
||||||
<a class="btn btn-primary btn-sm" style="margin-left : 10px; margin-bottom : 5px"
|
<a class="btn btn-primary btn-sm"
|
||||||
|
style="margin-left : 10px; margin-bottom : 5px"
|
||||||
href="{{ configure_url }}">
|
href="{{ configure_url }}">
|
||||||
{% trans "Configure »" %}</a>
|
{% trans "Configure »" %}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -88,7 +89,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
{% block center-header %}
|
{% block center-info %}
|
||||||
|
|
||||||
<h4>
|
<h4>
|
||||||
{% blocktrans trimmed %}
|
{% blocktrans trimmed %}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user