<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Table drag styling for off-canvas dialog.
 *
 * @see tabledrag.js
 *
 * @internal
 */

#drupal-off-canvas-wrapper {
  /* The draggable &lt;tr&gt; element. */
  &amp; .draggable {
    &amp;:hover,
    &amp;:focus-within {
      background-color: var(--off-canvas-background-color-light);
    }

    /* Appears when the row is being dragged. */
    &amp;.drag {
      cursor: move;
      background-color: var(--off-canvas-background-color-dark);
    }
  }

  &amp; td {
    transition: background-color 0.3s ease;

    /* We have to horizontally align all descendent nodes including text nodes
     * that do not have wrapper elements. Since we use flex to do this, we need
     * try to keep it vertically centered, so we have to give it a minimum height
     * to match the rest of the table cells. */
    &amp;:first-child {
      display: flex;
      align-items: center;
      min-height: 50px;
      gap: var(--off-canvas-table-cell-padding);
    }

    &amp; abbr {
      margin-inline: 0 5px;
      text-decoration: none;
    }
  }

  &amp; .tabledrag-handle {
    flex-shrink: 0;

    &amp;::after {
      display: block;
      width: 20px;
      height: 20px;
      margin: 0;
      padding: 0;
      content: "";
      cursor: move;
      background-color: transparent;
      background-image: url(../../../icons/bebebe/move.svg);
      background-repeat: no-repeat;
      background-position: center;

      @media (forced-colors: active) {
        background: linktext;
        mask-image: url(../../../icons/bebebe/move.svg);
        mask-repeat: no-repeat;
        mask-position: center;
      }
    }
  }

  /* Make the "row weight" &lt;select&gt; as small as possible. */
  &amp; .tabledrag-hide select {
    all: revert;
  }

  &amp; .tabledrag-changed-warning {
    margin-bottom: var(--off-canvas-vertical-spacing-unit);
    font-size: 14px;
  }

  &amp; .tabledrag-toggle-weight-wrapper {
    padding-top: 10px;
    text-align: end;
  }

  &amp; .indentation {
    width: 5px;
  }

  @nest .touchevents &amp; .draggable td {
    padding: 0 10px;
  }

  @nest .touchevents &amp; .draggable .menu-item__link {
    display: inline-block;
    padding: 10px 0;
  }

  @nest .touchevents &amp; a.tabledrag-handle {
    width: 40px;
    height: 44px;
  }
}
</pre></body></html>