discourse/plugins/discourse-internet-explorer/assets/stylesheets/ie.scss
Robin Ward 4abe4454dd
FEATURE: Create IE Support Plugin (#8520)
This core plugin, which could be split off in the future, allows us to load IE specific code on demand.

Co-authored-by: jjaffeux <j.jaffeux@gmail.com>
2019-12-11 09:07:22 -05:00

39 lines
815 B
SCSS

@media screen and (max-width: 767px) {
table.staff-logs tr {
display: -ms-grid;
-ms-grid-columns: 1fr 1fr 1fr 0.5fr;
-ms-grid-rows: auto auto;
td {
display: -ms-grid;
&.staff-users {
-ms-grid-row: 1;
-ms-grid-column: 1;
-ms-grid-column-span: 2;
}
&.created-at {
-ms-grid-row: 1;
-ms-grid-column: 4;
}
&.action {
-ms-grid-row: 2;
-ms-grid-column: 1;
}
&.subject {
-ms-grid-row: 2;
-ms-grid-column: 2;
-ms-grid-column-span: 3;
}
&.details {
-ms-grid-row: 3;
-ms-grid-column: 1;
-ms-grid-column-span: 3;
}
&.context {
-ms-grid-row: 4;
-ms-grid-column: 1;
-ms-grid-column-span: 3;
}
}
}
}