Skip to content
Snippets Groups Projects

ui fix for mobile devices

Open Saurav Kumar requested to merge issue/drupal-3338499:3338499-hide-fields-when into 11.x
2 files
+ 49
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -101,3 +101,28 @@
.views-field-node-bulk-form .form-item {
margin: 0;
}
/**
* Responsive table cells.
*/
th.priority-low,
th.priority-medium,
td.priority-low,
td.priority-medium {
display: none;
}
@media screen and (min-width: 38em) {
th.priority-medium,
td.priority-medium {
display: table-cell;
}
}
@media screen and (min-width: 60em) {
th.priority-low,
td.priority-low {
display: table-cell;
}
}
Loading