-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from pluginkollektiv/feature/wpui
separate settings and manual scan in admin ui
- Loading branch information
Showing
3 changed files
with
224 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
Oops, something went wrong.