PluginProbe ʕ •ᴥ•ʔ
Admin Help Docs / 2.0.2
Admin Help Docs v2.0.2
2.0.2 2.0.1.1 trunk 1.4.3.2 2.0.0 2.0.0.1 2.0.0.2 2.0.1
admin-help-docs / inc / css / header.css
admin-help-docs / inc / css Last commit date
content.css 1 week ago docs.css 1 week ago header.css 1 week ago our-dashboard.css 1 week ago post-type-help-doc-imports.css 1 week ago post-type-help-docs.css 1 week ago post-types.css 1 week ago pt-tax.css 1 week ago taxonomies.css 1 week ago
header.css
152 lines
1 #helpdocs-header {
2 margin: 0 0 0 -20px !important;
3 display: flex;
4 gap: 1rem;
5 align-items: center;
6 background: var(--helpdocs-color-header-bg) !important;
7 padding: 20px 30px;
8 }
9
10 #helpdocs-header .logo {
11 height: 32px !important;
12 width: auto !important;
13 }
14
15 #helpdocs-header h1 {
16 color: var(--helpdocs-color-header-font) !important;
17 letter-spacing: 0 !important;
18 line-height: 1.2 !important;
19 font-size: 1.5rem;
20 margin: 0 0 3px 0;
21 padding: 0;
22 }
23
24 #helpdocs-subheader {
25 margin: 0 0 20px -20px !important;
26 display: flex;
27 gap: 2rem;
28 justify-content: space-between;
29 align-items: center;
30 background: white !important;
31 color: #333 !important;
32 padding: 20px 30px;
33 box-shadow: 0px 1px 2px rgba(16, 24, 40, .1);
34 min-height: 40px;
35 }
36
37 #helpdocs-subheader .subheader-left {
38 display: flex;
39 gap: 2rem;
40 align-items: center;
41 }
42
43 #helpdocs-header .tabs-wrapper {
44 display: flex;
45 gap: 5px;
46 align-items: center;
47 }
48
49 #helpdocs-header a.helpdocs-tab {
50 background: transparent;
51 color: var(--helpdocs-color-header-tab-link);
52 border: none !important;
53 border-radius: 6px;
54 text-decoration: none;
55 padding: 10px 15px !important;
56 cursor: pointer;
57 font-size: 12px !important;
58 line-height: 1 !important;
59 }
60
61 #helpdocs-header a.helpdocs-tab-active,
62 #helpdocs-header a.helpdocs-tab:hover {
63 background: var(--helpdocs-color-header-tab) !important;
64 color: var(--helpdocs-color-header-font) !important;
65 }
66
67 #helpdocs-header a.helpdocs-tab-active {
68 font-weight: 500;
69 }
70
71 #helpdocs-subheader h2.tab-title {
72 font-size: 21px;
73 font-weight: 400;
74 margin: 0 !important;
75 padding: 0 !important;
76 border-top: 0 !important;
77 }
78
79 #helpdocs-subheader .helpdocs-search-input {
80 margin-bottom: 0 !important;
81 height: 30px !important;
82 min-height: 30px !important;
83 border-radius: 5px;
84 }
85
86 #helpdocs-subheader a.tab-button .dashicons {
87 width: 16px;
88 height: 16px;
89 font-size: 16px;
90 vertical-align: middle !important;
91 margin: 2px 3px 0 -2px;
92 }
93
94 .helpdocs-tax-search,
95 .helpdocs-posttype-search {
96 display: flex;
97 gap: 10px;
98 }
99
100 .helpdocs-admin-screen #screen-meta,
101 .helpdocs-admin-screen #screen-meta-links {
102 display: none;
103 }
104
105 #helpdocs-subheader .subheader-right {
106 display: flex;
107 gap: 1rem;
108 align-items: center;
109 }
110
111 #helpdocs-subheader input[type="submit"],
112 #helpdocs-subheader button,
113 #helpdocs-subheader a.helpdocs-button {
114 height: 30px !important;
115 min-height: 30px !important;
116 line-height: 1 !important;
117 padding: 0px 12px !important;
118 border: none;
119 }
120
121
122 /* Save Reminder */
123
124 #helpdocs-save-reminder {
125 display: none;
126 background: linear-gradient(90deg,#dc3545 0%,#b02a37 100%);
127 color: #ffffff;
128 padding: 5px 20px;
129 border-radius: 8px;
130 font-size: 15px;
131 font-weight: 500;
132 box-shadow: 0 4px 14px rgba(220,53,69,0.25);
133 animation: helpdocsPulse 2s ease-in-out infinite;
134 }
135
136 @keyframes helpdocsPulse{
137 0%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
138 50%{box-shadow:0 6px 24px rgba(220,53,69,0.6);}
139 100%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
140 }
141
142 /* Notices */
143
144 .helpdocs-admin-screen:not(.toplevel_page_admin-help-docs) .notice {
145 margin: -35px 0 40px;
146 }
147
148 .toplevel_page_admin-help-docs .notice {
149 margin: 5px 30px 2px 10px;
150 background: #fff;
151 box-shadow: 0 1px 3px rgba(0,0,0,0.1);
152 }