| @@ -52,4 +52,38 @@ | ||
| 52 | 52 | to { |
| 53 | 53 | -webkit-transform: rotate(359deg); |
| 54 | 54 | } |
| 55 | 55 | } |
| 56 | + | |
| 57 | +/* --------------------------------------------------------------------------- | |
| 58 | + * "Not fully active" warning row on the plugins list page. | |
| 59 | + * ------------------------------------------------------------------------- */ | |
| 60 | + | |
| 61 | +/* | |
| 62 | + * The plugin row's own data-slug is derived from the plugin name, so target the | |
| 63 | + * stable data-plugin value (the plugin basename) instead. | |
| 64 | + */ | |
| 65 | +tr[data-plugin="subscription/subscription.php"] > * { | |
| 66 | + background: #fef2f2 !important; /* red-50 */ | |
| 67 | + box-shadow: none !important; | |
| 68 | +} | |
| 69 | + | |
| 70 | +tr[data-plugin="subscription/subscription.php"] .check-column, | |
| 71 | +.subscrpt-plugin-warning-row .check-column { | |
| 72 | + border-left: 4px solid #dc2626 !important; /* red-600 */ | |
| 73 | +} | |
| 74 | + | |
| 75 | +.subscrpt-plugin-warning-row > * { | |
| 76 | + background: #fef2f2 !important; /* red-50 */ | |
| 77 | + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important; | |
| 78 | +} | |
| 79 | + | |
| 80 | +.subscrpt-plugin-warning-row .check-column span { | |
| 81 | + display: block; | |
| 82 | + margin-inline: auto; | |
| 83 | + margin-top: 4px; | |
| 84 | +} | |
| 85 | + | |
| 86 | +.subscrpt-plugin-warning-row .check-column span::before, | |
| 87 | +.subscrpt-plugin-warning-row .column-primary p { | |
| 88 | + color: #dc2626 !important; /* red-600 */ | |
| 89 | +} | |