mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
8f8bd3c0cb
Backport https://github.com/go-gitea/gitea/pull/23481, https://github.com/go-gitea/gitea/pull/23504 and https://github.com/go-gitea/gitea/pull/23520 to 1.19, just so we have an easier time with future backports. Seems to work on a basic level. There was a merge conflict in `RepoActionView.vue`, otherwise it merged cleanly. --------- Co-authored-by: John Olheiser <john.olheiser@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
88 lines
1.6 KiB
CSS
88 lines
1.6 KiB
CSS
.explore .navbar {
|
|
justify-content: center;
|
|
margin-bottom: 15px !important;
|
|
background-color: var(--color-navbar) !important;
|
|
border-width: 1px !important;
|
|
}
|
|
|
|
.explore .navbar .svg {
|
|
width: 16px;
|
|
text-align: center;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.ui.repository.list .item {
|
|
padding-bottom: 1.5rem;
|
|
}
|
|
|
|
.ui.repository.list .item:not(:first-child) {
|
|
border-top: 1px solid var(--color-secondary);
|
|
padding-top: 1.5rem;
|
|
}
|
|
|
|
.ui.repository.list .item .ui.header {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.ui.repository.list .item .ui.header .name {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.ui.repository.list .item .ui.header .metas {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.ui.repository.list .item .time {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ui.repository.list .item .ui.tags {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.ui.repository.branches .info {
|
|
font-size: 12px;
|
|
color: var(--color-text-light);
|
|
display: flex;
|
|
white-space: pre;
|
|
}
|
|
|
|
.ui.repository.branches .info .commit-message {
|
|
max-width: 72em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.ui.repository.branches .overflow-visible {
|
|
overflow: visible;
|
|
}
|
|
|
|
/* fix alignment of PR popup in branches table */
|
|
.ui.repository.branches table .ui.popup {
|
|
text-align: left;
|
|
}
|
|
|
|
.ui.user.list .item {
|
|
padding-bottom: 25px;
|
|
display: flex;
|
|
}
|
|
|
|
.ui.user.list .item:not(:first-child) {
|
|
border-top: 1px solid var(--color-secondary);
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.ui.user.list .item img.ui.avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.ui.user.list .item .description {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.ui.user.list .item .description .svg:not(:first-child) {
|
|
margin-left: 5px;
|
|
}
|