mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
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:
parent
f36bc93e32
commit
664266bafd
BIN
partitioncloud/static/icon.png
Normal file
BIN
partitioncloud/static/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 225 KiB |
@ -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 {
|
||||||
|
@ -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">
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user