PluginProbe ʕ •ᴥ•ʔ
Admin Help Docs / trunk
Admin Help Docs vtrunk
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 / tabs / css / support.css
admin-help-docs / inc / tabs / css Last commit date
admin-menu.css 3 months ago documentation.css 3 months ago faq.css 3 months ago import.css 3 months ago settings.css 3 months ago support.css 3 months ago
support.css
184 lines
1 /* Header Support Info */
2
3 #helpdocs-header-support-info {
4 display: flex;
5 align-items: center;
6 gap: 12px;
7 font-size: 13px;
8 color: #646970;
9 background: #f0f0f1;
10 padding: 6px 15px;
11 border-radius: 4px;
12 border: 1px solid #dcdcde;
13 font-weight: 500;
14 }
15
16 #helpdocs-header-support-info span {
17 display: inline-flex;
18 align-items: center;
19 }
20
21 .helpdocs-support-name {
22 color: #1d2327;
23 font-weight: 600;
24 }
25
26 .helpdocs-support-phone {
27 font-family: monospace;
28 letter-spacing: 0.5px;
29 }
30
31 #helpdocs-support-response {
32 display: block;
33 padding: 8px 12px;
34 font-size: 12px;
35 }
36
37 /* Response Messages */
38
39 #helpdocs-support-response.success {
40 border-left: 4px solid #28a745;
41 background: #e7f5fe;
42 }
43
44 #helpdocs-support-response.error {
45 border-left: 4px solid #dc3545;
46 background: #fbeaea;
47 }
48
49 /* Support Logs Container */
50
51 #helpdocs-support-logs .helpdocs-settings-header {
52 display: flex;
53 justify-content: space-between;
54 align-items: center;
55 padding: 15px 20px;
56 border-bottom: 1px solid #dcdcde;
57 }
58
59 #helpdocs-support-logs .helpdocs-settings-header h2 {
60 margin: 0;
61 }
62
63 #helpdocs-clear-logs {
64 display: flex;
65 align-items: center;
66 }
67
68 #helpdocs-clear-logs .dashicons {
69 height: 14px !important;
70 width: 14px !important;
71 margin-right: 6px;
72 font-size: 14px !important;
73 }
74
75 /* Table Styling */
76
77 .helpdocs-logs-table {
78 width: 100%;
79 border-collapse: collapse;
80 margin-top: 10px;
81 background: #fff;
82 font-size: 13px;
83 table-layout: fixed;
84 }
85
86 .helpdocs-logs-table th:nth-child(1) { width: 150px; } /* Date */
87 .helpdocs-logs-table th:nth-child(2) { width: auto; } /* Subject (Flexible) */
88 .helpdocs-logs-table th:nth-child(3) { width: 140px; } /* Reason */
89 .helpdocs-logs-table th:nth-child(4) { width: 120px; } /* Sent By */
90
91 .helpdocs-logs-table th {
92 text-align: left;
93 padding: 12px;
94 background: #f8f9fa;
95 border-bottom: 2px solid #dcdcde;
96 color: #2c3338;
97 }
98
99 .helpdocs-logs-table td {
100 padding: 12px;
101 border-bottom: 1px solid #f0f0f1;
102 vertical-align: top;
103 overflow: hidden;
104 text-overflow: ellipsis;
105 }
106
107 .helpdocs-logs-table tr:hover td {
108 background: #f6f7f7;
109 }
110
111 /* Log Column Specifics */
112
113 .log-date {
114 color: #646970;
115 white-space: nowrap;
116 }
117
118 .log-subject strong {
119 color: #1d2327;
120 display: block;
121 margin-bottom: 4px;
122 }
123
124 .helpdocs-toggle-message {
125 color: #2271b1;
126 text-decoration: none;
127 font-size: 11px;
128 font-weight: 400;
129 }
130
131 .helpdocs-toggle-message:hover {
132 color: #135e96;
133 text-decoration: underline;
134 }
135
136 /* Expanded Message Row */
137
138 .log-message-row td {
139 padding: 0 12px 15px 12px;
140 background: #f9f9f9;
141 }
142
143 .log-message-row .log-message {
144 padding: 12px;
145 border-left: 3px solid #dcdcde;
146 background: #fff;
147 font-style: italic;
148 white-space: pre-wrap;
149 color: #50575e;
150 line-height: 1.5;
151 }
152
153 .log-attachments-container {
154 margin-top: 8px;
155 font-size: 11px;
156 color: #50575e;
157 }
158
159 /* Reason Badge */
160
161 .log-badge {
162 display: inline-block;
163 padding: 2px 8px;
164 background: #e5e5e5;
165 color: #444;
166 border-radius: 3px;
167 font-size: 11px;
168 font-weight: 600;
169 text-transform: uppercase;
170 }
171
172 /* Visibility Utility */
173
174 .condition-hide {
175 display: none !important;
176 }
177
178 /* Required Field Indicator */
179
180 .helpdocs-required-field {
181 color: #d63638;
182 margin-left: 4px;
183 font-weight: bold;
184 }