page headers
This commit is contained in:
parent
f05e47af1c
commit
9c3eaf05c7
|
@ -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)
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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); }
|
||||
|
|
Loading…
Reference in New Issue
Block a user