diff --git a/core/modules/system/templates/status-report-grouped.html.twig b/core/modules/system/templates/status-report-grouped.html.twig
index bd34e5a..8f5481c 100644
--- a/core/modules/system/templates/status-report-grouped.html.twig
+++ b/core/modules/system/templates/status-report-grouped.html.twig
@@ -23,7 +23,7 @@
     <div>
       <h3 id="{{ group.type }}">{{ group.title }}</h3>
       {% for requirement in group.items %}
-        <details class="system-status-report__entry">
+        <details class="system-status-report__entry" open>
           {%
             set summary_classes = [
               'system-status-report__status-title',
diff --git a/core/themes/seven/css/components/system-status-report.css b/core/themes/seven/css/components/system-status-report.css
index 7869fbd..491e15f 100644
--- a/core/themes/seven/css/components/system-status-report.css
+++ b/core/themes/seven/css/components/system-status-report.css
@@ -34,9 +34,6 @@
   color: inherit;
   text-transform: none;
 }
-html:not(.details) .system-status-report__status-title {
-  padding-left: 0;
-}
 .system-status-report__status-title .details-title {
   padding-left: 3em; /* LTR */
 }
diff --git a/core/themes/seven/templates/status-report-grouped.html.twig b/core/themes/seven/templates/status-report-grouped.html.twig
index c5d6303..91aa298 100644
--- a/core/themes/seven/templates/status-report-grouped.html.twig
+++ b/core/themes/seven/templates/status-report-grouped.html.twig
@@ -24,7 +24,7 @@
     <div class="system-status-report__requirements-group">
       <h3 id="{{ group.type }}">{{ group.title }}</h3>
       {% for requirement in group.items %}
-        <details class="system-status-report__entry system-status-report__entry--{{ group.type }} color-{{ group.type }}">
+        <details class="system-status-report__entry system-status-report__entry--{{ group.type }} color-{{ group.type }}" open>
           {%
             set summary_classes = [
               'system-status-report__status-title',
diff --git a/core/themes/stable/templates/admin/status-report-grouped.html.twig b/core/themes/stable/templates/admin/status-report-grouped.html.twig
index bbeaa47..1914c16 100644
--- a/core/themes/stable/templates/admin/status-report-grouped.html.twig
+++ b/core/themes/stable/templates/admin/status-report-grouped.html.twig
@@ -23,7 +23,7 @@
     <div>
       <h3 id="{{ group.type }}">{{ group.title }}</h3>
       {% for requirement in group.items %}
-        <details class="system-status-report__entry">
+        <details class="system-status-report__entry" open>
           {%
             set summary_classes = [
               'system-status-report__status-title',
