From 85e801ec7ede8c8ed0a11fb0e2f69d0db72b8432 Mon Sep 17 00:00:00 2001 From: Nicol Date: Sun, 10 Feb 2019 15:19:05 +0000 Subject: [PATCH] Preserves padding on upgrade screen. Padding was removed from the Joomla admin screen in this commit - https://github.com/civicrm/civicrm-core/commit/6ada1cee014a8bd99e4778864c32c0c140c7a92e - which removed all padding on the upgrade screen. Fix to add padding to that screen. --- css/joomla.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/joomla.css b/css/joomla.css index 5c5d55e415..d4f738aba2 100644 --- a/css/joomla.css +++ b/css/joomla.css @@ -390,6 +390,9 @@ body.admin.com_civicrm .container-fluid.container-main { padding: 0; border-top: 1px solid #787878; } +body.admin.com_civicrm.task-civicrmupgrade .container-fluid.container-main { + padding: 0 20px 20px; +} body.admin.com_civicrm #crm-nav-menu-container { padding-bottom: 0 !important; } -- 2.25.1