Skip to content
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 CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Changelog
-----

Release date: -
- Upgrade to Bootstrap 5.2.2, Bootswatch 5.2.2 and Boostrap Icons 1.9.1.
- Support testing and deployment for also Python 3.10.
- Fix example issue with ``paginate`` named parameters.
- Add applying available Bootswatch theme in examples.


2.1.0
Expand Down
9,042 changes: 5,966 additions & 3,076 deletions examples/bootstrap5/templates/icons.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions flask_bootstrap/static/bootstrap5/css/bootstrap.min.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
// Cerulean 5.1.3
// Cerulean 5.2.2
// Bootswatch


// Variables

$text-shadow: 0 1px 0 rgba(0, 0, 0, .05) !default;

:root {
color-scheme: light;
}

// Mixins

@mixin btn-shadow($color){
Expand Down Expand Up @@ -33,7 +37,8 @@ $text-shadow: 0 1px 0 rgba(0, 0, 0, .05) !default;
text-shadow: $text-shadow;
}

.btn-secondary {
.btn-secondary,
.btn-outline-secondary {
color: $gray-700;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cerulean 5.1.3
// Cerulean 5.2.2
// Bootswatch

$theme: "cerulean" !default;
Expand Down
Loading