# tableberg/1.1.5/src/preview/cell/sorting.scss

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

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/preview/cell/sorting.scss
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/preview/cell/sorting.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/preview/cell/sorting.scss#L10-L20`.

```scss
.wp-block-tableberg th[data-sortable] {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.wp-block-tableberg .tableberg-sort-indicator {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 10px;
    line-height: 1;
    color: #757575;
    pointer-events: none;
    transition: color 0.15s ease-in-out;
}

.wp-block-tableberg .tableberg-sort-indicator.tableberg-sort-indicator--active {
    color: #007cba;
}

```
