You are here

bartik.css in Responsive Tables 7.2

/**
 * Responsive tables.
 */
@media screen and (max-width:28.125em) { /* 450px */
  th.priority-low,
  td.priority-low,
  th.priority-medium,
  td.priority-medium {
    display: none;
  }
}
@media screen and (max-width:45em) { /* 720px */
  th.priority-low,
  td.priority-low {
    display: none;
  }
}

File

css/bartik.css
View source
  1. /**
  2. * Responsive tables.
  3. */
  4. @media screen and (max-width:28.125em) { /* 450px */
  5. th.priority-low,
  6. td.priority-low,
  7. th.priority-medium,
  8. td.priority-medium {
  9. display: none;
  10. }
  11. }
  12. @media screen and (max-width:45em) { /* 720px */
  13. th.priority-low,
  14. td.priority-low {
  15. display: none;
  16. }
  17. }