# tableberg/1.1.5/src/components/ElementFontOptions/style.scss

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 48 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/components/ElementFontOptions/style.scss
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/components/ElementFontOptions/style.scss
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/components/ElementFontOptions/style.scss#L10-L20`.

```scss
.tableberg-element-font-options {
    margin-top: 8px;
}

.tableberg-element-font-option {
    border: 1px solid #ddd;
    border-radius: 2px;
    margin: 0;

    &:not(:last-child) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    &:not(:first-child) {
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .block-editor-tools-panel-color-gradient-settings__dropdown {
        width: 100%;
    }

    .tableberg-element-font-option-toggle {
        width: 100%;
        justify-content: flex-start;
        box-shadow: none;
    }

    .tableberg-element-font-option-label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.tableberg-element-font-option-popover {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tableberg-element-font-option-popover--font-size {
    min-width: 240px;
}

```
