Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

separate settings and manual scan in admin ui #107

Merged
merged 6 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
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
121 changes: 57 additions & 64 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,93 +1,86 @@
/* @group Manual Scan */
/* Scan controls */

#av_manual_scan {
height: 1%;
overflow: hidden;
span.av-scan-complete {
background: #fff;
border: 1px solid #007017;
border-radius: 3px;
color: #008a20;
display: inline-block;
line-height: 2;
margin: 0 10px;
padding: 0 0.5em;
}

#av_manual_scan a.button {
float: left;
#av-scan-process .spinner {
float: none;
}

#av_manual_scan .alert {
float: left;
color: #008a20;
margin: 0 10px;
border: 1px solid #007017;
display: none;
height: 26px;
line-height: 26px;
padding: 0 10px;
background: #fff;
border-radius: 3px;

/* Scan results table. */

table.av-scan-results .av-toggle-column {
width: 2.2em;
}

#av_main .inside .output {
clear: both;
height: 1%;
margin: 0 0 0 -6px;
padding: 0 0 6px;
overflow: hidden;
table.av-scan-results .av-file-column > p a.button {
float: right;
}

#av_main .inside .output div {
float: left;
color: #000;
margin: 12px 6px 0;
padding: 8px 12px 10px;
background: #dba617;
border-radius: 3px;
table.av-scan-results .av-status-column {
text-align: center;
width: 7em;
}

transition: background-color 0.5s linear;
-o-transition: background-color 0.5s linear;
-ms-transition: background-color 0.5s linear;
-moz-transition: background-color 0.5s linear;
-webkit-transition: background-color 0.5s linear;
table.av-scan-results .av-file-column > p {
line-height: 2;
padding: 0.5em;
}

#av_main .inside .output div.done {
background: #008a20;
color: #fff;
table.av-scan-results .av-file-column > p a {
margin: 0 0.5em 0.5em 0.5em;
}

#av_main .inside .output div.danger {
width: 97%;
background: #d63638;
color: #fff;
table.av-scan-results .av-file-column > p code {
background-color: #f0f0f1;
border: 1px solid #a7aaad;
padding: 0.5em;
}

#av_main .inside .output div p {
padding: 10px;
overflow: hidden;
background: #f6f7f7;
white-space: nowrap;
border-radius: 3px;
table.av-scan-results .av-file-column > p code span {
padding: 0.2em;
background: #f2d675;
}

#av_main .inside .output div p a {
margin: 0 6px 12px 0;
table.av-scan-results td {
color: #3c434a;
}

#av_main .inside .output div p code {
clear: both;
float: left;
color: #000;
padding: 2px 5px;
border-radius: 3px;
table.av-scan-results tr.av-status-pending .av-status-column {
font-style: italic;
}

#av_main .inside .output div p code span {
padding: 2px;
background: #f2d675;
table.av-scan-results tr.av-status-ok {
background-color: #edfaef;
}

/* @end group */
table.av-scan-results tr.av-status-ok td:first-of-type {
border-left: 4px solid #007017;
}

table.av-scan-results tr.av-status-ok .av-status-column {
color: #005c12;
font-weight: 700;
}

/* @group WordPress 3.8 Fix */
table.av-scan-results tr.av-status-warning {
background-color: #fcf0f1;
}

#av_notify_email {
line-height: 1.5;
table.av-scan-results tr.av-status-warning td:first-of-type {
border-left: 4px solid #b32d2e;
}

/* @end group */
table.av-scan-results tr.av-status-warning td.av-status-column {
color: #8a2424;
font-weight: 700;
}
Loading