-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
12 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
BOOTSTRAP = ( | ||
"https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap.min.css" | ||
"https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css" | ||
) | ||
|
||
GRID = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap-grid.min.css" # noqa | ||
GRID = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap-grid.min.css" # noqa | ||
|
||
_BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/" | ||
_BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/" | ||
|
||
CERULEAN = _BOOTSWATCH_BASE + "cerulean/bootstrap.min.css" | ||
COSMO = _BOOTSWATCH_BASE + "cosmo/bootstrap.min.css" | ||
|
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ See the [available themes](#available-themes) for more. | |
Each theme such as is simply a BootstrapCDN URL stored as a string, so using the themes module is really equivalent to doing something like the following. | ||
|
||
```python | ||
BS = "https://cdn.jsdelivr.net/npm/[email protected].0/dist/css/bootstrap.min.css" | ||
BS = "https://cdn.jsdelivr.net/npm/[email protected].1/dist/css/bootstrap.min.css" | ||
app = dash.Dash(external_stylesheets=[BS]) | ||
``` | ||
|
||
|
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,21 +1,7 @@ | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" | ||
crossorigin="anonymous" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/tomorrow-night-eighties.min.css" | ||
/> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/tomorrow-night-eighties.min.css" /> | ||
<link rel="stylesheet" href="/static/docs.css" /> | ||
<link | ||
rel="shortcut icon" | ||
type="image/png" | ||
href="/static/images/dbciconwhite16.png" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" | ||
/> | ||
<link rel="shortcut icon" type="image/png" href="/static/images/dbciconwhite16.png" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" /> |
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,14 +1,7 @@ | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
crossorigin="anonymous" | ||
></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script> | ||
<script src="/static/js/highlight.min.js"></script> | ||
<script> | ||
hljs.configure({ignoreUnescapedHTML: true}); | ||
hljs.highlightAll(); | ||
hljs.configure({ignoreUnescapedHTML: true}) | ||
hljs.highlightAll() | ||
</script> | ||
<script | ||
data-goatcounter="https://dbc-docs.goatcounter.com/count" | ||
async | ||
src="//gc.zgo.at/count.js" | ||
></script> | ||
<script data-goatcounter="https://dbc-docs.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script> |