-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for ROR #2851
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ $pkgdown-navbar-bg-dark: if($navbar-dark-bg, $navbar-dark-bg, null) !default; | |
} | ||
|
||
// make both the active nav and the hovered nav more clear by mixing the | ||
// background colour with the body and primary colours respectively | ||
// background colour with the body and primary colours respectively | ||
.nav-item .nav-link { | ||
@include border-radius($border-radius); | ||
} | ||
|
@@ -312,6 +312,11 @@ dt:target + dd { | |
color: #A6CE39; | ||
margin-right: 4px; | ||
} | ||
// ror badge | ||
.ror { | ||
height: 16px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe it should be bigger There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 16px seems like a fine place to start |
||
margin-right: 4px; | ||
} | ||
// activate font awesome | ||
.fab { | ||
font-family: "Font Awesome 5 Brands" !important; | ||
|
@@ -372,7 +377,7 @@ a[href='#main'] { | |
} | ||
.lifecycle-stable { background-color: rgb(16, 128, 1); color: var(--bs-white);} | ||
.lifecycle-superseded { background-color: rgb(7, 64, 128); color: var(--bs-white);} | ||
.lifecycle-experimental, | ||
.lifecycle-experimental, | ||
.lifecycle-deprecated { background-color: rgb(253, 128, 8); color: var(--bs-black);} | ||
|
||
/* Footnotes ---------------------------------------------------------------- */ | ||
|
@@ -452,7 +457,7 @@ pre, pre code { | |
// Default dark mode styling does not look good for code | ||
[data-bs-theme="dark"] { | ||
pre, code { | ||
background-color: RGBA(var(--bs-body-color-rgb), 0.1); | ||
background-color: RGBA(var(--bs-body-color-rgb), 0.1); | ||
} | ||
// don't double apply transparency | ||
pre code { | ||
|
@@ -594,7 +599,7 @@ span.smallcaps {font-variant: small-caps;} | |
ul.task-list{list-style: none;} | ||
ul.task-list li input[type="checkbox"] { | ||
width: 0.8em; | ||
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */ | ||
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */ | ||
vertical-align: middle; | ||
} | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we use the version with transparent background?
https://github.com/ror-community/ror-logos/blob/main/ror-icon-rgb-transparent.svg
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't it look worse in dark mode?