aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/layouts/partials/callouts
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-01-20 11:05:15 +0000
committerMario <mario@mariovavti.com>2023-01-20 11:05:15 +0000
commit9dc949b62c6b5e3c8872211f71b11714d9d22b22 (patch)
tree38c06e7a128742e219eb74d6adb035f2f106918a /vendor/twbs/bootstrap/site/layouts/partials/callouts
parent40394b94d7c8a8bf1f61f5482195164fff434b90 (diff)
downloadvolse-hubzilla-9dc949b62c6b5e3c8872211f71b11714d9d22b22.tar.gz
volse-hubzilla-9dc949b62c6b5e3c8872211f71b11714d9d22b22.tar.bz2
volse-hubzilla-9dc949b62c6b5e3c8872211f71b11714d9d22b22.zip
native dark theme initial checkin
Diffstat (limited to 'vendor/twbs/bootstrap/site/layouts/partials/callouts')
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/danger-async-methods.md5
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/info-mediaqueries-breakpoints.md1
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/info-npm-starter.md1
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/info-prefersreducedmotion.md1
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/info-sanitizer.md1
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-color-assistive-technologies.md3
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-data-bs-title-vs-title.md1
-rw-r--r--vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-input-support.md3
8 files changed, 16 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/danger-async-methods.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/danger-async-methods.md
new file mode 100644
index 000000000..c8afdc2df
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/danger-async-methods.md
@@ -0,0 +1,5 @@
+#### Asynchronous methods and transitions
+
+All API methods are **asynchronous** and start a **transition**. They return to the caller as soon as the transition is started but **before it ends**. In addition, a method call on a **transitioning component will be ignored**.
+
+[See our JavaScript documentation for more information](/docs/{{ .Site.Params.docs_version }}/getting-started/javascript/#asynchronous-functions-and-transitions).
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-mediaqueries-breakpoints.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-mediaqueries-breakpoints.md
new file mode 100644
index 000000000..2eea77138
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-mediaqueries-breakpoints.md
@@ -0,0 +1 @@
+**Why subtract .02px?** Browsers don't currently support [range context queries](https://www.w3.org/TR/mediaqueries-4/#range-context), so we work around the limitations of [`min-` and `max-` prefixes](https://www.w3.org/TR/mediaqueries-4/#mq-min-max) and viewports with fractional widths (which can occur under certain conditions on high-dpi devices, for instance) by using values with higher precision.
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-npm-starter.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-npm-starter.md
new file mode 100644
index 000000000..bbd3897b5
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-npm-starter.md
@@ -0,0 +1 @@
+**Get started with Bootstrap via npm with our starter project!** Head to the [twbs/bootstrap-npm-starter](https://github.com/twbs/bootstrap-npm-starter) template repository to see how to build and customize Bootstrap in your own npm project. Includes Sass compiler, Autoprefixer, Stylelint, PurgeCSS, and Bootstrap Icons.
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-prefersreducedmotion.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-prefersreducedmotion.md
new file mode 100644
index 000000000..d258fbe48
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-prefersreducedmotion.md
@@ -0,0 +1 @@
+The animation effect of this component is dependent on the `prefers-reduced-motion` media query. See the [reduced motion section of our accessibility documentation](/docs/{{ .Site.Params.docs_version }}/getting-started/accessibility/#reduced-motion).
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-sanitizer.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-sanitizer.md
new file mode 100644
index 000000000..ee0eda48e
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/info-sanitizer.md
@@ -0,0 +1 @@
+By default, this component uses the built-in content sanitizer, which strips out any HTML elements that are not explicitly allowed. See the [sanitizer section in our JavaScript documentation](/docs/{{ .Site.Params.docs_version }}/getting-started/javascript/#sanitizer) for more details.
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-color-assistive-technologies.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-color-assistive-technologies.md
new file mode 100644
index 000000000..35683281d
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-color-assistive-technologies.md
@@ -0,0 +1,3 @@
+##### Conveying meaning to assistive technologies
+
+Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the `.visually-hidden` class.
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-data-bs-title-vs-title.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-data-bs-title-vs-title.md
new file mode 100644
index 000000000..e932f22ad
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-data-bs-title-vs-title.md
@@ -0,0 +1 @@
+Feel free to use either `title` or `data-bs-title` in your HTML. When `title` is used, Popper will replace it automatically with `data-bs-title` when the element is rendered.
diff --git a/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-input-support.md b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-input-support.md
new file mode 100644
index 000000000..7b0c8b412
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/layouts/partials/callouts/warning-input-support.md
@@ -0,0 +1,3 @@
+##### Date & color input support
+
+Keep in mind date inputs are [not fully supported](https://caniuse.com/input-datetime) by all browsers, namely Safari.