Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: Source/devtools/front_end/console/consoleView.css

Issue 1090583005: Revert of DevTools: [console] Logged promise rejections do not change state once handled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Encompass Oilpan fix Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 border-radius: 7px; 145 border-radius: 7px;
146 flex: none; 146 flex: none;
147 } 147 }
148 148
149 .console-message .bubble-repeat-count { 149 .console-message .bubble-repeat-count {
150 margin-right: 4px; 150 margin-right: 4px;
151 margin-left: -18px; 151 margin-left: -18px;
152 } 152 }
153 153
154 .console-error-level .repeated-message::before, 154 .console-error-level .repeated-message::before,
155 .console-revokedError-level .repeated-message::before,
156 .console-warning-level .repeated-message::before, 155 .console-warning-level .repeated-message::before,
157 .console-debug-level .repeated-message::before, 156 .console-debug-level .repeated-message::before,
158 .console-info-level .repeated-message::before { 157 .console-info-level .repeated-message::before {
159 visibility: hidden; 158 visibility: hidden;
160 } 159 }
161 160
162 .repeated-message .outline-disclosure, 161 .repeated-message .outline-disclosure,
163 .repeated-message > .console-message-text { 162 .repeated-message > .console-message-text {
164 flex: 1; 163 flex: 1;
165 } 164 }
166 165
167 .console-warning-level .repeated-message, 166 .console-warning-level .repeated-message,
168 .console-error-level .repeated-message, 167 .console-error-level .repeated-message,
169 .console-revokedError-level .repeated-message,
170 .console-log-level .repeated-message, 168 .console-log-level .repeated-message,
171 .console-debug-level .repeated-message, 169 .console-debug-level .repeated-message,
172 .console-info-level .repeated-message { 170 .console-info-level .repeated-message {
173 display: flex; 171 display: flex;
174 } 172 }
175 173
176 .console-info { 174 .console-info {
177 color: rgb(128, 128, 128); 175 color: rgb(128, 128, 128);
178 font-style: italic; 176 font-style: italic;
179 } 177 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 239
242 .console-message-wrapper .nesting-level-marker { 240 .console-message-wrapper .nesting-level-marker {
243 width: 14px; 241 width: 14px;
244 flex: 0 0 auto; 242 flex: 0 0 auto;
245 border-right: 1px solid #A3A3A3; 243 border-right: 1px solid #A3A3A3;
246 position: relative; 244 position: relative;
247 margin-bottom: -1px; 245 margin-bottom: -1px;
248 } 246 }
249 247
250 .console-message-wrapper:last-child .nesting-level-marker::before, 248 .console-message-wrapper:last-child .nesting-level-marker::before,
251 .console-message-wrapper .nesting-level-marker.group-closed::before { 249 .console-message-wrapper .nesting-level-marker.group-closed::before
250 {
252 content: ""; 251 content: "";
253 } 252 }
254 253
255 .console-message-wrapper .nesting-level-marker::before { 254 .console-message-wrapper .nesting-level-marker::before {
256 border-bottom: 1px solid #A3A3A3; 255 border-bottom: 1px solid #A3A3A3;
257 position: absolute; 256 position: absolute;
258 top: 0; 257 top: 0;
259 left: 0; 258 left: 0;
260 margin-left: 100%; 259 margin-left: 100%;
261 width: 3px; 260 width: 3px;
(...skipping 20 matching lines...) Expand all
282 281
283 .console-debug-level .console-message-text { 282 .console-debug-level .console-message-text {
284 color: blue; 283 color: blue;
285 } 284 }
286 285
287 .console-message.console-warning-level { 286 .console-message.console-warning-level {
288 background-color: rgb(255, 250, 224); 287 background-color: rgb(255, 250, 224);
289 } 288 }
290 289
291 .console-error-level .console-message::before, 290 .console-error-level .console-message::before,
292 .console-revokedError-level .console-message::before,
293 .console-warning-level .console-message::before, 291 .console-warning-level .console-message::before,
294 .console-debug-level .console-message::before, 292 .console-debug-level .console-message::before,
295 .console-info-level .console-message::before { 293 .console-info-level .console-message::before {
296 background-image: url(Images/toolbarButtonGlyphs.png); 294 background-image: url(Images/toolbarButtonGlyphs.png);
297 background-size: 320px 144px; 295 background-size: 320px 144px;
298 width: 10px; 296 width: 10px;
299 height: 10px; 297 height: 10px;
300 } 298 }
301 299
302 @media (-webkit-min-device-pixel-ratio: 1.5) { 300 @media (-webkit-min-device-pixel-ratio: 1.5) {
303 .console-error-level .console-message::before, 301 .console-error-level .console-message::before,
304 .console-revokedError-level .console-message::before,
305 .console-warning-level .console-message::before, 302 .console-warning-level .console-message::before,
306 .console-debug-level .console-message::before, 303 .console-debug-level .console-message::before,
307 .console-info-level .console-message::before { 304 .console-info-level .console-message::before {
308 background-image: url(Images/toolbarButtonGlyphs_2x.png); 305 background-image: url(Images/toolbarButtonGlyphs_2x.png);
309 } 306 }
310 } /* media */ 307 } /* media */
311 308
312 .console-warning-level .console-message::before { 309 .console-warning-level .console-message::before {
313 background-position: -202px -107px; 310 background-position: -202px -107px;
314 } 311 }
315 312
316 .console-error-level .console-message::before { 313 .console-error-level .console-message::before {
317 background-position: -213px -96px; 314 background-position: -213px -96px;
318 } 315 }
319 316
320 .console-revokedError-level .console-message::before {
321 background-position: -245px -107px;
322 }
323
324 .console-info-level .console-message::before { 317 .console-info-level .console-message::before {
325 background-position: -213px -107px; 318 background-position: -213px -107px;
326 } 319 }
327 320
328 .console-user-command .console-message { 321 .console-user-command .console-message {
329 margin-left: -24px; 322 margin-left: -24px;
330 padding-right: 0; 323 padding-right: 0;
331 border-bottom: none; 324 border-bottom: none;
332 } 325 }
333 326
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 font-size: 9px; 441 font-size: 9px;
449 } 442 }
450 443
451 .object-info-state-note::before { 444 .object-info-state-note::before {
452 content: "i"; 445 content: "i";
453 } 446 }
454 447
455 .console-view-object-properties-section:not(.expanded) .object-info-state-note { 448 .console-view-object-properties-section:not(.expanded) .object-info-state-note {
456 display: none; 449 display: none;
457 } 450 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698