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 / manage.scss

manage.scss in Code Snippets 4.0.0-beta.2, at css/manage.scss

102 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @use 'common/buttons';
2 @use 'common/theme';
3 @use 'common/badges';
4 @use 'common/switch';
5 @use 'common/tooltips';
6 @use 'common/select';
7 @use 'common/modal';
8 @use 'common/notices';
9 @use 'common/upsell';
10 @use 'common/toolbar';
11 @use 'common/subnav';
12 @use 'common/wp-admin';
13 @use 'common/page-subtitle';
14 @use 'manage/cloud-community';
15 @use 'manage/cloud-library';
16 @use 'manage/blueprints';
17 @use 'common/page-header';
18 @use 'common/kebab-menu';
19 @use 'common/demo';
20 @use 'manage/snippets-table';
21 @use 'manage/cloud-community-cards';
22 @use 'manage/ai-agent';
23 @use 'manage/ai-agent-demo';
24 @use 'manage/cloud-library-demo';
25 @use 'manage/blueprints-demo';
26
27 .tablenav .tablenav-pages {
28 margin-block-end: 0;
29 }
30
31 .create-snippet-button {
32 margin-inline-start: auto;
33 float: inline-end;
34 clear: both;
35 margin-block-start: 1em;
36 }
37
38 .nav-tab {
39 display: flex;
40 flex-flow: row wrap;
41 align-items: center;
42 gap: 8px;
43
44 @media (width <= 1190px) {
45 span:first-child:not(:last-child) {
46 display: none;
47 }
48 }
49 }
50
51 .nav-tab-wrapper + .subsubsub, p.search-box {
52 margin-block: 10px 0;
53 margin-inline: 0;
54 }
55
56 .wrap > h2:first-of-type {
57 font-size: 1.5rem;
58 font-weight: 400;
59 line-height: 1.3;
60 padding: 0;
61 margin-block: 50px 1rem;
62
63 .subtitle {
64 vertical-align: middle;
65 display: inline-flex;
66 align-items: center;
67 gap: 1em;
68 }
69 }
70
71 .refresh-button-container {
72 display: flex;
73 align-items: center;
74 justify-content: flex-start;
75 margin-block: 15px -39px;
76 gap: 7px;
77 }
78
79 #refresh-button {
80 inline-size: 30px;
81 padding: 0;
82 font-size: 20px;
83 line-height: 1.4;
84 }
85
86 .wrap .nav-tab-wrapper {
87 .nav-tab {
88 display: flex;
89 flex-flow: row wrap;
90 align-items: center;
91 gap: 8px;
92 }
93 }
94
95 @media (width <= 1190px) {
96 .nav-tab {
97 .snippet-label {
98 display: none;
99 }
100 }
101 }
102