/* dxpr_theme's tabs.css absolutely-positions the View/Edit/Delete/Revisions
 * tabs block at desktop widths, floating it above its normal position
 * instead of a normal inline tab strip. Undo that; leave the theme's
 * mobile (<=48rem) collapsible-dropdown behavior alone, that one's fine. */
@media (min-width: 48rem) {
  .block-local-tasks-block:has(.dxpr-theme-mini-tabs-wrapper) {
    position: static !important;
    transform: none !important;
    left: auto !important;
    padding-right: 0 !important;
    z-index: auto !important;
  }
}