PluginProbe ʕ •ᴥ•ʔ
Admin Help Docs / 2.0.1
Admin Help Docs v2.0.1
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 2 months ago docs.css 2 months ago header.css 2 months ago our-dashboard.css 2 months ago post-type-help-doc-imports.css 2 months ago post-type-help-docs.css 2 months ago post-types.css 2 months ago pt-tax.css 2 months ago taxonomies.css 2 months ago
header.css
130 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 0 -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 }
35
36 #helpdocs-subheader .subheader-left {
37 display: flex;
38 gap: 2rem;
39 align-items: center;
40 }
41
42 #helpdocs-header .tabs-wrapper {
43 display: flex;
44 gap: 5px;
45 align-items: center;
46 }
47
48 #helpdocs-header a.helpdocs-tab {
49 background: transparent;
50 color: var(--helpdocs-color-header-tab-link);
51 border: none !important;
52 border-radius: 6px;
53 text-decoration: none;
54 padding: 10px 15px !important;
55 cursor: pointer;
56 font-size: 12px !important;
57 line-height: 1 !important;
58 }
59
60 #helpdocs-header a.helpdocs-tab-active,
61 #helpdocs-header a.helpdocs-tab:hover {
62 background: var(--helpdocs-color-header-tab) !important;
63 color: var(--helpdocs-color-header-font) !important;
64 }
65
66 #helpdocs-header a.helpdocs-tab-active {
67 font-weight: 500;
68 }
69
70 #helpdocs-subheader h2.tab-title {
71 font-size: 21px;
72 font-weight: 400;
73 margin: 0 !important;
74 padding: 0 !important;
75 border-top: 0 !important;
76 }
77
78 #helpdocs-subheader a.tab-button {
79 display: inline-block;
80 padding: 8px 12px 6px !important;
81 }
82
83 #helpdocs-subheader .helpdocs-search-input {
84 margin-bottom: 0 !important;
85 }
86
87 #helpdocs-subheader a.tab-button .dashicons {
88 width: 16px;
89 height: 16px;
90 font-size: 16px;
91 vertical-align: middle !important;
92 margin: -2px 3px 0 -2px;
93 }
94
95 .helpdocs-tax-search,
96 .helpdocs-posttype-search {
97 display: flex;
98 gap: 10px;
99 }
100
101 .helpdocs-admin-screen #screen-meta,
102 .helpdocs-admin-screen #screen-meta-links {
103 display: none;
104 }
105
106 #helpdocs-subheader .subheader-right {
107 display: flex;
108 gap: 1rem;
109 align-items: center;
110 }
111
112 /* Save Reminder */
113
114 #helpdocs-save-reminder {
115 display: none;
116 background: linear-gradient(90deg,#dc3545 0%,#b02a37 100%);
117 color: #ffffff;
118 padding: 5px 20px;
119 border-radius: 8px;
120 font-size: 15px;
121 font-weight: 500;
122 box-shadow: 0 4px 14px rgba(220,53,69,0.25);
123 animation: helpdocsPulse 2s ease-in-out infinite;
124 }
125
126 @keyframes helpdocsPulse{
127 0%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
128 50%{box-shadow:0 6px 24px rgba(220,53,69,0.6);}
129 100%{box-shadow:0 4px 14px rgba(220,53,69,0.25);}
130 }