mirror of
https://github.com/felixfoertsch/wordpress-dev-env.git
synced 2026-04-18 23:38:37 +02:00
Initial commit
This commit is contained in:
93
wordpress_plugins/wp-crontrol/css/wp-crontrol.css
Normal file
93
wordpress_plugins/wp-crontrol/css/wp-crontrol.css
Normal file
@@ -0,0 +1,93 @@
|
||||
|
||||
@keyframes crontrol-rotating {
|
||||
from {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.crontrol-rotating {
|
||||
animation: crontrol-rotating 3s linear infinite;
|
||||
}
|
||||
|
||||
table.wp-list-table {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
table-layout: auto;
|
||||
overflow-x: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||
}
|
||||
|
||||
.wp-list-table pre {
|
||||
white-space: pre-wrap;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.wp-list-table code {
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.wp-list-table td.column-status {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.wp-list-table td.column-cb,
|
||||
.wp-list-table tbody th {
|
||||
border-left: 4px solid transparent;
|
||||
}
|
||||
|
||||
.wp-list-table tr.crontrol-no-action th,
|
||||
.wp-list-table tr.crontrol-stalled th,
|
||||
.wp-list-table tr.crontrol-warning th {
|
||||
border-color: #ffb900;
|
||||
}
|
||||
|
||||
.wp-list-table tr.crontrol-error th {
|
||||
border-color: #dc3232;
|
||||
}
|
||||
|
||||
#crontrol-hash-message {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.status-crontrol-complete,
|
||||
.wp-list-table tr.crontrol-complete td.column-status {
|
||||
color: #080;
|
||||
}
|
||||
|
||||
.status-crontrol-no-action,
|
||||
.status-crontrol-stalled,
|
||||
.status-crontrol-warning,
|
||||
.wp-list-table tr.crontrol-no-action td.column-status,
|
||||
.wp-list-table tr.crontrol-stalled td.column-status,
|
||||
.wp-list-table tr.crontrol-warning td.column-status {
|
||||
color: #c60;
|
||||
}
|
||||
|
||||
.status-crontrol-emergency,
|
||||
.status-crontrol-alert,
|
||||
.status-crontrol-critical,
|
||||
.status-crontrol-error,
|
||||
.wp-list-table tr.crontrol-error td.column-status {
|
||||
color: #a00;
|
||||
}
|
||||
|
||||
.wp-list-table .column-https,
|
||||
.wp-list-table .column-queries,
|
||||
.wp-list-table .column-time {
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.column-time,
|
||||
.column-ran,
|
||||
.column-crontrol_next {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.row-actions .in-use {
|
||||
color: #666;
|
||||
}
|
||||
Reference in New Issue
Block a user