We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By doing that, I can make button labels disappear in small screen and shown correctly in big screen.
Example:
<button class="btn btn-primary"> <i class="icon icon-refresh"></i> <span class="hidden-xs"> Refresh </span> </button>
Code to modify:
.responsive-visibility() { display: block !important; table& { display: table; } tr& { display: table-row !important; } th&, td& { display: table-cell !important; } span& { display: inline !important; } } .responsive-invisibility() { &, tr&, th&, td&, span& { display: none !important; } }
I've been using it for the last month - seems to work :).
The text was updated successfully, but these errors were encountered:
Duplicate of #12204, which features a more complete solution for all inline elements.
Sorry, something went wrong.
No branches or pull requests
By doing that, I can make button labels disappear in small screen and shown correctly in big screen.
Example:
Code to modify:
I've been using it for the last month - seems to work :).
The text was updated successfully, but these errors were encountered: