page headers
This commit is contained in:
parent
f05e47af1c
commit
9c3eaf05c7
|
@ -193,6 +193,9 @@ class Log(Renderable, models.Model):
|
||||||
len(logs),
|
len(logs),
|
||||||
)
|
)
|
||||||
if index is not None and index > 0:
|
if index is not None and index > 0:
|
||||||
|
if log_slice:
|
||||||
|
object_list += logs[: min(log_slice, index)]
|
||||||
|
else:
|
||||||
object_list += logs[:index]
|
object_list += logs[:index]
|
||||||
logs = logs[index:]
|
logs = logs[index:]
|
||||||
|
|
||||||
|
@ -209,8 +212,6 @@ class Log(Renderable, models.Model):
|
||||||
)
|
)
|
||||||
if index is not None and index > 0:
|
if index is not None and index > 0:
|
||||||
logs = logs[index:]
|
logs = logs[index:]
|
||||||
if log_slice:
|
|
||||||
logs = logs[:log_slice]
|
|
||||||
|
|
||||||
# - add diff
|
# - add diff
|
||||||
object_list.append(diff)
|
object_list.append(diff)
|
||||||
|
|
|
@ -8830,8 +8830,11 @@ preview-header:not(.no-cover) .preview-card-headings .heading {
|
||||||
width: 3em;
|
width: 3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.player-container {
|
||||||
|
z-index: 1000000;
|
||||||
|
}
|
||||||
|
|
||||||
.a-player {
|
.a-player {
|
||||||
z-index: 10000;
|
|
||||||
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
|
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
|
||||||
}
|
}
|
||||||
.a-player a {
|
.a-player a {
|
||||||
|
|
|
@ -1018,8 +1018,11 @@ nav li {
|
||||||
|
|
||||||
|
|
||||||
//-- player
|
//-- player
|
||||||
|
.player-container {
|
||||||
|
z-index: 1000000;
|
||||||
|
}
|
||||||
|
|
||||||
.a-player {
|
.a-player {
|
||||||
z-index: 10000;
|
|
||||||
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
|
box-shadow: 0em -0.5em 0.5em rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
a { color: var(--highlight-color-2); }
|
a { color: var(--highlight-color-2); }
|
||||||
|
|
Loading…
Reference in New Issue
Block a user