6010841ee7
Generic: Repo Health / Scripts governance (push) Blocked by required conditions
Generic: Repo Health / Repository health (push) Blocked by required conditions
Generic: Repo Health / Report Issues (push) Blocked by required conditions
Generic: Repo Health / Site Health (push) Has been skipped
Generic: Repo Health / Access control (push) Successful in 2s
Universal: PR Check / Build RC Package (pull_request) Blocked by required conditions
Universal: PR Check / Report Issues (pull_request) Blocked by required conditions
Generic: Repo Health / Scripts governance (pull_request) Blocked by required conditions
Generic: Repo Health / Repository health (pull_request) Blocked by required conditions
Generic: Repo Health / Report Issues (pull_request) Blocked by required conditions
Generic: Repo Health / Site Health (pull_request) Has been skipped
Branch Policy Check / Verify merge target (pull_request) Successful in 2s
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Generic: Repo Health / Access control (pull_request) Successful in 2s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || 'development' }}) (pull_request) Successful in 1m45s
Support real subdirectories in wiki instead of escaping / to %2F. When navigating to a folder, tries README.md, Home.md, index.md as index pages. If none found, shows a file/folder listing. Includes: - Stop escaping / in WebPathFromRequest (wiki_path.go) - Folder detection with index file fallback - Auto-generated sidebar folder tree - Breadcrumb navigation for nested paths - Folder listing view when no index page exists - CSS for tree sidebar and folder listing
89 lines
1.8 KiB
CSS
89 lines
1.8 KiB
CSS
.repository.wiki .wiki-pages-list .wiki-git-entry {
|
|
margin-left: 10px;
|
|
display: none;
|
|
}
|
|
|
|
.repository.wiki .wiki-pages-list tr:hover .wiki-git-entry {
|
|
display: inline-block;
|
|
}
|
|
|
|
.repository.wiki .markup {
|
|
overflow: visible;
|
|
}
|
|
|
|
.repository.wiki .markup[data-tab-panel="markdown-previewer"] {
|
|
min-height: 340px; /* This height matches the markdown editor's height */
|
|
}
|
|
|
|
.repository.wiki .wiki-content-parts .markup {
|
|
border: 1px solid var(--color-secondary);
|
|
border-radius: var(--border-radius);
|
|
padding: 1em;
|
|
margin-top: 1em;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.repository.wiki .wiki-content-main.with-sidebar {
|
|
float: left;
|
|
width: 80%;
|
|
max-width: calc(100% - 150px - 1em); /* match the min-width of .wiki-content-sidebar */
|
|
}
|
|
|
|
.repository.wiki .wiki-content-sidebar {
|
|
float: right;
|
|
width: calc(20% - 1em);
|
|
min-width: 150px;
|
|
}
|
|
|
|
.repository.wiki .wiki-content-footer {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.repository.wiki .wiki-content-toc ul {
|
|
margin: 0;
|
|
list-style: none;
|
|
padding: 5px 0 5px 1em;
|
|
}
|
|
|
|
.repository.wiki .wiki-content-toc ul ul {
|
|
border-left: 1px var(--color-secondary);
|
|
border-left-style: dashed;
|
|
}
|
|
|
|
.repository.wiki .wiki-tree-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0.5em 0 0 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.repository.wiki .wiki-tree-list ul {
|
|
list-style: none;
|
|
padding: 0 0 0 1.2em;
|
|
margin: 0;
|
|
border-left: 1px dashed var(--color-secondary);
|
|
}
|
|
|
|
.repository.wiki .wiki-tree-list li {
|
|
padding: 2px 0;
|
|
}
|
|
|
|
.repository.wiki .wiki-tree-list a.active {
|
|
font-weight: bold;
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.repository.wiki .wiki-folder-listing {
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.repository.wiki .wiki-content-main.with-sidebar,
|
|
.repository.wiki .wiki-content-sidebar {
|
|
float: none;
|
|
width: 100%;
|
|
min-width: unset;
|
|
max-width: unset;
|
|
}
|
|
}
|