mirror of
https://github.com/WPMultisite/multisite-plugin-control.git
synced 2025-08-05 23:05:10 +08:00
v1.9.1 版本发布
This commit is contained in:
parent
00d6c47799
commit
308c0faebd
10 changed files with 1932 additions and 0 deletions
85
css/plugin-report.css
Normal file
85
css/plugin-report.css
Normal file
|
@ -0,0 +1,85 @@
|
|||
/* risk indicator classes */
|
||||
|
||||
td.pr-risk-low {
|
||||
background-color: rgba( 0, 255, 0, 0.075 );
|
||||
color: #090 !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td.pr-risk-high {
|
||||
background-color: rgba( 255, 0, 0, 0.075 );
|
||||
color: #c00 !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
td.pr-risk-medium {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* additional info in table cells */
|
||||
|
||||
span.pr-additional-info {
|
||||
font-weight: normal;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* progress bar */
|
||||
|
||||
#plugin-report-progress progress {
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
width: 100%;
|
||||
height: 1em;
|
||||
border: 1px solid #e5e5e5;
|
||||
background-color: #fff;
|
||||
color: #3858e9;
|
||||
}
|
||||
|
||||
#plugin-report-progress progress::-webkit-progress-bar {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
#plugin-report-progress progress::-webkit-progress-value {
|
||||
background-color: #3858e9;
|
||||
}
|
||||
|
||||
#plugin-report-progress progress::-moz-progress-bar {
|
||||
background-color: #3858e9;
|
||||
}
|
||||
|
||||
/* styling for the tablesort script */
|
||||
|
||||
th[role=columnheader]:not(.no-sort) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
th[role=columnheader]:not(.no-sort):after {
|
||||
content: '';
|
||||
float: right;
|
||||
margin-top: 7px;
|
||||
border-width: 0 4px 4px;
|
||||
border-style: solid;
|
||||
border-color: #404040 transparent;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
-ms-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
th[aria-sort=ascending]:not(.no-sort):after {
|
||||
border-bottom: none;
|
||||
border-width: 4px 4px 0;
|
||||
}
|
||||
|
||||
th[aria-sort]:not(.no-sort):after {
|
||||
visibility: visible;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
th[role=columnheader]:not(.no-sort):hover:after {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue