mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-08 14:34:49 +09:00
Purpose: 1. Make the whole code base have unified "item" layout 2. Clarify our "list" styles: "flex-relaxed-list", "flex-divided-list" 3. Prepare to replace legacy "ui relaxed list" * https://github.com/go-gitea/gitea/pull/37445#discussion_r3144458865 4. Prepare for refactoring the "pull merge box", it needs the "flex-divided-list" * related to "Refactor pull request view (*)" like #37451 5. Fix legacy abuses of "flex-list", e.g.: repo home sidebar
109 lines
1.8 KiB
CSS
109 lines
1.8 KiB
CSS
.repo-grid-filelist-sidebar {
|
|
display: grid;
|
|
grid-template-columns: auto 280px;
|
|
grid-template-rows: auto auto 1fr;
|
|
gap: var(--page-spacing);
|
|
}
|
|
|
|
.repo-home-filelist {
|
|
min-width: 0;
|
|
grid-column: 1;
|
|
grid-row: 1 / 4;
|
|
}
|
|
|
|
.repo-home-sidebar-top {
|
|
grid-column: 2;
|
|
grid-row: 1;
|
|
}
|
|
|
|
.repo-home-sidebar-bottom {
|
|
grid-column: 2;
|
|
grid-row: 2;
|
|
}
|
|
|
|
.repo-home-sidebar-header {
|
|
font-weight: var(--font-weight-semibold);
|
|
font-size: 16px;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.repo-grid-filelist-sidebar {
|
|
grid-template-columns: 100%;
|
|
grid-template-rows: auto auto auto;
|
|
}
|
|
.repo-home-filelist {
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
}
|
|
.repo-home-sidebar-top {
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
padding-left: 0;
|
|
}
|
|
.repo-home-sidebar-bottom {
|
|
grid-column: 1;
|
|
grid-row: 3;
|
|
padding-left: 0;
|
|
}
|
|
.repo-home-sidebar-bottom .flex-list > :first-child {
|
|
border-top: 0;
|
|
}
|
|
}
|
|
|
|
.repo-view-container {
|
|
display: flex;
|
|
gap: var(--page-spacing);
|
|
}
|
|
|
|
.repo-view-file-tree-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 0 0 15%;
|
|
min-width: 0;
|
|
max-height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
bottom: 0;
|
|
height: 100%;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.repo-view-file-tree-container {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.repo-view-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.language-stats {
|
|
display: flex;
|
|
gap: 2px;
|
|
padding: 0;
|
|
height: 10px;
|
|
white-space: nowrap;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.language-stats-details {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.language-stats-details .item {
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.25em;
|
|
padding: 0 0.5em; /* make the UI look better for narrow (mobile) view */
|
|
text-decoration: none;
|
|
}
|