PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / src / preview / cell / sorting.scss

sorting.scss in Tableberg – Simple Gutenberg Table Block 1.1.5, at src/preview/cell/sorting.scss

22 lines 480 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wp-block-tableberg th[data-sortable]] {
2 cursor: pointer;
3 user-select: none;
4 position: relative;
5 }
6
7 .wp-block-tableberg .tableberg-sort-indicator {
8 position: absolute;
9 top: 50%;
10 right: 8px;
11 transform: translateY(-50%);
12 font-size: 10px;
13 line-height: 1;
14 color: #757575;
15 pointer-events: none;
16 transition: color 0.15s ease-in-out;
17 }
18
19 .wp-block-tableberg .tableberg-sort-indicator.tableberg-sort-indicator--active {
20 color: #007cba;
21 }
22