mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
40744f8976
As https://github.com/go-gitea/gitea/pull/25515#issuecomment-1606626886 says, still need this backport Close #25389 After: <img width="915" alt="Screen Shot 2023-06-26 at 11 00 12" src="https://github.com/go-gitea/gitea/assets/17645053/45026447-cf50-4603-ade3-7b80a9023c20"> admin/dashboard: <img width="957" alt="Screen Shot 2023-06-26 at 10 59 51" src="https://github.com/go-gitea/gitea/assets/17645053/f4f95bbe-f747-46f1-8fbd-5778a19ebef7"> Co-authored-by: Giteabot <teabot@gitea.io>
54 lines
1 KiB
CSS
54 lines
1 KiB
CSS
.admin.hooks .list > .item:not(:first-child) {
|
|
border-top: 1px solid var(--color-secondary);
|
|
padding: 0.25rem 1rem;
|
|
margin: 12px -1rem -1rem;
|
|
}
|
|
|
|
.admin.user table.table .email {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.admin dl.admin-dl-horizontal {
|
|
padding: 1em;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.admin dl.admin-dl-horizontal dd {
|
|
margin-left: auto;
|
|
width: calc(100% - 245px);
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.admin dl.admin-dl-horizontal dd {
|
|
width: calc(100% - 185px);
|
|
}
|
|
}
|
|
|
|
/* divider needs explicit width to become visible here */
|
|
.admin dl.admin-dl-horizontal .ui.divider {
|
|
width: 100%;
|
|
}
|
|
|
|
.admin dl.admin-dl-horizontal dt {
|
|
font-weight: var(--font-weight-semibold);
|
|
width: 220px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.admin dl.admin-dl-horizontal dt {
|
|
width: 160px;
|
|
}
|
|
}
|
|
|
|
.admin code,
|
|
.admin pre {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.admin .ui.table.segment {
|
|
overflow-x: auto; /* if the screen width is small, many wide tables (eg: user list) need scroll bars */
|
|
}
|