aboutsummaryrefslogtreecommitdiffstats
path: root/stats.html
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2014-07-06 19:14:32 -0400
committergorhill <rhill@raymondhill.net>2014-07-06 19:14:32 -0400
commitee610b3aad679440da51da9449b345afda6f274d (patch)
tree5558fcfabcda94c1ce55b43ba5438e495142a410 /stats.html
parentaa84651a3e98e2f91b51723a2b715f4eb766183b (diff)
downloaduBlock-ee610b3aad679440da51da9449b345afda6f274d.zip
uBlock-ee610b3aad679440da51da9449b345afda6f274d.tar.gz
uBlock-ee610b3aad679440da51da9449b345afda6f274d.tar.bz2
toward 0.1.4.0
Diffstat (limited to 'stats.html')
-rw-r--r--stats.html53
1 files changed, 38 insertions, 15 deletions
diff --git a/stats.html b/stats.html
index 4de509f..e36d505 100644
--- a/stats.html
+++ b/stats.html
@@ -24,6 +24,13 @@ select {
padding: 2px 0;
font-size: 14px;
}
+#requests {
+ margin: 2em 0 0 0;
+ display: none;
+ }
+#requests.logEnabled {
+ display: block;
+ }
table {
margin: 1em 0;
border: 1px solid gray;
@@ -36,23 +43,36 @@ td, th {
padding: 6px 6px;
white-space: pre;
}
-td:nth-of-type(2) {
+td:nth-of-type(1), td:nth-of-type(2) {
text-align: right;
}
+tr.header td:nth-of-type(1) {
+ text-align: left;
+ }
td:nth-of-type(3) {
color: #444;
}
-td:nth-of-type(3) b {
+table.hideBlocked tr.logBlocked {
+ display: none;
+ }
+table.hideAllowed tr.logAllowed {
+ display: none;
+ }
+tr.logBlocked {
+ background-color: #fff8f8;
+ }
+tr.logBlocked ~ tr td:nth-of-type(3) b {
padding: 2px 0;
color: #000;
- background-color: #ff8;
+ background-color: rgba(255,0,0,0.1);
}
-#blockedRequests {
- margin: 2em 0 0 0;
- display: none;
+tr.logAllowed {
+ background-color: #f8fff8 !important;
}
-#blockedRequests.logEnabled {
- display: block;
+tr.logAllowed ~ tr td:nth-of-type(3) b {
+ padding: 2px 0;
+ color: #000;
+ background-color: rgba(0,255,0,0.2);
}
</style>
</head>
@@ -63,17 +83,20 @@ td:nth-of-type(3) b {
<li><input id="logBlockedRequests" type="checkbox" data-range="bool" /><span data-i18n="logBlockedRequestsPrompt"></span>
<button class="whatisthis"></button>
<div class="whatisthis-expandable para" data-i18n="logBlockedRequestsHelp"></div>
+ <li><input id="logAllowedRequests" type="checkbox" data-range="bool" /><span data-i18n="logAllowedRequestsPrompt"></span>
+ <button class="whatisthis"></button>
+ <div class="whatisthis-expandable para" data-i18n="logAllowedRequestsHelp"></div>
</ul>
-<div id="blockedRequests">
+<div id="requests">
<span id="refresh" class="fa">&#xf021;</span><select id="pageSelector"></select>
-<table id="pageDetails">
-<tr id="tableHeader">
-<th data-i18n="logBlockedRequestsHeaderType">
-<th data-i18n="logBlockedRequestsHeaderDomain">
-<th data-i18n="logBlockedRequestsHeaderURL">
-<th data-i18n="logBlockedRequestsHeaderFilter">
+<table>
+<tr class="tableHeader">
+<th data-i18n="logRequestsHeaderDomain">
+<th data-i18n="logRequestsHeaderType">
+<th data-i18n="logRequestsHeaderURL">
+<th data-i18n="logRequestsHeaderFilter">
</table>
</div>