Changements mineurs concernant l'interface

Détails:
- Ajout d'une icône
- Modifications concernant les images de profils des utilisateurs
- Changement de l'ordre des partitions
This commit is contained in:
augustin64 2022-08-24 22:53:51 +02:00
parent f36bc93e32
commit 664266bafd
4 changed files with 6 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 KiB

View File

@ -218,6 +218,9 @@ input[type=submit] {
border-width: 1px; border-width: 1px;
border-color: black; border-color: black;
margin: 1px; margin: 1px;
color: white;
text-shadow: 1px 1px 4px #000000;
font-size: 18px;
} }
#users-list { #users-list {

View File

@ -27,7 +27,7 @@
{% block content %} {% block content %}
{% if partitions|length != 0 %} {% if partitions|length != 0 %}
<div id="partitions-grid"> <div id="partitions-grid">
{% for partition in partitions %} {% for partition in partitions | reverse %}
<a href="{{ album.uuid }}/{{ partition['uuid'] }}"> <a href="{{ album.uuid }}/{{ partition['uuid'] }}">
<div class="partition" id="partition-{{ partition['uuid'] }}"> <div class="partition" id="partition-{{ partition['uuid'] }}">
<img class="partition-thumbnail" src="/static/thumbnails/{{ partition['uuid'] }}.jpg"> <img class="partition-thumbnail" src="/static/thumbnails/{{ partition['uuid'] }}.jpg">

View File

@ -5,6 +5,8 @@
<title>{% block title %}{% endblock %} - PartitionCloud</title> <title>{% block title %}{% endblock %} - PartitionCloud</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='mobile.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='mobile.css') }}">
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icon.png') }}" />
<link rel="apple-touch-icon" href="{{ url_for('static', filename='icon.png') }}">
</head> </head>
<nav> <nav>
<h1><a href="{{ url_for('albums.index') }}">PartitionCloud</a></h1> <h1><a href="{{ url_for('albums.index') }}">PartitionCloud</a></h1>