    /* ZWORLD_CLASSIC_CLOSE_TABS_V7_START */

    /*
     * Le trombone reste dans le compositeur.
     * On retire seulement l’espace inutile à sa gauche.
     */
    .composer-box {
      padding-left: 4px;
    }

    .attachment-wrap {
      margin-left: 0;
    }

    .attachment-menu {
      left: 0;
    }

    .nav-row {
      position: relative;

      width: 100%;
      margin-bottom: 2px;

      display: grid;
      grid-template-columns:
        minmax(0, 1fr)
        25px;

      align-items: center;
      gap: 1px;
    }

    .nav-row .nav-entry {
      min-width: 0;
      margin-bottom: 0;
    }

    .nav-close {
      width: 24px;
      height: 28px;
      padding: 0;

      display: grid;
      place-items: center;

      opacity: 0;
      pointer-events: none;

      border: 0;
      border-radius: 7px;

      color: #92929a;
      background: transparent;

      font-size: 16px;
      line-height: 1;

      cursor: pointer;

      transition:
        opacity .12s ease,
        color .12s ease,
        background .12s ease;
    }

    .nav-row:hover .nav-close,
    .nav-row:focus-within .nav-close {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-close:hover {
      color: #f4f4f5;

      background:
        linear-gradient(
          145deg,
          #36363d,
          #1b1b1f
        );
    }

    body.sidebar-collapsed .nav-row {
      display: block;
    }

    body.sidebar-collapsed .nav-close {
      display: none;
    }

    @media (max-width: 760px) {
      .nav-close {
        opacity: 1;
        pointer-events: auto;
      }
    }

    /* ZWORLD_CLASSIC_CLOSE_TABS_V7_END */
