From b29c597a982a16933ba1b271e7579076408e5e28 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Sat, 11 Jul 2015 21:37:57 +0000 Subject: [PATCH] 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 --- src/wp-admin/css/common.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index 1e46d9b5b4..3334ae2597 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -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; + } +}