PluginProbe
404 Solution / trunk
404 Solution vtrunk
4.3.5 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 4.2.0 4.1.19 4.1.18 4.1.17 4.1.16 4.1.15 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.1.7 4.1.6 4.1.5 4.1.4 4.1.3 trunk 2.30.0 All 109 releases
404-solution / includes / html / viewStatsConfidenceDistribution.html

viewStatsConfidenceDistribution.html in 404 Solution trunk, at includes/html/viewStatsConfidenceDistribution.html

22 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="abj404-confidence-dist">
2 <p class="abj404-confidence-avg">{avg_label}</p>
3 <canvas id="abj404-chart-confidence" style="max-height:200px;max-width:400px;" data-abj404-confidence="{confidence_config}"></canvas>
4 <ul class="abj404-confidence-legend">
5 <li><span class="abj404-legend-dot abj404-conf-high"></span>{label_high} <strong>{high_count}</strong></li>
6 <li><span class="abj404-legend-dot abj404-conf-medium"></span>{label_medium} <strong>{medium_count}</strong></li>
7 <li><span class="abj404-legend-dot abj404-conf-low"></span>{label_low} <strong>{low_count}</strong></li>
8 <li><span class="abj404-legend-dot abj404-conf-manual"></span>{label_manual} <strong>{manual_count}</strong></li>
9 </ul>
10 </div>
11 <style>
12 .abj404-confidence-dist { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
13 .abj404-confidence-avg { font-size: 14px; margin-bottom: 8px; }
14 .abj404-confidence-legend { list-style: none; margin: 0; padding: 0; }
15 .abj404-confidence-legend li { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-size: 13px; }
16 .abj404-legend-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
17 .abj404-conf-high { background: #28a745; } /* allow-hardcoded-color: chart palette dot; must match Chart.js dataset below */
18 .abj404-conf-medium { background: #ffc107; } /* allow-hardcoded-color: chart palette dot; must match Chart.js dataset below */
19 .abj404-conf-low { background: #dc3545; } /* allow-hardcoded-color: chart palette dot; must match Chart.js dataset below */
20 .abj404-conf-manual { background: #adb5bd; } /* allow-hardcoded-color: chart palette dot; must match Chart.js dataset below */
21 </style>
22