PluginProbe ʕ •ᴥ•ʔ
GenerateBlocks / 1.4.0
GenerateBlocks v1.4.0
trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.3.0
generateblocks / src / components / responsive-tabs / editor.scss
generateblocks / src / components / responsive-tabs Last commit date
editor.scss 6 years ago index.js 5 years ago
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