mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
This solution might be simpler...
...and might not need a complete rewrite of the whole CSS
This commit is contained in:
parent
20eb87dca2
commit
031f2af91f
@ -13,5 +13,10 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-width: 90vw;
|
min-width: 90vw;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
transition: all 0.5s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:checked#slide-sidebar~#content-container {
|
||||||
|
position: initial;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -81,6 +81,10 @@
|
|||||||
font-family: var(--font-family);
|
font-family: var(--font-family);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/** Hide scrollbars (deeply needed on Chromium) */
|
/** Hide scrollbars (deeply needed on Chromium) */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
@ -158,6 +162,7 @@ body {
|
|||||||
transition: left 0.5s ease;
|
transition: left 0.5s ease;
|
||||||
|
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
margin-left: var(--sidebar-size);
|
||||||
}
|
}
|
||||||
|
|
||||||
.album-cover {
|
.album-cover {
|
||||||
@ -181,6 +186,9 @@ body {
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
||||||
|
-moz-transition: width 0.5s ease;
|
||||||
|
transition: width 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
#slide {
|
#slide {
|
||||||
@ -197,11 +205,13 @@ body {
|
|||||||
input:checked#slide-sidebar~#content-container {
|
input:checked#slide-sidebar~#content-container {
|
||||||
left: 0;
|
left: 0;
|
||||||
overflow: unset;
|
overflow: unset;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:checked#slide-sidebar~#footer {
|
input:checked#slide-sidebar~#footer {
|
||||||
left: 0;
|
left: 0;
|
||||||
overflow: unset;
|
overflow: unset;
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input:checked#slide-sidebar~#sidebar {
|
input:checked#slide-sidebar~#sidebar {
|
||||||
@ -397,6 +407,9 @@ img.partition-thumbnail {
|
|||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
|
||||||
|
-moz-transition: width 0.5s ease;
|
||||||
|
transition: width 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#logout,
|
button#logout,
|
||||||
@ -667,3 +680,7 @@ td {
|
|||||||
.liste {
|
.liste {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.x-scrollable {
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
@ -12,6 +12,7 @@
|
|||||||
<div class="button">Voir toutes les partitions</div>
|
<div class="button">Voir toutes les partitions</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="x-scrollable">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -40,4 +41,5 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user