edit-fill-text {
  editor.edit,
  editor.both,
  editor.html {
    editor-toolbar {
      border-left: 52px #eee solid;

      .option.filltext {
        position: absolute;
        left: -52px;
        box-sizing: border-box;
        top: 0;
        height: 100%;
        width: 52px;

        & > i {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 100%;
          width: 100%;

          &::before {
            font-size: 28px;
            @include fonticon;
            content: "\e858";
            color: $orange;
          }
        }
      }
    }

    fill-zone {
      cursor: pointer;

      text-zone {
        //pointer-events: none;
        user-select: none;

        span {
          font-size: 1rem;
          padding-right: .5rem;
        }

        &::after {
          content: " ";
          display: block;
          height: 100%;
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 2;
        }
      }
    }
  }
}
