diff --git a/bootstrap-5-3-new.html b/bootstrap-5-3-new.html index 45af73f78a..d28ce154cc 100644 --- a/bootstrap-5-3-new.html +++ b/bootstrap-5-3-new.html @@ -16,7 +16,7 @@ - + @@ -36,20 +36,20 @@ body { font-size: 16px; } - + ul { padding: 0; } - + .block-title { text-align: center; color: black; } - + .mr-3 { margin-right: 30px; } - + h1, h2, h3, @@ -60,14 +60,14 @@ text-transform: none; letter-spacing: .5px } - + .html-center h4, .block-title { font-family: 'Oswald Regular', Tahoma, sans-serif; text-transform: uppercase; letter-spacing: .5px } - + .modal-grid-row [class^="col"], .bd-example-cols [class^="col"]>*, .bd-example-cssgrid [class*="grid"]>* { @@ -75,6 +75,20 @@ padding-bottom: 0.75rem; background-color: rgba(var(--bd-violet-rgb), 0.15); border: 1px solid rgba(var(--bd-violet-rgb), 0.3); + } + + .tooltip-inner{ + background: black; + border-radius: 5px; + } + + .custom-tooltip .tooltip-inner{ + background: var(--bd-violet-bg); + } + + .custom-tooltip { + --bs-tooltip-bg: var(--bd-violet-bg); + --bs-tooltip-color: var(--bs-white); } @@ -5771,6 +5785,70 @@

Buttons

+
+

Tooltips

+
+

Tooltips on links

+

+ Bootstrap: + https://getbootstrap.com/docs/5.3/components/tooltips/#tooltips-on-links +

+
+
+ +
+
+
+

Custom tooltips

+

+ Bootstrap: + https://getbootstrap.com/docs/5.3/components/tooltips/#custom-tooltips +

+
+
+ +
+
+
+

Directions

+

+ Bootstrap: + https://getbootstrap.com/docs/5.3/components/tooltips/#directions +

+
+
+ + + + +
+
+ + +
diff --git a/css/fix-bootstrap5.3.css b/css/fix-bootstrap5.3.css new file mode 100644 index 0000000000..e59010aacc --- /dev/null +++ b/css/fix-bootstrap5.3.css @@ -0,0 +1,17 @@ +.navbar-right { + float: right !important; +} + +.modal-dialog { + pointer-events: none; +} + +.modal-backdrop { + z-index: 499; +} + +.dropdown-static { + display: block; + margin-bottom: 5px; + position: static; +}