| 1 |
/** |
| 2 |
* Control Range Component CSS |
| 3 |
*/ |
| 4 |
.ghostkit-component-range-control { |
| 5 |
> .components-base-control__field, |
| 6 |
> .components-base-control__field > .components-base-control, |
| 7 |
> .components-base-control__field > .components-base-control > .components-base-control__field { |
| 8 |
margin-bottom: 0; |
| 9 |
} |
| 10 |
|
| 11 |
> .components-base-control__field { |
| 12 |
display: flex; |
| 13 |
flex-wrap: wrap; |
| 14 |
align-items: center; |
| 15 |
|
| 16 |
> .components-base-control__label { |
| 17 |
flex: 100%; |
| 18 |
width: 100%; |
| 19 |
} |
| 20 |
|
| 21 |
> .components-range-control { |
| 22 |
flex: 1; |
| 23 |
margin-right: 10px; |
| 24 |
} |
| 25 |
|
| 26 |
.components-text-control__input { |
| 27 |
width: 64px; |
| 28 |
} |
| 29 |
} |
| 30 |
} |
| 31 |
|