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

Delta Between Two Patch Sets: skin/devtools-panel.css

Issue 5646124035604480: Issue 154 - Added UI for devtools panel on Chrome (Closed)
Left Patch Set: When using <!DOCTYPE html> I have to set "height:100%" for the <html> element Created Jan. 12, 2015, 3:06 p.m.
Right Patch Set: Added new request types Created Jan. 28, 2016, 7:37 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « ext/devtools.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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%;
11 overflow: hidden;
11 } 12 }
12 13
13 body 14 body
14 { 15 {
15 margin: 0; 16 margin: 0;
16 color: #303942; 17 color: #303942;
17 display: flex; 18 display: flex;
18 height: 100%; 19 height: 100%;
19 flex-direction: column; 20 flex-direction: column;
20 } 21 }
21 22
22 table 23 table
23 { 24 {
24 table-layout: fixed; 25 table-layout: fixed;
25 width: 100%; 26 width: 100%;
26 border-collapse: collapse; 27 border-collapse: collapse;
27 } 28 }
28 29
29 table * 30 table *
30 { 31 {
31 overflow: hidden; 32 overflow: hidden;
32 text-overflow: ellipsis; 33 text-overflow: ellipsis;
33 } 34 }
34 35
35 td 36 td
36 { 37 {
37 padding: 3px; 38 padding: 3px;
38 white-space: nowrap; 39 white-space: nowrap;
39 }
40
41 td:nth-child(2)
42 {
43 border-left: 1px solid #cdcdcd; 40 border-left: 1px solid #cdcdcd;
41 }
42
43 td:first-child
44 {
45 border-left-style: none;
46 }
47
48 col:nth-child(2)
49 {
50 width: 115px;
51 }
52
53 col:nth-child(3)
54 {
55 width: 50%;
44 } 56 }
45 57
46 header 58 header
47 { 59 {
48 overflow-y: scroll; 60 overflow-y: scroll;
49 border-bottom: 1px solid #cdcdcd; 61 border-bottom: 1px solid #cdcdcd;
50 flex-shrink: 0; 62 flex-shrink: 0;
51 } 63 }
52 64
53 /* 65 /*
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 105 }
94 106
95 #items[data-filter-state=blocked] tr:not([data-state=blocked]), 107 #items[data-filter-state=blocked] tr:not([data-state=blocked]),
96 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]), 108 #items[data-filter-state=whitelisted] tr:not([data-state=whitelisted]),
97 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]), 109 #items[data-filter-type=SUBDOCUMENT] tr:not([data-type=SUBDOCUMENT]),
98 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]), 110 #items[data-filter-type=IMAGE] tr:not([data-type=IMAGE]),
99 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]), 111 #items[data-filter-type=STYLESHEET] tr:not([data-type=STYLESHEET]),
100 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]), 112 #items[data-filter-type=SCRIPT] tr:not([data-type=SCRIPT]),
101 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]), 113 #items[data-filter-type=OBJECT] tr:not([data-type=OBJECT]),
102 #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]),
116 #items[data-filter-type=PING] tr:not([data-type=PING]),
103 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]), 117 #items[data-filter-type=POPUP] tr:not([data-type=POPUP]),
104 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]), 118 #items[data-filter-type=ELEMHIDE] tr:not([data-type=ELEMHIDE]),
105 #items[data-filter-type=OTHER] tr:not([data-type=OTHER]) 119 #items[data-filter-type=OTHER] tr:not([data-type=OTHER])
106 { 120 {
107 display: none; 121 display: none;
108 } 122 }
109 123
110 .changed, .unnamed 124 .changed, .unnamed
111 { 125 {
112 font-style: italic 126 font-style: italic
113 } 127 }
114 128
115 .request-wrapper 129 .request-wrapper, .filter-wrapper
116 { 130 {
117 display: flex; 131 display: flex;
118 width: 100%; 132 height: 100%;
119 flex-wrap: wrap; 133 flex-direction: column;
120 } 134 }
121 135
122 tr:not(:hover) .action 136 tr:not(:hover) .action
123 { 137 {
124 display: none; 138 display: none;
125 } 139 }
126 140
127 .url 141 .url
128 { 142 {
129 width: 100%; 143 width: 100%;
130 } 144 }
131 145
132 .resourceLink 146 .resourceLink
133 { 147 {
134 cursor: pointer; 148 cursor: pointer;
135 } 149 }
136 150
137 .resourceLink:hover { 151 .resourceLink:hover {
138 text-decoration: underline; 152 text-decoration: underline;
139 }
140
141 .domain
142 {
143 flex: 1 1px;
144 }
145
146 .type
147 {
148 flex: 0 105px;
149 } 153 }
150 154
151 .action-wrapper 155 .action-wrapper
152 { 156 {
153 display: flex; 157 display: flex;
154 width: 100%; 158 width: 100%;
155 } 159 }
156 160
157 .action 161 .action
158 { 162 {
159 background: #555; 163 background: #555;
160 color: white; 164 color: white;
161 font-style: normal; 165 font-style: normal;
162 border-radius: 7px; 166 border-radius: 7px;
163 padding: 2px 6px; 167 padding: 2px 6px;
164 margin: auto; 168 margin: auto;
165 margin-left: 5px; 169 margin-left: 5px;
166 cursor: pointer; 170 cursor: pointer;
167 flex-shrink: 0; 171 flex-shrink: 0;
168 } 172 }
169 173
170 .filter-wrapper 174 .filter-wrapper, .filter, .origin, .domain
171 { 175 {
172 display: flex;
173 height: 100%;
174 flex-direction: column;
175 flex-grow: 1; 176 flex-grow: 1;
176 } 177 }
177 178
178 .filter, .origin 179 .domain, .origin,
179 {
180 flex-grow: 1;
181 }
182
183 .domain, .type, .origin,
184 .changed .request-wrapper, 180 .changed .request-wrapper,
185 .changed .filter-wrapper 181 .changed .filter-wrapper,
182 .changed .type
186 { 183 {
187 opacity: 0.6; 184 opacity: 0.6;
188 } 185 }
189 186
190 footer 187 footer
191 { 188 {
192 width: 100%; 189 width: 100%;
193 padding: 3px; 190 height: 23px;
191 margin-bottom: -23px;
192 padding: 4px 3px;
194 border-top: 1px solid #cdcdcd; 193 border-top: 1px solid #cdcdcd;
195 flex-shrink: 0; 194 flex-shrink: 0;
196 } 195 }
197 196
198 #items:not(.has-changes) + footer 197 .has-changes + footer
199 { 198 {
200 display: none; 199 margin-bottom: 0;
200 transition: margin-bottom 0.5s;
201 } 201 }
202 202
203 #reload 203 #reload
204 { 204 {
205 color: blue; 205 color: blue;
206 text-decoration: underline; 206 text-decoration: underline;
207 cursor: pointer; 207 cursor: pointer;
208 } 208 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld