Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/devtools-panel.css

Issue 29363504: Issue 4649 - Allow filtering by WEBSOCKET request type (Closed)
Patch Set: Commit CSS changes too... Created Nov. 17, 2016, 8:09 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « devtools-panel.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 * 1 *
2 { 2 {
3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif; 3 font-family: 'Lucida Grande', 'Segoe UI', Ubuntu, Tahoma, Arial, sans-serif;
4 font-size: 11px; 4 font-size: 11px;
5 box-sizing: border-box; 5 box-sizing: border-box;
6 } 6 }
7 7
8 html 8 html
9 { 9 {
10 height: 100%; 10 height: 100%;
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]), 109 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]),
110 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]), 110 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]),
111 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]), 111 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]),
112 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]), 112 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]),
113 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]), 113 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]),
114 #items[data-filter-type=XMLHTTPREQUEST] tr:not([data-type=XMLHTTPREQUEST]), 114 #items[data-filter-type=XMLHTTPREQUEST] tr:not([data-type=XMLHTTPREQUEST]),
115 #items[data-filter-type=FONT] tr:not([data-type=FONT]), 115 #items[data-filter-type=FONT] tr:not([data-type=FONT]),
116 #items[data-filter-type=PING] tr:not([data-type=PING]), 116 #items[data-filter-type=PING] tr:not([data-type=PING]),
117 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]), 117 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]),
118 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]), 118 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]),
119 #items[data-filter-type=WEBSOCKET] tr:not([data-type=WEBSOCKET]),
119 #items[data-filter-type=OTHER] tr:not([data-type=OTHER]) 120 #items[data-filter-type=OTHER] tr:not([data-type=OTHER])
120 { 121 {
121 display: none; 122 display: none;
122 } 123 }
123 124
124 .changed, .unnamed 125 .changed, .unnamed
125 { 126 {
126 font-style: italic 127 font-style: italic
127 } 128 }
128 129
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 margin-bottom: 0; 200 margin-bottom: 0;
200 transition: margin-bottom 0.5s; 201 transition: margin-bottom 0.5s;
201 } 202 }
202 203
203 #reload 204 #reload
204 { 205 {
205 color: blue; 206 color: blue;
206 text-decoration: underline; 207 text-decoration: underline;
207 cursor: pointer; 208 cursor: pointer;
208 } 209 }
OLDNEW
« no previous file with comments | « devtools-panel.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld