Browse Source

Fixes issue where direct child column could not use pc/tablet/mobile only

pull/329/head
jlukic 11 years ago
parent
commit
9e4ea6a7ab
1 changed files with 3 additions and 0 deletions
  1. 3
      src/collections/grid.less

3
src/collections/grid.less

@ -538,6 +538,7 @@ body > .ui.grid {
@media only screen and (min-width : 768px) { @media only screen and (min-width : 768px) {
.ui.mobile.only.grid, .ui.mobile.only.grid,
.ui.grid > .mobile.only.row, .ui.grid > .mobile.only.row,
.ui.grid > .mobile.only.column,
.ui.grid > .row > .mobile.only.column { .ui.grid > .row > .mobile.only.column {
display: none; display: none;
} }
@ -573,6 +574,7 @@ body > .ui.grid {
@media only screen and (max-width : 768px), (min-width: 998px) { @media only screen and (max-width : 768px), (min-width: 998px) {
.ui.tablet.only.grid, .ui.tablet.only.grid,
.ui.grid > .tablet.only.row, .ui.grid > .tablet.only.row,
.ui.grid > .tablet.only.column,
.ui.grid > .row > .tablet.only.column { .ui.grid > .row > .tablet.only.column {
display: none; display: none;
} }
@ -608,6 +610,7 @@ body > .ui.grid {
@media only screen and (max-width : 998px) { @media only screen and (max-width : 998px) {
.ui.computer.only.grid, .ui.computer.only.grid,
.ui.grid > .computer.only.row, .ui.grid > .computer.only.row,
.ui.grid > .computer.only.column,
.ui.grid > .row > .computer.only.column { .ui.grid > .row > .computer.only.column {
display: none; display: none;
} }

Loading…
Cancel
Save