PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / css / common / _page-header.scss

_page-header.scss in Code Snippets 4.0.0-beta.2, at css/common/_page-header.scss

45 lines 941 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @use 'theme';
2
3 // Contextual page header row shared by the plugin admin screens: the page
4 // title on the inline-start side and the primary page action, if any,
5 // aligned to the inline-end side of the same row.
6 .snippets-page-header {
7 display: flex;
8 align-items: center;
9 justify-content: space-between;
10 flex-wrap: wrap;
11 gap: 16px 24px;
12 margin-block: 0.5rem 16px;
13
14 h1 {
15 margin: 0;
16 padding: 0;
17 font-size: 24px;
18 font-weight: 500;
19 line-height: 1.25;
20 color: var(--cs-color-text);
21 }
22 }
23
24 .wrap .snippets-page-header .button.button-primary {
25 padding: 12px;
26 min-block-size: 0;
27 border-radius: 5px;
28 line-height: 1;
29 font-size: 14px;
30 font-weight: 700;
31 }
32
33 // One-line supporting description shown directly beneath the page title.
34 .snippets-page-description {
35 margin-block: 0 16px;
36 font-size: 14px;
37 line-height: 1.5;
38 color: var(--cs-color-text-muted);
39
40 a {
41 color: var(--cs-color-accent);
42 text-decoration: underline;
43 }
44 }
45