editor.scss
32 lines
| 1 | .gb-responsive-tabs { |
| 2 | position: sticky; |
| 3 | top: 0; |
| 4 | background: #fff; |
| 5 | border-top: 1px solid #e2e4e7; |
| 6 | border-bottom: 1px solid #e2e4e7; |
| 7 | z-index: 10; |
| 8 | display: flex; |
| 9 | |
| 10 | button { |
| 11 | flex-grow: 1; |
| 12 | justify-content: center; |
| 13 | padding: 10px; |
| 14 | height: unset; |
| 15 | border-radius: unset; |
| 16 | outline: 0 !important; |
| 17 | |
| 18 | &.is-pressed:not(:disabled), |
| 19 | &:focus:not(:disabled), |
| 20 | &:active:not(:disabled), |
| 21 | &:hover:not(:disabled) { |
| 22 | box-shadow: unset !important; |
| 23 | background: #007cba !important; |
| 24 | color: #fff !important; |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | .block-editor-block-inspector .gb-responsive-tabs + .components-panel__body { |
| 30 | border-top: 0; |
| 31 | } |
| 32 |