summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 01:59:54 +0100
committerAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2016-01-12 04:05:49 +0100
commitecdf89ee5c8271b9af3640c8633be7a869077c67 (patch)
tree55e083a5294adaf9e7fcf7d9b7eb1d372f95dc91 /templates
parent9fe98586186522605653a2439edc124fe088cc67 (diff)
downloadpadlite-teams-ecdf89ee5c8271b9af3640c8633be7a869077c67.tar.gz
padlite-teams-ecdf89ee5c8271b9af3640c8633be7a869077c67.tar.bz2
padlite-teams-ecdf89ee5c8271b9af3640c8633be7a869077c67.zip
templates: Replace glyphicon with fontawesome
Diffstat (limited to 'templates')
-rw-r--r--templates/group.html4
-rw-r--r--templates/layout.html7
2 files changed, 6 insertions, 5 deletions
diff --git a/templates/group.html b/templates/group.html
index 1e3a06c..9cbd832 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -45,10 +45,10 @@
</td>
<td class="col-sm-2 text-right">
<a href="{{ url_for('pad_change', group_name=group.name, pad_name=pad.name) }}" class="btn btn-xs btn-info">
- <span class="glyphicon glyphicon-cog"></span>
+ <span class="fa fa-wrench fa-lg"></span>
</a>
<a href="{{ url_for('pad_delete', group_name=group.name, pad_name=pad.name) }}" class="btn btn-xs btn-danger">
- <span class="glyphicon glyphicon-remove"></span>
+ <span class="fa fa-trash fa-lg"></span>
</a>
</td>
</tr>
diff --git a/templates/layout.html b/templates/layout.html
index 5439633..bf835a9 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -7,6 +7,7 @@
<!-- Bootstrap -->
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/bootstrap-theme.min.css') }}" rel="stylesheet">
+ <link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/custom.css') }}" rel="stylesheet">
</head>
@@ -49,7 +50,7 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
- <span class="glyphicon glyphicon-user"></span>
+ <span class="fa fa-user"></span>
{{ current_user.name }}
<span class="caret"></span>
</a>
@@ -57,7 +58,7 @@
<ul class="dropdown-menu">
<li>
<a href="{{ url_for('logout') }}">
- <span class="glyphicon glyphicon-log-out"></span>
+ <span class="fa fa-sign-out fa-lg"></span>
Logout
</a>
</li>
@@ -67,7 +68,7 @@
{% else %}
<li>
<a href="{{ url_for('login') }}">
- <span class="glyphicon glyphicon-log-in"></span>
+ <span class="fa fa-sign-in fa-lg"></span>
Login
</a>
</li>