Skip to content
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

Godot priorities page #955

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ indent_size = 2
[*.rb]
indent_style = space
indent_size = 2

[*.md]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ collections:
download_3:
output: true
permalink: /download/3.x/:name/
priorities:
output: true

# Build collection items with a future date.
future: true
Expand Down
3 changes: 2 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ <h2>Project</h2>
<li><a href="/code-of-conduct/">Code of Conduct</a></li>
<li><a href="/governance/">Governance</a></li>
<li><a href="/teams/">Teams</a></li>
<li><a href="/priorities/">Priorities</a></li>
<li><a href="/community/">Communities</a></li>
</ul>
</div>
Expand All @@ -41,7 +42,7 @@ <h2>Foundation</h2>
<li><a href="/license/">License</a></li>
<li><a href="/privacy-policy/">Privacy Policy</a></li>
<li><a href="/contact/">Contact us</a></li>
</ul>
</ul>
</div>
</div>
<hr>
Expand Down
18 changes: 18 additions & 0 deletions _sass/common/_release.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//
// Functions
//
@function offset-hue($color, $offset, $i: 1) {
@return adjust-hue($color, $offset * $i);
}
Expand Down Expand Up @@ -51,3 +54,18 @@
@function r-get-mobile($value) {
@return map-get($value, "mobile");
}

//
// Mixins
//
@mixin is-dark() {
@media screen and (prefers-color-scheme: dark) {
@content;
}
}

@mixin is-light() {
@media screen and (prefers-color-scheme: light) {
@content;
}
}
Loading
Loading