aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-11-12 19:21:40 -0800
committerChris Rebert <[email protected]>2015-11-12 19:21:40 -0800
commit87b11578c39d02e4db9f07b6405cdd347ca85ef6 (patch)
tree0b3c34cb383315c0240d86071b2c638b37ecf741 /scss
parentfcbf49ae0ac39f4444d782103e191252b3a41d18 (diff)
parentbe5e223177004c2072e8beedf00963adf9ced2db (diff)
downloadbootstrap-87b11578c39d02e4db9f07b6405cdd347ca85ef6.tar.xz
bootstrap-87b11578c39d02e4db9f07b6405cdd347ca85ef6.zip
Merge pull request #18235 from twbs/fix-18230
Move [hidden] style from _utilities.scss to _reboot.scss
Diffstat (limited to 'scss')
-rw-r--r--scss/_reboot.scss5
-rw-r--r--scss/_utilities.scss5
2 files changed, 5 insertions, 5 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index 0da7e5ea6..8a8609dd8 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -298,3 +298,8 @@ output {
// line-height: $line-height;
// color: $input-color;
}
+
+// Always hide an element with the `hidden` HTML attribute (from PureCSS).
+[hidden] {
+ display: none !important;
+}
diff --git a/scss/_utilities.scss b/scss/_utilities.scss
index dd32a847b..521d2f987 100644
--- a/scss/_utilities.scss
+++ b/scss/_utilities.scss
@@ -31,11 +31,6 @@
@include sr-only-focusable();
}
-// Always hide an element with the `hidden` HTML attribute (from PureCSS).
-[hidden] {
- display: none !important;
-}
-
.invisible {
visibility: hidden !important;
}