mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-02-10 14:03:42 +01:00
Compare commits
No commits in common. "4fff0e49e2ef62d7bbba61f5508028f1a3a39022" and "37ce178b21f89812e8310f2f3eaedf88fb32844e" have entirely different histories.
4fff0e49e2
...
37ce178b21
@ -13,10 +13,5 @@
|
||||
overflow: hidden;
|
||||
min-width: 90vw;
|
||||
position: fixed;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
input:checked#slide-sidebar~#content-container {
|
||||
position: initial;
|
||||
}
|
||||
}
|
||||
|
@ -81,17 +81,13 @@
|
||||
font-family: var(--font-family);
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
|
||||
/** Hide scrollbars (deeply needed on Chromium) */
|
||||
::-webkit-scrollbar {
|
||||
/** Hide scrollbars (needed on Chromium) */
|
||||
*::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
:root {
|
||||
* {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
@ -143,10 +139,16 @@ body {
|
||||
transition: left 0.5s ease;
|
||||
|
||||
padding: 0 25px;
|
||||
max-height: 100vh;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin-bottom: 50px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
#footer {
|
||||
@ -185,9 +187,6 @@ body {
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
|
||||
-moz-transition: width 0.5s ease;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
#slide {
|
||||
@ -204,13 +203,15 @@ body {
|
||||
input:checked#slide-sidebar~#content-container {
|
||||
left: 0;
|
||||
overflow: unset;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
input:checked#slide-sidebar~#content-container>#content {
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
input:checked#slide-sidebar~#footer {
|
||||
left: 0;
|
||||
overflow: unset;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
input:checked#slide-sidebar~#sidebar {
|
||||
@ -265,15 +266,17 @@ section#users {
|
||||
|
||||
.user-profile-picture {
|
||||
color: var(--color-mantle);
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.user-profile {
|
||||
display: inline-flex;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.user-profile .user-profile-picture {
|
||||
position: absolute;
|
||||
left: 30px;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
@ -406,9 +409,6 @@ img.partition-thumbnail {
|
||||
margin: 5px;
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
-moz-transition: width 0.5s ease;
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
button#logout,
|
||||
@ -679,7 +679,3 @@ td {
|
||||
.liste {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.x-scrollable {
|
||||
overflow-x: auto;
|
||||
}
|
@ -12,8 +12,7 @@
|
||||
<div class="button">Voir toutes les partitions</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="x-scrollable">
|
||||
<table>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">Utilisateur</th>
|
||||
@ -25,7 +24,7 @@
|
||||
<tbody>
|
||||
{% for user in users %}
|
||||
<tr>
|
||||
<td>
|
||||
<td style="position:relative">
|
||||
<div class="user-profile">
|
||||
<div class="user-profile-picture" style="background-color:{{ user.color }};"
|
||||
title="{{ user.username }}">
|
||||
@ -40,6 +39,5 @@
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</table>
|
||||
{% endblock %}
|
@ -110,7 +110,7 @@
|
||||
</button></a><br/>
|
||||
{% endif %}
|
||||
<div class="user">
|
||||
<div class="user-profile-picture" style="background-color:{{ user.color }};"
|
||||
<div class="user-profile-picture" style="background-color:{{ user.color }}; position:inherit;"
|
||||
title="{{ user.username }}">
|
||||
{{ user.username[0] | upper }}
|
||||
</div>
|
||||
|
@ -11,7 +11,7 @@
|
||||
<td>
|
||||
Responsable de l'ajout
|
||||
</td>
|
||||
<td>
|
||||
<td style="position:absolute">
|
||||
{% if user is not none %}
|
||||
<div class="user-profile"><!-- Completely messy html for this -->
|
||||
<div class="table-username">{{ user.username }}</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user