PluginProbe
Plugin Report / 2.1
Plugin Report v2.1
2.2.4 trunk 1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9 1.9.1 1.9.2 1.9.3 2.0.0 2.0.1 2.0.2 2.1 2.1.1 2.2.0 2.2.1 All 27 releases
plugin-report / css / plugin-report.css

plugin-report.css in Plugin Report 2.1, at css/plugin-report.css

86 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* risk indicator classes */
2
3 td.pr-risk-low {
4 background-color: rgba( 0, 255, 0, 0.075 );
5 color: #090 !important;
6 font-weight: bold;
7 }
8
9 td.pr-risk-high {
10 background-color: rgba( 255, 0, 0, 0.075 );
11 color: #c00 !important;
12 font-weight: bold;
13 }
14
15 td.pr-risk-medium {
16 font-weight: bold;
17 }
18
19 /* additional info in table cells */
20
21 span.pr-additional-info {
22 font-weight: normal;
23 color: #555;
24 }
25
26 /* progress bar */
27
28 #plugin-report-progress progress {
29 -webkit-appearance: none;
30 -moz-appearance: none;
31 appearance: none;
32 width: 100%;
33 height: 1em;
34 border: 1px solid #e5e5e5;
35 background-color: #fff;
36 color: #0073aa;
37 }
38
39 #plugin-report-progress progress::-webkit-progress-bar {
40 background-color: #fff;
41 }
42
43 #plugin-report-progress progress::-webkit-progress-value {
44 background-color: #0073aa;
45 }
46
47 #plugin-report-progress progress::-moz-progress-bar {
48 background-color: #0073aa;
49 }
50
51 /* styling for the tablesort script */
52
53 th[role=columnheader]:not(.no-sort) {
54 cursor: pointer;
55 }
56
57 th[role=columnheader]:not(.no-sort):after {
58 content: '';
59 float: right;
60 margin-top: 7px;
61 border-width: 0 4px 4px;
62 border-style: solid;
63 border-color: #404040 transparent;
64 visibility: hidden;
65 opacity: 0;
66 -ms-user-select: none;
67 -webkit-user-select: none;
68 -moz-user-select: none;
69 user-select: none;
70 }
71
72 th[aria-sort=ascending]:not(.no-sort):after {
73 border-bottom: none;
74 border-width: 4px 4px 0;
75 }
76
77 th[aria-sort]:not(.no-sort):after {
78 visibility: visible;
79 opacity: 0.4;
80 }
81
82 th[role=columnheader]:not(.no-sort):hover:after {
83 visibility: visible;
84 opacity: 1;
85 }
86