| 1 |
.tableberg-element-font-options { |
| 2 |
margin-top: 8px; |
| 3 |
} |
| 4 |
|
| 5 |
.tableberg-element-font-option { |
| 6 |
border: 1px solid #ddd; |
| 7 |
border-radius: 2px; |
| 8 |
margin: 0; |
| 9 |
|
| 10 |
&:not(:last-child) { |
| 11 |
border-bottom-left-radius: 0; |
| 12 |
border-bottom-right-radius: 0; |
| 13 |
} |
| 14 |
|
| 15 |
&:not(:first-child) { |
| 16 |
border-top: none; |
| 17 |
border-top-left-radius: 0; |
| 18 |
border-top-right-radius: 0; |
| 19 |
} |
| 20 |
|
| 21 |
.block-editor-tools-panel-color-gradient-settings__dropdown { |
| 22 |
width: 100%; |
| 23 |
} |
| 24 |
|
| 25 |
.tableberg-element-font-option-toggle { |
| 26 |
width: 100%; |
| 27 |
justify-content: flex-start; |
| 28 |
box-shadow: none; |
| 29 |
} |
| 30 |
|
| 31 |
.tableberg-element-font-option-label { |
| 32 |
overflow: hidden; |
| 33 |
text-overflow: ellipsis; |
| 34 |
white-space: nowrap; |
| 35 |
} |
| 36 |
} |
| 37 |
|
| 38 |
.tableberg-element-font-option-popover { |
| 39 |
padding: 12px; |
| 40 |
display: flex; |
| 41 |
flex-direction: column; |
| 42 |
gap: 8px; |
| 43 |
} |
| 44 |
|
| 45 |
.tableberg-element-font-option-popover--font-size { |
| 46 |
min-width: 240px; |
| 47 |
} |
| 48 |
|