PluginProbe
HTTP 410 (Gone) responses / trunk
HTTP 410 (Gone) responses vtrunk
1.2.1 trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.6.1 0.7 0.7.1 0.7.2 0.8.1 0.8.2 1.0.2 1.0.3 1.1.0
wp-410 / css / admin.css

admin.css in HTTP 410 (Gone) responses trunk, at css/admin.css

66 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Admin styles for HTTP 410 (Gone) responses plugin.
3 *
4 * @package MCLV_410_Plugin
5 */
6
7 tr.invalid label {
8 color: red;
9 }
10
11 p.invalid {
12 background: #FFEBE8;
13 border: 1px solid red;
14 border-radius: 5px;
15 padding: 5px 10px;
16 }
17
18 .mclv-410-table-wrap {
19 max-width: 890px;
20 max-height: 300px;
21 overflow-y: scroll;
22 }
23
24 .mclv-410-table-wrap + .tablenav {
25 max-width: 890px;
26 display: flex;
27 align-items: center;
28 justify-content: space-between;
29 float: none;
30 }
31
32 .mclv-410-table-wrap + .tablenav .tablenav-pages {
33 float: none;
34 display: flex;
35 align-items: center;
36 gap: 8px;
37 }
38
39 /* Wildcard patterns section */
40 .mclv-410-wildcard-notice {
41 background: #FFF8E5;
42 border-left: 4px solid #FFB900;
43 padding: 12px 16px;
44 margin: 10px 0 15px 0;
45 max-width: 890px;
46 }
47
48 .mclv-410-wildcard-notice p {
49 margin: 0;
50 color: #1d2327;
51 }
52
53 .mclv-410-wildcard-notice code {
54 background: rgba(0, 0, 0, 0.07);
55 padding: 2px 6px;
56 border-radius: 3px;
57 }
58
59 #mclv_gone_wildcards {
60 border-left: 3px solid #FFB900;
61 }
62
63 #mclv_gone_wildcards tbody tr:hover {
64 background-color: #FFF8E5;
65 }
66