-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename CSS and JS endpoints to use hyphenation
- Loading branch information
1 parent
fdbf946
commit 5be595c
Showing
6 changed files
with
12 additions
and
12 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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block libs %} | ||
<!-- We need to load this to make them accessible on the document root (outside shadowDOM) to preview colors etc. --> | ||
<link rel="stylesheet" href="/docs/_assets/generated/cssCustomProperties.css" /> | ||
<!-- We need to load CSS custom properties to make them accessible in the document root (outside shadowDOM) so we can preview colors etc. --> | ||
<link rel="stylesheet" href="/docs/_assets/generated/docs-custom-properties.css" /> | ||
|
||
<!-- We load Prism by hand to match style used by Docoff --> | ||
<!-- We load Prism by hand to match the style used by Docoff --> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/themes/prism-twilight.min.css" /> | ||
{% endblock %} | ||
|
||
|
@@ -17,14 +17,14 @@ | |
<script crossorigin src="https://unpkg.com/@floating-ui/[email protected]/dist/floating-ui.core.umd.min.js"></script> | ||
<script crossorigin src="https://unpkg.com/@floating-ui/[email protected]/dist/floating-ui.dom.umd.min.js"></script> | ||
<script crossorigin src="https://unpkg.com/@floating-ui/[email protected]/dist/floating-ui.react-dom.umd.min.js"></script> | ||
<script src="/docs/_assets/generated/reactui.js" type="application/javascript"></script> | ||
<script src="/docs/_assets/generated/react-ui.js" type="application/javascript"></script> | ||
<script src="/docs/_assets/js/ruiIcon.js" type="application/javascript"></script> | ||
<script src="/docs/_assets/js/ruiSwatch.js" type="application/javascript"></script> | ||
|
||
<!-- Then we load and init Docoff --> | ||
<!-- Then load and init Docoff --> | ||
<script crossorigin src="https://unpkg.com/@react-ui-org/[email protected]/public/generated/bundle.js"></script> | ||
|
||
<!-- Then we load non-Docoff code highlighiting --> | ||
<!-- Then load non-Docoff code highlighiting --> | ||
<script src="https://unpkg.com/[email protected]/components/prism-core.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/plugins/autoloader/prism-autoloader.min.js"></script> | ||
{% endblock %} |
File renamed without changes.
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