PluginProbe
Gutenberg / 23.3.0
Gutenberg v23.3.0
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / styles / block-library / tab / style.css

style.css in Gutenberg 23.3.0, at build/styles/block-library/tab/style.css

33 lines 808 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .wp-block-tab {
2 box-sizing: border-box;
3 color: inherit;
4 display: block;
5 width: max-content;
6 text-decoration: none;
7 cursor: pointer;
8 flex-basis: inherit !important;
9 flex-grow: inherit !important;
10 position: relative;
11 border: none;
12 background: none;
13 appearance: none;
14 -webkit-appearance: none;
15 margin: 0;
16 padding: var(--wp--preset--spacing--20, 0.5em) var(--wp--preset--spacing--30, 1em);
17 font-size: inherit;
18 font-family: inherit;
19 font-weight: inherit;
20 line-height: inherit;
21 letter-spacing: inherit;
22 text-transform: inherit;
23 text-align: inherit;
24 }
25 .wp-block-tab[aria-selected=true]::before, .wp-block-tab.is-active::before {
26 content: "";
27 position: absolute;
28 border-bottom: 2px solid currentColor;
29 pointer-events: none;
30 left: 0;
31 width: 100%;
32 bottom: 0;
33 }