diff --git a/core/modules/toolbar/css/toolbar.module.css b/core/modules/toolbar/css/toolbar.module.css
index 69eb7c2..b6b7c4a 100644
--- a/core/modules/toolbar/css/toolbar.module.css
+++ b/core/modules/toolbar/css/toolbar.module.css
@@ -60,11 +60,11 @@
  * is active. The toolbar container, that contains the bar and the trays, is
  * position absolutely so that it scrolls with the page. Otherwise, on smaller
  * screens, the components of the admin toolbar are positioned statically. */
-body.toolbar-fixed .toolbar-oriented,
+.toolbar-oriented,
 .toolbar-oriented .toolbar-bar,
 .toolbar-oriented .toolbar-tray {
   left: 0;
-  position: absolute;
+  position: fixed;
   right: 0;
   top: 0;
 }
@@ -72,15 +72,10 @@ body.toolbar-fixed .toolbar-oriented,
 .toolbar-oriented .toolbar-bar {
   z-index: 502;
 }
-/* Position the admin toolbar fixed when the configured standard breakpoint is
- * active. */
-body.toolbar-fixed .toolbar-oriented .toolbar-bar {
-  position: fixed;
-}
 /* When the configured narrow breakpoint is active, the toolbar is sized to wrap
  * around the trays in order to provide a context for scrolling tray content
  * that is taller than the viewport. */
-body.toolbar-tray-open.toolbar-fixed.toolbar-vertical .toolbar-oriented {
+body.toolbar-tray-open.toolbar-vertical .toolbar-oriented {
   bottom: 0;
   width: 240px;
   width: 15rem;
@@ -182,14 +177,14 @@ body.toolbar-tray-open.toolbar-fixed.toolbar-vertical .toolbar-oriented {
 /* When the configured standard breakpoint is active and the tray is in a
  * horizontal position, the tray is fixed to the top of the viewport and does
  * not scroll with the page contents. */
-body.toolbar-fixed .toolbar .toolbar-tray-horizontal {
+.toolbar .toolbar-tray-horizontal {
   position: fixed;
 }
 /* When the configured standard breakpoint is active and the tray is in a
  * vertical position, the tray does not scroll with the page. The contents of
  * the tray scroll within the confines of the viewport. */
 .toolbar .toolbar-tray-vertical.is-active,
-body.toolbar-fixed .toolbar .toolbar-tray-vertical {
+.toolbar .toolbar-tray-vertical {
   height: 100%;
   overflow-x: hidden;
   overflow-y: auto;
@@ -208,23 +203,23 @@ body.toolbar-fixed .toolbar .toolbar-tray-vertical {
 }
 /* When the configured standard breakpoint is active, the tray appears to push
  * the page content away from the edge of the viewport. */
-body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
+body.toolbar-tray-open.toolbar-vertical {
   margin-left: 240px; /* LTR */
   margin-left: 15rem; /* LTR */
 }
 @media print {
-  body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
+  body.toolbar-tray-open.toolbar-vertical {
     margin-left: 0;
   }
 }
-[dir="rtl"] body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
+[dir="rtl"] body.toolbar-tray-open.toolbar-vertical {
   margin-left: auto;
   margin-left: auto;
   margin-right: 240px;
   margin-right: 15rem;
 }
 @media print {
-  [dir="rtl"] body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
+  [dir="rtl"] body.toolbar-tray-open.toolbar-vertical {
     margin-right: 0;
   }
 }
diff --git a/core/modules/toolbar/js/models/ToolbarModel.js b/core/modules/toolbar/js/models/ToolbarModel.js
index 357692c..38d9dab 100644
--- a/core/modules/toolbar/js/models/ToolbarModel.js
+++ b/core/modules/toolbar/js/models/ToolbarModel.js
@@ -59,14 +59,6 @@
       isOriented: false,
 
       /**
-       * Indicates whether the toolbar is positioned absolute (false) or fixed
-       * (true).
-       *
-       * @type {bool}
-       */
-      isFixed: false,
-
-      /**
        * Menu subtrees are loaded through an AJAX request only when the Toolbar
        * is set to a vertical orientation.
        *
diff --git a/core/modules/toolbar/js/views/BodyVisualView.js b/core/modules/toolbar/js/views/BodyVisualView.js
index 7499646..9eb5210 100644
--- a/core/modules/toolbar/js/views/BodyVisualView.js
+++ b/core/modules/toolbar/js/views/BodyVisualView.js
@@ -38,8 +38,6 @@
         // then the CSS becomes simpler and more robust.
         .toggleClass('toolbar-vertical', (orientation === 'vertical'))
         .toggleClass('toolbar-horizontal', (isOriented && orientation === 'horizontal'))
-        // When the toolbar is fixed, it will not scroll with page scrolling.
-        .toggleClass('toolbar-fixed', (isViewportOverflowConstrained || this.model.get('isFixed')))
         // Toggle the toolbar-tray-open class on the body element. The class is
         // applied when a toolbar tray is active. Padding might be applied to
         // the body element to prevent the tray from overlapping content.
