This website requires JavaScript.
Explore
Help
Sign In
root
/
bootstrap
mirror of
https://github.com/twbs/bootstrap.git
Watch
1
Star
0
Fork
You've already forked bootstrap
0
Code
Issues
Actions
10
Packages
Projects
Releases
Wiki
Activity
94ed0d901b
bootstrap
/
scss
/
mixins
/
_visibility.scss
6 lines
87 B
SCSS
Raw
Normal View
History
Unescape
Escape
Added visibility mixins file
2016-08-02 23:59:37 +08:00
// Visibility
Drop the .hidden and .visible classes, save for the print ones — Moves print display utils to display utils file — Removes all other .hidden- utils — Expands on .invisible and it's mixin to provide options for visibility: visible and visibility: hidden
2017-03-04 04:58:57 +08:00
@mixin
invisible
(
$visibility
)
{
visibility
:
$visibility
!important
;
Added visibility mixins file
2016-08-02 23:59:37 +08:00
}