diff -u b/core/modules/system/css/system.admin.css b/core/modules/system/css/system.admin.css --- b/core/modules/system/css/system.admin.css +++ b/core/modules/system/css/system.admin.css @@ -161,20 +161,8 @@ /** * Status report. */ -table.system-status-report td { - padding: 6px; - vertical-align: top; -} -table.system-status-report td:nth-child(-n+2) { - background-color: rgba(0, 0, 0, 0.04); -} table.system-status-report td.status-icon { width: 16px; - padding-right: 0; /* LTR */ -} -[dir="rtl"] table.system-status-report td.status-icon { - padding-left: 0; - padding-right: 6px; } table.system-status-report td.status-icon div { background-repeat: no-repeat; @@ -188,13 +176,19 @@ * Status report. */ table.system-status-report td { + padding: 6px; + vertical-align: top; } table.system-status-report td:nth-child(-n+2) { + background-color: rgba(0, 0, 0, 0.04); } table.system-status-report td.status-icon { width: 16px; + padding-right: 0; /* LTR */ } [dir="rtl"] table.system-status-report td.status-icon { + padding-left: 0; + padding-right: 6px; } table.system-status-report td.status-icon div { background-repeat: no-repeat; diff -u b/core/modules/system/css/system.module.css b/core/modules/system/css/system.module.css --- b/core/modules/system/css/system.module.css +++ b/core/modules/system/css/system.module.css @@ -330,14 +330,6 @@ } /** - * Hide just the text visually, but keep them available for screen-readers. - */ -.hide-text { - overflow: hidden; - text-indent: -999em; -} - -/** * Float clearing. * * Based on the micro clearfix hack by Nicolas Gallagher, with the :before @@ -364,6 +356,14 @@ } /** + * Hide just the text visually, but keep them available for screen-readers. + */ +.hide-text { + overflow: hidden; + text-indent: -999em; +} + +/** * Float clearing. * * Based on the micro clearfix hack by Nicolas Gallagher, with the :before reverted: --- b/core/themes/seven/style.css +++ a/core/themes/seven/style.css @@ -682,7 +682,10 @@ * Status report table. */ table.system-status-report tr { + border-top: 1px solid #ccc; + border-left: 1px solid #bebfb9; + border-right: 1px solid #bebfb9; + border-bottom: inherit; - border-width: 0 0 1px; } table.system-status-report tr:first-child { border-top: 1px solid #bebfb9; @@ -691,17 +694,17 @@ border-bottom: 1px solid #bebfb9; } +table.system-status-report tr.ok { -table.system-status-report tr.ok:not(:hover) { color: #255b1e; + background-color: #e5ffe2; - background-color: transparent; } +table.system-status-report tr.warning { -table.system-status-report tr.warning:not(:hover) { color: #840; + background-color: #fffce5; - background-color: transparent; } +table.system-status-report tr.error { -table.system-status-report tr.error:not(:hover) { color: #8c2e0b; + background-color: #fef5f1; - background-color: transparent; } /** only in patch2: unchanged: --- a/core/themes/seven/css/components/tables.css +++ b/core/themes/seven/css/components/tables.css @@ -116,10 +116,7 @@ th.select-all { * Status report table. */ table.system-status-report tr { - border-top: 1px solid #ccc; - border-left: 1px solid #bebfb9; - border-right: 1px solid #bebfb9; - border-bottom: inherit; + border-width: 0 0 1px; } table.system-status-report tr:first-child { border-top: 1px solid #bebfb9; @@ -128,19 +125,6 @@ table.system-status-report tr:last-child { border-bottom: 1px solid #bebfb9; } -table.system-status-report tr.ok { - color: #255b1e; - background-color: #e5ffe2; -} -table.system-status-report tr.warning { - color: #840; - background-color: #fffce5; -} -table.system-status-report tr.error { - color: #8c2e0b; - background-color: #fef5f1; -} - /** * Responsive tables. */