| 1 |
@import "../../variables"; |
| 2 |
|
| 3 |
.ghostkit-component-dropdown-picker-toggle { |
| 4 |
position: relative; |
| 5 |
display: flex; |
| 6 |
align-items: center; |
| 7 |
justify-content: space-between; |
| 8 |
width: 100%; |
| 9 |
height: auto; |
| 10 |
min-height: 40px; |
| 11 |
padding: 10px 12px; |
| 12 |
margin-bottom: 0; |
| 13 |
border: 1px solid rgba(0, 0, 0, 15%); |
| 14 |
border-radius: 0; |
| 15 |
|
| 16 |
&.ghostkit-component-dropdown-picker-toggle-active { |
| 17 |
color: var(--wp-admin-theme-color); |
| 18 |
background-color: #f0f0f0; |
| 19 |
} |
| 20 |
|
| 21 |
.ghostkit-component-dropdown-picker-toggle-label { |
| 22 |
overflow: hidden; |
| 23 |
text-overflow: ellipsis; |
| 24 |
white-space: nowrap; |
| 25 |
} |
| 26 |
} |
| 27 |
|
| 28 |
// Dropdown. |
| 29 |
.ghostkit-component-dropdown-picker__dropdown { |
| 30 |
display: block; |
| 31 |
width: 100%; |
| 32 |
} |
| 33 |
|
| 34 |
.ghostkit-component-dropdown-picker__dropdown-content { |
| 35 |
.components-popover__content { |
| 36 |
width: 260px; |
| 37 |
padding: 16px; |
| 38 |
} |
| 39 |
|
| 40 |
.components-tab-panel__tabs { |
| 41 |
margin-top: -16px; |
| 42 |
margin-right: -16px; |
| 43 |
margin-bottom: 16px; |
| 44 |
margin-left: -16px; |
| 45 |
} |
| 46 |
} |
| 47 |
|