Improve formatting of network dashboard's Right Now actions on 320px screens.

Prevents default `.subsubsub` change to center alignment and a large font that is applied at 782px.

Fixes #32962.


git-svn-id: https://develop.svn.wordpress.org/trunk@33168 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jeremy Felt 2015-07-11 21:37:57 +00:00
parent 8b757743c4
commit b29c597a98

View File

@ -3446,3 +3446,12 @@ img {
overflow-x: hidden;
}
}
@media screen and (max-width: 320px) {
/* Prevent default center alignment and larger font for the Right Now widget when
the network dashboard is viewed on a small mobile device. */
#nestwork_dashboard_right_now .subsubsub {
font-size: 14px;
text-align: left;
}
}