From c24b45f17fb201d5a3738bb80cd4647b653140c8 Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 8 Apr 2019 10:54:05 +0200 Subject: [PATCH] bootstrap, missing _reset-text.scss (https://github.com/opnsense/core/issues/3377) --- .../bootstrap/mixins/_reset-text.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/opnsense/www/themes/opnsense/assets/stylesheets/bootstrap/mixins/_reset-text.scss diff --git a/src/opnsense/www/themes/opnsense/assets/stylesheets/bootstrap/mixins/_reset-text.scss b/src/opnsense/www/themes/opnsense/assets/stylesheets/bootstrap/mixins/_reset-text.scss new file mode 100644 index 000000000..8997eca28 --- /dev/null +++ b/src/opnsense/www/themes/opnsense/assets/stylesheets/bootstrap/mixins/_reset-text.scss @@ -0,0 +1,18 @@ +@mixin reset-text() { + font-family: $font-family-base; + // We deliberately do NOT reset font-size. + font-style: normal; + font-weight: 400; + line-height: $line-height-base; + line-break: auto; + text-align: left; // Fallback for where `start` is not supported + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; +}