-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs overhaul: render flyteidl under the /api/ path (#5802)
* fix flyteidl structure so it renders under /api/ Signed-off-by: Niels Bantilan <[email protected]> * do not check in flyteidl docs Signed-off-by: Niels Bantilan <[email protected]> * update gitignore and unneeded conf Signed-off-by: Niels Bantilan <[email protected]> * add mock DOCSEARCH_API_KEY to docs test ci Signed-off-by: Niels Bantilan <[email protected]> * add css styling (#5803) * add css styling Signed-off-by: Niels Bantilan <[email protected]> * update logo height Signed-off-by: Niels Bantilan <[email protected]> --------- Signed-off-by: Niels Bantilan <[email protected]> --------- Signed-off-by: Niels Bantilan <[email protected]>
- Loading branch information
1 parent
97c2e48
commit 0893806
Showing
14 changed files
with
293 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
html[data-theme=light], html[data-theme=dark] { | ||
--pst-color-primary: #7652A2; | ||
--pst-color-link: #7652A2; | ||
--pst-color-link-hover: #7652A2; | ||
} | ||
|
||
|
||
/* Styling for page layout */ | ||
.bd-page-width { | ||
max-width: 100%; | ||
} | ||
|
||
/* style the main title logo */ | ||
.navbar-brand:hover, .navbar-brand:visited:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.navbar-brand img { | ||
height: 70%; | ||
} | ||
|
||
/* | ||
Center the main page content only when the sidebar has the .hide-on-wide | ||
class, which is only on the root page | ||
*/ | ||
.bd-sidebar.hide-on-wide + main.bd-main .bd-content { | ||
justify-content: center; | ||
} | ||
|
||
/* left sidebar nav width */ | ||
.bd-sidebar-primary { | ||
width: 15%; | ||
min-width: 250px; | ||
padding: 1rem; | ||
} | ||
|
||
/* make the scroll bar sleeker */ | ||
.bd-sidebar::-webkit-scrollbar { | ||
width: 3px; | ||
height: 3px; | ||
background: transparent; | ||
} | ||
|
||
.bd-sidebar::-webkit-scrollbar-thumb { | ||
background: var(--pst-color-border); | ||
} | ||
|
||
/* make sure page content fills up the page */ | ||
.bd-main .bd-content { | ||
justify-content: left; | ||
} | ||
|
||
.bd-main .bd-content .bd-article-container { | ||
padding: 2.5rem; | ||
max-width: 75em; | ||
} | ||
|
||
/* aligh navbar items with the sidebar */ | ||
.bd-header .navbar-header-items__start { | ||
width: 15%; | ||
min-width: 250px; | ||
} | ||
|
||
/* styles for the main page subtitle and badges */ | ||
div.sd-card.sd-shadow-sm.subtitle-and-badges { | ||
border: none; | ||
box-shadow: none !important; | ||
} | ||
|
||
div.subtitle-and-badges .sd-card-body { | ||
padding: 0; | ||
} | ||
|
||
div.subtitle-and-badges .sd-card-title { | ||
color: #808080; | ||
font-weight: 350 !important; | ||
font-size: 25px; | ||
padding-top: 10px; | ||
padding-bottom: 10px; | ||
} | ||
|
||
div.subtitle-and-badges a { | ||
text-decoration: none; | ||
} | ||
|
||
div.subtitle-and-badges a img { | ||
margin: 2px 0; | ||
} | ||
|
||
/* update table hover color to neutral color */ | ||
.table tbody tr:hover { | ||
background-color: var(--pst-color-table-inner-border); | ||
} | ||
|
||
/* custom footer style */ | ||
div.custom-footer { | ||
text-align: center; | ||
background-color: var(--pst-color-surface); | ||
padding: 15px 0; | ||
color: var(--pst-color-text-muted); | ||
} | ||
|
||
/* anchor link hover style */ | ||
a:hover, | ||
nav.bd-links li>a:active, | ||
nav.bd-links li>a:hover, | ||
.bd-header ul.navbar-nav>li.nav-item>.nav-link:hover { | ||
color: var(--pst-color-primary); | ||
} | ||
|
||
.bd-header ul.navbar-nav>li.nav-item>.nav-link:hover:before { | ||
border-bottom: max(3px, .1875rem, .12em) solid var(--pst-color-primary); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
window.addEventListener("DOMContentLoaded", function() { | ||
// Select all <a> elements with class "external" | ||
var externalLinks = document.querySelectorAll("a.external"); | ||
|
||
// Loop through each <a> element with class "external" | ||
externalLinks.forEach(function(link) { | ||
// Set the target attribute to "_blank" | ||
link.setAttribute("target", "_blank"); | ||
}); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.