barryvan
(Barry van Oudtshoorn)
July 29, 2017, 11:59pm
1
This is, of course, not a huge issue; I understand that using advanced plugins on a phone is likely not the best idea.
This is on a pinned-to-home Chrome tab on a Sony Xperia Z5 Premium (inhale) with the display scaling tweaked to have a lower dppx ratio; not sure of CSS pixel dimensions, sorry.
2 Likes
cpradio
(cpradio)
July 30, 2017, 12:00am
2
The admin area isn’t mobile friendly and is really meant to only be utilized via desktop/tablet.
3 Likes
With the exception of flag handling which should work well on mobile.
1 Like
sam
(Sam Saffron)
July 31, 2017, 4:31pm
4
I am putting a pr-welcome on this in case anyone feels like improving the mobile admin stylesheet.
2 Likes
barryvan
(Barry van Oudtshoorn)
August 4, 2017, 4:46am
5
I’ve not had a chance to put together a PR for this, but I’ve fixed it on my own site with custom CSS for now:
.admin-nav {
position: static;
float: none;
width: 100%;
font-size: 80%;
margin: 0;
}
.admin-nav .nav-stacked {
display: flex;
flex-wrap: wrap;
}
.nav-stacked li {
padding: 0;
margin: 0;
}
.nav-stacked li a {
padding: 5px 10px;
font-size: 100%;
line-height: auto;
}
.nav-stacked .active > a::after, .nav-stacked li > a.active::after {
content: none;
}
.admin-detail {
padding: 0;
}
…which produces something like this:
5 Likes