Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions src/wp-admin/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ table.form-table td .updated p {
border-left: 4px solid #fff;
}

.privacy_requests tbody th {
.privacy_requests tbody td.check-column {
border-left: 4px solid #fff;
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
Expand All @@ -1515,7 +1515,8 @@ table.form-table td .updated p {
margin: 0 0 5px;
}

.privacy_requests tbody td {
.privacy_requests tbody td:not(.check-column),
.privacy_requests tbody th {
background: #fff;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
Expand All @@ -1529,16 +1530,14 @@ table.form-table td .updated p {
white-space: normal;
}

.privacy_requests .status-request-confirmed th,
.privacy_requests .status-request-confirmed td {
.privacy_requests tr.status-request-confirmed td.check-column {
background-color: #fff;
border-left-color: #72aee6;
border-left-color: #3858e9;
}

.privacy_requests .status-request-failed th,
.privacy_requests .status-request-failed td {
.privacy_requests tr.status-request-failed td.check-column {
background-color: #f6f7f7;
border-left-color: #d63638;
border-left-color: #cc1818;
}

.privacy_requests .export_personal_data_failed a {
Expand Down Expand Up @@ -1973,11 +1972,6 @@ table.form-table td .updated p {
display: table-cell;
}

.wp-list-table.privacy_requests.widefat th input,
.wp-list-table.privacy_requests.widefat thead td input {
margin-left: 5px;
}

.wp-privacy-request-form-field input[type="text"] {
width: 100%;
margin-bottom: 10px;
Expand Down
Loading