barryvan
(Barry van Oudtshoorn)
7μ 29, 2017, 11:59μ€ν
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κ°μ μ’μμ
cpradio
(cpradio)
7μ 30, 2017, 12:00μ€μ
2
The admin area isnβt mobile friendly and is really meant to only be utilized via desktop/tablet.
3κ°μ μ’μμ
With the exception of flag handling which should work well on mobile.
1κ°μ μ’μμ
sam
(Sam Saffron)
7μ 31, 2017, 4:31μ€ν
4
I am putting a pr-welcome on this in case anyone feels like improving the mobile admin stylesheet.
2κ°μ μ’μμ
barryvan
(Barry van Oudtshoorn)
8μ 4, 2017, 4:46μ€μ
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κ°μ μ’μμ