All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.src.scss.theme.classic._multiple.scss Maven / Gradle / Ivy

Go to download

Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.

The newest version!
.select2-selection--multiple {
  background-color: white;

  border: 1px solid $border-color;
  border-radius: $border-radius;

  cursor: text;

  outline: 0;

  padding-bottom: 5px;
  padding-right: 5px;

  &:focus {
    border: 1px solid $focus-border-color;
  }

  .select2-selection__clear {
    display: none;
  }

  .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid $border-color;
    border-radius: $border-radius;

    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
  }

  .select2-selection__choice__display {
    cursor: default;

    padding-left: 2px;
    padding-right: 5px;
  }

  .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: $border-radius;
    border-bottom-left-radius: $border-radius;

    color: $remove-color;
    cursor: pointer;

    font-size: 1em;
    font-weight: bold;

    padding: 0 4px;

    &:hover {
      color: $remove-hover-color;
      outline: none;
    }
  }
}

&[dir="rtl"] {
  .select2-selection--multiple {
    .select2-selection__choice {
      margin-left: 5px;
      margin-right: auto;
    }

    .select2-selection__choice__display {
      padding-left: 5px;
      padding-right: 2px;
    }

    .select2-selection__choice__remove {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border-top-right-radius: $border-radius;
      border-bottom-right-radius: $border-radius;
    }
  }
}

&.select2-container--open {
  .select2-selection--multiple {
    border: 1px solid $focus-border-color;
  }

  &.select2-container--above {
    .select2-selection--multiple {
      border-top: none;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
    }
  }

  &.select2-container--below {
    .select2-selection--multiple {
      border-bottom: none;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy