From 90b9f678d9e3274f5e8af17e1d15e1a24291c581 Mon Sep 17 00:00:00 2001 From: webchick Date: Mon, 1 Oct 2012 19:05:19 -0700 Subject: [PATCH] Issue #1800304 by dawehner: Fixed The css for responsive tables on bartik contains old class names. --- core/themes/bartik/css/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/themes/bartik/css/style.css b/core/themes/bartik/css/style.css index 9446e25a136..e4b2f12ba16 100644 --- a/core/themes/bartik/css/style.css +++ b/core/themes/bartik/css/style.css @@ -1712,16 +1712,16 @@ div.admin-panel .description { * Responsive tables. */ @media screen and (max-width:28.125em) { /* 450px */ - th.helpful, - td.helpful, + th.priority-low, + td.priority-low, th.priority-medium, td.priority-medium { display: none; } } @media screen and (max-width:45em) { /* 720px */ - th.helpful, - td.helpful { + th.priority-low, + td.priority-low { display: none; } }