PluginProbe
Plugin Report / trunk
Plugin Report vtrunk
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 trunk, at css/plugin-report.css

93 lines 1.7 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: #edfaef;
5 color: #007017 !important;
6 font-weight: bold;
7 }
8
9 td.pr-risk-high {
10 background-color: #fcf0f1;
11 color: #b32d2e !important;
12 font-weight: bold;
13 }
14
15 td.pr-risk-warning {
16 background-color: #fcf9e8;
17 color: #8a6d00 !important;
18 font-weight: bold;
19 }
20
21 td.pr-risk-medium {
22 font-weight: bold;
23 }
24
25 /* additional info in table cells */
26
27 span.pr-additional-info {
28 font-weight: normal;
29 color: #555;
30 }
31
32 /* progress bar */
33
34 #plugin-report-progress progress {
35 -webkit-appearance: none;
36 -moz-appearance: none;
37 appearance: none;
38 width: 100%;
39 height: 1em;
40 border: 1px solid #e5e5e5;
41 background-color: #fff;
42 color: #0073aa;
43 }
44
45 #plugin-report-progress progress::-webkit-progress-bar {
46 background-color: #fff;
47 }
48
49 #plugin-report-progress progress::-webkit-progress-value {
50 background-color: #0073aa;
51 }
52
53 #plugin-report-progress progress::-moz-progress-bar {
54 background-color: #0073aa;
55 }
56
57 /* styling for the tablesort script */
58
59 th[role=columnheader]:not(.no-sort) {
60 cursor: pointer;
61 }
62
63 th[role=columnheader]:not(.no-sort):after {
64 content: '';
65 float: right;
66 margin-top: 7px;
67 border-width: 0 4px 4px;
68 border-style: solid;
69 border-color: #404040 transparent;
70 visibility: hidden;
71 opacity: 0;
72 -ms-user-select: none;
73 -webkit-user-select: none;
74 -moz-user-select: none;
75 user-select: none;
76 }
77
78 th[aria-sort=ascending]:not(.no-sort):after {
79 border-bottom: none;
80 border-width: 4px 4px 0;
81 }
82
83 th[aria-sort]:not(.no-sort):after {
84 visibility: visible;
85 opacity: 0.4;
86 }
87
88 th[role=columnheader]:not(.no-sort):focus:after,
89 th[role=columnheader]:not(.no-sort):hover:after {
90 visibility: visible;
91 opacity: 1;
92 }
93