Forums Forums Search Search Results for '.select2-container'

Viewing 3 results - 31 through 33 (of 33 total)
  • Author
    Search Results

  • Trevor
    Participant

    Try this Custom CSS:

    .select2-container {
      width: 100% !important;
    }
    #113310

    Anonymous
    Inactive

    .searchandfilter .select2-container–default .select2-selection–multiple .select2-selection__choice {
    background-color: #F58634;
    border-radius: 0;
    }

    Works perfectly – thanks = resolved

    #113296

    Trevor
    Participant

    Can you try with this added specificity (your theme seems to be setting the color):

    .searchandfilter select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #F58634;
        border-radius: 0;
    }
    .searchandfilter .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #F58634;
        border-radius: 0;
    }
    .searchandfilter .select2-container--default .select2-results__option[aria-selected=true] {
        background-color: #F58634;
        border-radius: 0;
    }
Viewing 3 results - 31 through 33 (of 33 total)