improving screened email and url section of admin on mobile

This commit is contained in:
Kris 2018-07-13 15:25:04 -04:00
parent 7331b0ac07
commit 1ad358fa0a
1 changed files with 38 additions and 0 deletions

View File

@ -315,6 +315,44 @@ table.screened-ip-addresses {
}
}
// Screened URLs
@include breakpoint(tablet) {
.screened-urls {
td.domain {
grid-column-start: 1;
grid-column-end: 3;
word-wrap: break-word;
}
}
}
// Screened emails
.screened-emails {
td.ip_address {
word-wrap: break-word;
@include breakpoint(tablet, min-width) {
max-width: 20vw;
}
}
@include breakpoint(tablet) {
td.email {
grid-column-start: 1;
grid-column-end: 3;
word-wrap: break-word;
}
td.ip_address {
grid-row: 2;
grid-column-start: 1;
grid-column-end: -1;
}
td.action {
margin-top: 0.25em;
}
}
}
// Watched words
.watched-word-box {