| 1 |
.sp-smart-post-select-dropdown:not(.sp-smart-section-heading-dropdown) { |
| 2 |
max-height: 300px; |
| 3 |
|
| 4 |
.sp-smart-post-select-dropdown-option svg { |
| 5 |
fill: #3c434a; |
| 6 |
} |
| 7 |
} |
| 8 |
.sp-smart-post-select-dropdown { |
| 9 |
width: 360px !important; |
| 10 |
/* Set a fixed width */ |
| 11 |
display: flex; |
| 12 |
flex-direction: column; |
| 13 |
overflow-x: hidden; |
| 14 |
overflow-y: auto; |
| 15 |
max-height: 400px; |
| 16 |
box-sizing: border-box; |
| 17 |
margin: 0; |
| 18 |
padding: 0; |
| 19 |
|
| 20 |
.disabled { |
| 21 |
opacity: 1; |
| 22 |
color: #707070bd; |
| 23 |
} |
| 24 |
|
| 25 |
.sp-smart-post-select-dropdown-option { |
| 26 |
display: flex; |
| 27 |
justify-content: space-between; |
| 28 |
align-items: center; |
| 29 |
cursor: pointer; |
| 30 |
padding: 0px 13px; |
| 31 |
margin: 0px; |
| 32 |
height: 42px; |
| 33 |
border-bottom: 1px solid rgba(240, 93, 49, 0.1); |
| 34 |
flex-shrink: 0; |
| 35 |
|
| 36 |
>span { |
| 37 |
margin: 0px; |
| 38 |
font-size: 13px; |
| 39 |
display: flex; |
| 40 |
align-items: center; |
| 41 |
} |
| 42 |
|
| 43 |
&.active { |
| 44 |
background-color: var( --sp-smart-primary-2-400 ); |
| 45 |
color: #fff; |
| 46 |
|
| 47 |
svg { |
| 48 |
fill: #fff; |
| 49 |
} |
| 50 |
|
| 51 |
path[fill="#2f2f2f"]="#2f2f2f""] { |
| 52 |
fill: #fff; |
| 53 |
} |
| 54 |
i{ |
| 55 |
color: #fff; |
| 56 |
} |
| 57 |
} |
| 58 |
|
| 59 |
&.active:hover { |
| 60 |
background-color: var( --sp-smart-primary-2-400 ); |
| 61 |
color: #fff; |
| 62 |
} |
| 63 |
} |
| 64 |
|
| 65 |
.sp-smart-post-select-dropdown-option:hover { |
| 66 |
background-color: var(--sp-smart-primary-2-50); |
| 67 |
} |
| 68 |
} |
| 69 |
|
| 70 |
.sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option:hover.active, |
| 71 |
.sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option.active path[fill="#2f2f2f"]="#2f2f2f""], |
| 72 |
.sp-smart-section-heading-dropdown .sp-smart-post-select-dropdown-option.active { |
| 73 |
background-color: var(--sp-smart-primary-2-50); |
| 74 |
color: #222222; |
| 75 |
fill: #222222; |
| 76 |
} |
| 77 |
|
| 78 |
/* Metadata dropdown component user icon size */ |
| 79 |
.sp-smart-post-popup-content .sp-smart-post-select-dropdown .sp-smart-post-select-dropdown-option svg { |
| 80 |
min-width: 20px; |
| 81 |
min-height: 20px; |
| 82 |
} |
| 83 |
|