changes_1

This commit is contained in:
Mateusz Gruszczyński
2026-06-04 15:01:06 +02:00
parent 2fb1335bb7
commit 369212e1e5
8 changed files with 28 additions and 11 deletions
+21 -4
View File
@@ -21,7 +21,6 @@
--bs-secondary-color: #8d98aa;
--bs-primary-bg-subtle: #0d2238;
--bs-primary-text-emphasis: #9ecbff;
--torrent-progress-complete: #2f9e75;
--pytorrent-page-bg: var(--bs-body-bg);
}
@@ -411,6 +410,7 @@ body {
position: relative;
}
.torrent-table {
--torrent-row-height: 32px;
font-size: var(--torrent-list-font-size, 13px);
margin: 0;
white-space: nowrap;
@@ -434,7 +434,7 @@ body {
}
.torrent-table tbody tr {
cursor: default;
height: 32px;
height: var(--torrent-row-height);
}
.torrent-table > :not(caption) > * > * {
padding-bottom: 0.22rem;
@@ -449,8 +449,21 @@ body {
background: var(--bs-primary-bg-subtle);
}
.torrent-table .sel {
width: 34px;
padding-bottom: 0;
padding-top: 0;
text-align: center;
width: 34px;
}
.torrent-table .torrent-select-cell {
align-items: center;
display: flex;
height: var(--torrent-row-height);
justify-content: center;
}
.torrent-table .row-check {
display: block;
flex: 0 0 auto;
margin: 0;
}
.torrent-table .name {
overflow: hidden;
@@ -5466,8 +5479,12 @@ body,
}
/* Compact torrent list density. Font size is controlled only by the Torrent list font slider. */
body.compact-torrent-list .torrent-table {
--torrent-row-height: 24px;
}
body.compact-torrent-list .torrent-table tbody tr {
height: 24px;
height: var(--torrent-row-height);
}
body.compact-torrent-list .torrent-table > :not(caption) > * > * {