Skip to content

Commit

Permalink
Revert "Merge pull request #108 from rei/consolidate-hidden"
Browse files Browse the repository at this point in the history
This reverts commit 8740976, reversing
changes made to 460835f.
  • Loading branch information
mhewson committed May 27, 2016
1 parent 8740976 commit 3ac0e92
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions src/less/definitions/utilities/utilities.less
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,7 @@
// -------------------------

.hidden {
display: none !important;
&-xs {
@media (max-width: @screen-xs-max) {
.responsive-invisibility();
}
}
&-sm {
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
.responsive-invisibility();
}
}
&-md {
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
.responsive-invisibility();
}
}
&-lg {
@media (min-width: @screen-lg-min) {
.responsive-invisibility();
}
}
&-print {
@media print {
.responsive-invisibility();
}
}
display: none !important;
}
.show {
display: block !important;
Expand Down

1 comment on commit 3ac0e92

@mhewson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.