diff options
| author | Chris Rebert <[email protected]> | 2015-11-12 19:15:54 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-11-12 19:15:54 -0800 |
| commit | be5e223177004c2072e8beedf00963adf9ced2db (patch) | |
| tree | 0b3c34cb383315c0240d86071b2c638b37ecf741 /scss | |
| parent | fcbf49ae0ac39f4444d782103e191252b3a41d18 (diff) | |
| download | bootstrap-be5e223177004c2072e8beedf00963adf9ced2db.tar.xz bootstrap-be5e223177004c2072e8beedf00963adf9ced2db.zip | |
Move `[hidden]` style from _utilities.scss to _reboot.scss; fixes #18230
[skip sauce]
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/_reboot.scss | 5 | ||||
| -rw-r--r-- | scss/_utilities.scss | 5 |
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; } |
