diff --git b/core/includes/theme.inc a/core/includes/theme.inc index ae88d19..2aef832c 100644 --- b/core/includes/theme.inc +++ a/core/includes/theme.inc @@ -549,7 +549,7 @@ function template_preprocess_datetime_wrapper(&$variables) { * list items differently when the link is active, since CSS does not yet allow * one to style list items only if it contains a certain element with a certain * class. I.e. we cannot yet convert this jQuery selector to a CSS selector: - * jQuery('li:has("a.active")') + * jQuery('li:has("a.is-active")') * * @see \Drupal\Core\Utility\LinkGenerator * @see \Drupal\Core\Utility\LinkGenerator::generate() diff --git b/core/modules/toolbar/css/toolbar.menu.css a/core/modules/toolbar/css/toolbar.menu.css index 09a4135..14dbd44 100644 --- b/core/modules/toolbar/css/toolbar.menu.css +++ a/core/modules/toolbar/css/toolbar.menu.css @@ -36,7 +36,7 @@ /* ----- Toolbar menu tray for viewports less than 320px ------ */ @media screen and (max-width: 319px) { - .toolbar .toolbar-tray-vertical.active { + .toolbar .toolbar-tray-vertical.is-active { width: 100%; } } diff --git b/core/modules/views/templates/views-view-summary-unformatted.html.twig a/core/modules/views/templates/views-view-summary-unformatted.html.twig index 57a6e83..df90d40 100644 --- b/core/modules/views/templates/views-view-summary-unformatted.html.twig +++ a/core/modules/views/templates/views-view-summary-unformatted.html.twig @@ -25,7 +25,7 @@ {% if row.separator -%} {{ row.separator }} {%- endif %} - {{ row.link }} + {{ row.link }} {% if options.count %} ({{ row.count }}) {% endif %} diff --git b/core/modules/views/templates/views-view-summary.html.twig a/core/modules/views/templates/views-view-summary.html.twig index f1e788b..86b78ad 100644 --- b/core/modules/views/templates/views-view-summary.html.twig +++ a/core/modules/views/templates/views-view-summary.html.twig @@ -23,7 +23,7 @@