Skip to content

Commit ecd8e6b

Browse files
authored
Merge pull request #481 from facultyai/bootstrap-4.5.2
Use Bootstrap 4.5.2
2 parents ea42509 + 1a36d37 commit ecd8e6b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

R/themes.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.prependBootswatch <- function(suffix) {
2-
BOOTSWATCH_BASE <- "https://stackpath.bootstrapcdn.com/bootswatch/4.5.0/"
2+
BOOTSWATCH_BASE <- "https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/"
33
return(paste(BOOTSWATCH_BASE, suffix, sep=""))
44
}
55

66
#' @export'
77
dbcThemes <- list(
8-
BOOTSTRAP = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css",
9-
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap-grid.min.css",
8+
BOOTSTRAP = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css",
9+
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap-grid.min.css",
1010
CERULEAN = .prependBootswatch("cerulean/bootstrap.min.css"),
1111
COSMO = .prependBootswatch("cosmo/bootstrap.min.css"),
1212
CYBORG = .prependBootswatch("cyborg/bootstrap.min.css"),

dash_bootstrap_components/themes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
BOOTSTRAP = (
2-
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
2+
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
33
)
44

5-
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap-grid.min.css" # noqa
5+
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap-grid.min.css" # noqa
66

7-
_BOOTSWATCH_BASE = "https://stackpath.bootstrapcdn.com/bootswatch/4.5.0/"
7+
_BOOTSWATCH_BASE = "https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/"
88

99
CERULEAN = _BOOTSWATCH_BASE + "cerulean/bootstrap.min.css"
1010
COSMO = _BOOTSWATCH_BASE + "cosmo/bootstrap.min.css"

demo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link
88
rel="stylesheet"
9-
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
10-
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
9+
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
10+
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
1111
crossorigin="anonymous"
1212
/>
1313
</head>

docs/templates/partials/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta name="viewport" content="width=device-width, initial-scale=1" />
33
<link
44
rel="stylesheet"
5-
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
5+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
66
/>
77
<link
88
rel="stylesheet"

0 commit comments

Comments
 (0)