Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.

Commit 96225c1

Browse files
committed
Merge pull request #274 from deverton/clickable-labels
Make request filter checkbox labels clickable.
2 parents f8396cb + 04923d3 commit 96225c1

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

info.html

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
#requests-filters {
1818
font-size: 13px;
1919
}
20+
#requests-filters label {
21+
padding-right: 1em
22+
}
2023
#requests-log {
2124
margin: 0;
2225
border: 1px inset #eee;
@@ -137,9 +140,20 @@ <h3 data-i18n="statsPageDetailed"></h3>
137140
<div><span data-i18n="statsPageLogSizePrompt1"></span> <input id="max-logged-requests" type="text" value="50" size="3"> <span data-i18n="statsPageLogSizePrompt2"></span>
138141
<button class="whatisthis"></button>
139142
<p class="whatisthis-expandable para" data-i18n="statsPageLogSizeHelp"></p>
143+
<p id="requests-filters"><button id="refresh-requests" data-i18n="statsPageRefresh"></button>&emsp;Show:
144+
<input id="show-main_frame" type="checkbox" checked value="1"><label for="show-main_frame">Pages</label>
145+
<input id="show-blocked" type="checkbox" checked value="1"><label for="show-blocked"><span style="color:#c00" data-i18n="statsPageBlocked">Blocked</span></label>
146+
<input id="show-allowed" type="checkbox" checked value="1"><label for="show-allowed"><span style="color:#070" data-i18n="statsPageAllowed">Allowed</span></label>
147+
<input id="show-cookie" type="checkbox" checked value="1"><label for="show-cookie">Cookies</label>
148+
<input id="show-image" type="checkbox" checked value="1"><label for="show-image">Images</label>
149+
<input id="show-stylesheet" type="checkbox" checked value="1"><label for="show-stylesheet">CSS</label>
150+
<input id="show-object" type="checkbox" checked value="1"><label for="show-object">Objects</label>
151+
<input id="show-script" type="checkbox" checked value="1"><label for="show-script">Scripts</label>
152+
<input id="show-xmlhttprequest" type="checkbox" checked value="1"><label for="show-xmlhttprequest">XHRs</label>
153+
<input id="show-sub_frame" type="checkbox" checked value="1"><label for="show-sub_frame">Frames</label>
154+
<input id="show-other" type="checkbox" checked value="1"><label for="show-other">Others</label>
140155
</p>
141-
<p id="requests-filters"><button id="refresh-requests" data-i18n="statsPageRefresh"></button>&emsp;Show: <input id="show-main_frame" type="checkbox" checked value="1">Pages&emsp;<input id="show-blocked" type="checkbox" checked value="1"><span style="color:#c00" data-i18n="statsPageBlocked">Blocked</span>&emsp;<input id="show-allowed" type="checkbox" checked value="1"><span style="color:#070" data-i18n="statsPageAllowed">Allowed</span>&emsp;<input id="show-cookie" type="checkbox" checked value="1">Cookies&emsp;<input id="show-image" type="checkbox" checked value="1">Images&emsp;<input id="show-stylesheet" type="checkbox" checked value="1">CSS&emsp;<input id="show-object" type="checkbox" checked value="1">Objects&emsp;<input id="show-script" type="checkbox" checked value="1">Scripts&emsp;<input id="show-xmlhttprequest" type="checkbox" checked value="1">XHRs&emsp;<input id="show-sub_frame" type="checkbox" checked value="1">Frames&emsp;<input id="show-other" type="checkbox" checked value="1">Others
142-
</p>
156+
</div>
143157
<div id="requests-log" style="overflow-y:hidden">
144158
<table id="requestsTable">
145159
<tr class="ro"><td>when<td>what<td><td class="fa">&#xf0b0;<td>where</tr>

0 commit comments

Comments
 (0)