| 1 |
@import "../../variables"; |
| 2 |
|
| 3 |
.ghostkit-component-active-indicator { |
| 4 |
width: 7px; |
| 5 |
height: 7px; |
| 6 |
background-color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)); |
| 7 |
border-radius: 7px; |
| 8 |
|
| 9 |
// Panel toggle. |
| 10 |
.components-panel__body-toggle & { |
| 11 |
position: absolute; |
| 12 |
top: 50%; |
| 13 |
right: 40px; |
| 14 |
transform: translateY(-50%); |
| 15 |
} |
| 16 |
|
| 17 |
// Responsive tabs. |
| 18 |
.ghostkit-control-tabs-icon & { |
| 19 |
position: absolute; |
| 20 |
top: -7px; |
| 21 |
left: 50%; |
| 22 |
width: 3px; |
| 23 |
height: 3px; |
| 24 |
transform: translateX(-50%); |
| 25 |
} |
| 26 |
|
| 27 |
// Responsive Toggle. |
| 28 |
.ghostkit-control-responsive-toggle & { |
| 29 |
position: absolute; |
| 30 |
top: 0; |
| 31 |
left: 75%; |
| 32 |
width: 5px; |
| 33 |
height: 5px; |
| 34 |
outline: 2px solid #fff; |
| 35 |
} |
| 36 |
|
| 37 |
// Element State Toggle. |
| 38 |
.ghostkit-control-element-state-toggle & { |
| 39 |
position: absolute; |
| 40 |
top: 0; |
| 41 |
left: 12px; |
| 42 |
width: 5px; |
| 43 |
height: 5px; |
| 44 |
outline: 2px solid #fff; |
| 45 |
} |
| 46 |
|
| 47 |
.is-active > .ghostkit-control-responsive-toggle-icon & { |
| 48 |
background-color: #fff; |
| 49 |
outline: 2px solid #000; |
| 50 |
} |
| 51 |
} |
| 52 |
|