mirror of
https://github.com/discourse/discourse.git
synced 2024-12-14 15:01:07 +08:00
4abe4454dd
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>
39 lines
815 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|