mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-30 15:24:08 +03:00
Deprecate invisible() mixin (#28066)
This commit is contained in:
committed by
XhmikosR
parent
c0e42cb89e
commit
bcfb7ed159
@@ -17,13 +17,14 @@ Apply `.visible` or `.invisible` as needed.
|
||||
{% highlight scss %}
|
||||
// Class
|
||||
.visible {
|
||||
visibility: visible;
|
||||
visibility: visible !important;
|
||||
}
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
visibility: hidden !important;
|
||||
}
|
||||
|
||||
// Usage as a mixin
|
||||
// Warning: The `invisible()` mixin has been deprecated as of v4.3.0. It will be removed entirely in v5.
|
||||
.element {
|
||||
@include invisible(visible);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user