page headers

This commit is contained in:
bkfox 2023-12-01 20:49:34 +01:00
parent f05e47af1c
commit 9c3eaf05c7
3 changed files with 12 additions and 5 deletions

View File

@ -193,7 +193,10 @@ class Log(Renderable, models.Model):
len(logs),
)
if index is not None and index > 0:
object_list += logs[:index]
if log_slice:
object_list += logs[: min(log_slice, index)]
else:
object_list += logs[:index]
logs = logs[index:]
if len(logs):
@ -209,8 +212,6 @@ class Log(Renderable, models.Model):
)
if index is not None and index > 0:
logs = logs[index:]
if log_slice:
logs = logs[:log_slice]
# - add diff
object_list.append(diff)

View File

@ -8830,8 +8830,11 @@ preview-header:not(.no-cover) .preview-card-headings .heading {
width: 3em;
}
.player-container {
z-index: 1000000;
}
.a-player {
z-index: 10000;
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
}
.a-player a {

View File

@ -1018,8 +1018,11 @@ nav li {
//-- player
.player-container {
z-index: 1000000;
}
.a-player {
z-index: 10000;
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
a { color: var(--highlight-color-2); }