vue-multiselect icon indicating copy to clipboard operation
vue-multiselect copied to clipboard

[FEATURE] Readonly mode

Open brauliobo opened this issue 1 year ago • 0 comments

For the usecase of showing tags without having a dropdown, the input and the option to remove each tag, a readonly mode would fit it.

One simple CSS for it:

  .multiselect {
    width: auto;
    cursor: auto;

    .multiselect__select, .multiselect__tag-icon, .multiselect__content-wrapper, .multiselect__placeholder {
      display: none !important;
    }
    .multiselect__tags {
      border: none;
      .multiselect__tag {
        padding-right: 10px;
      }
    }
  }

brauliobo avatar Aug 08 '24 19:08 brauliobo