1
0
Fork 0
forked from forgejo/forgejo

Have nice issue/pulls list headers

This commit is contained in:
Gusted 2022-04-27 01:47:59 +02:00
parent a8306a3e01
commit 5689d9f362
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 20 additions and 1 deletions

View file

@ -2,7 +2,7 @@
<div class="page-content repository">
{{template "repo/header" .}}
<div class="ui container">
<div class="ui three column stackable grid">
<div class="ui three column grid issue-list-headers">
<div class="column">
{{template "repo/issue/navbar" .}}
</div>

View file

@ -3237,3 +3237,22 @@ td.blob-excerpt {
transform: scale(105%);
box-shadow: 0 .5rem 1rem var(--color-shadow) !important;
}
@media @mediaSm {
.issue-list-headers.ui[class].grid {
> div:nth-child(1) {
order: 1;
width: 50%;
}
> div:nth-child(2) {
order: 3;
width: 100%;
}
> div.column:not(.row):nth-child(3) {
order: 2;
width: 50%;
}
}
}