mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-18 04:15:18 +02:00
Follow-ups from https://github.com/go-gitea/gitea/pull/37038: - Render the OpenAPI 3.0 spec in the API viewer, it is richer than the Swagger 2.0 rendering - Replace the back link with gitea-styled buttons to view both specs and return to Gitea, flowing above swagger-ui on viewports where they would overlap the title - Key `VisibilityModes` by the string enum type, now named `VisibilityString`, removing the `string()` casts at API call sites - Drop the raw visibility strings from the `Service` settings struct in favor of the typed mode fields, which also removes the org default visibility row from the admin config page - Fix two pre-existing issues surfaced in review: an invalid `DEFAULT_USER_VISIBILITY` was silently accepted as public, and the org visibility error message showed the enum zero value instead of the submitted input Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
61 lines
1.3 KiB
CSS
61 lines
1.3 KiB
CSS
@import "swagger-render.css";
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.swagger-page-links {
|
|
/* overlay the top-right of the info block by replicating swagger-ui's ".wrapper" and ".info" metrics */
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0;
|
|
right: 0;
|
|
max-width: 1460px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
pointer-events: none; /* only the links themselves are clickable */
|
|
}
|
|
|
|
/* below this width the links would overlap the title, flow above swagger-ui instead */
|
|
@media (max-width: 991.98px) {
|
|
.swagger-page-links {
|
|
position: static;
|
|
padding: 10px 20px 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
|
|
/* mimic the regular gitea button, the main site CSS is not loaded on this page */
|
|
.swagger-page-links a {
|
|
pointer-events: auto;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
height: 32px;
|
|
padding: 0 12px;
|
|
border-radius: 4px;
|
|
background: var(--color-button);
|
|
border: 1px solid var(--color-light-border);
|
|
color: var(--color-text);
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.swagger-page-links a:hover {
|
|
background: var(--color-hover);
|
|
}
|
|
|
|
.swagger-page-links a:active {
|
|
background: var(--color-active);
|
|
}
|
|
|
|
.swagger-page-links svg {
|
|
fill: currentcolor;
|
|
}
|