# post-carousel/4.0.3/src/components/multipleSelect/editor.scss

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.3. 70 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.3/code/src/components/multipleSelect/editor.scss
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.3/raw/src/components/multipleSelect/editor.scss
- Modified: 2026-04-24T11:48:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/post-carousel/4.0.3/code/src/components/multipleSelect/editor.scss#L10-L20`.

```scss
// multiple select's css
.sp-smart-post-tab-panel {
  .sp-smart-post-multi-select {
    &.d-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .css-t3ipsp-control{
      box-shadow: none;
      border-color: #ccc;
    }
    div[role="option"] {
      background-color: transparent;
    }
    div[role="option"]:hover {
      background-color: #f0f0f0;
    }
    .css-1dyz3mf {
      padding: 0px 2px;
    }
    .css-1p3m7a8-multiValue {
      padding: 1px;
      font-size: 13px;
      border: 1px solid #ccc;
      background-color: #f1f1f1;
    }
    .css-9jq23d {
      font-size: 13px;
    }
    // customize scrollbar
    /* width */
    // &::-webkit-scrollbar {
    //   width: 4px;
    // }

    // /* Track */
    // &::-webkit-scrollbar-track {
    //   background: #f1f1f1;
    // }

    // /* Handle */
    // &::-webkit-scrollbar-thumb {
    //   background: #F05D31;
    // }

    .sp-smart-post-basic-multi-select div {
      div {
        div {
          input {
            &:focus {
              box-shadow: none;
              border-color: var(--sp-smart-primary-2-400);
            }
          }
          div:last-child{
            margin: 1px;
          }
          div:last-child:hover {
            background-color: var(--sp-smart-primary-2-400);
            svg {
              fill: #fff;
            }
          }
        }
      }
    }
  }
}

```
