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

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

Issue 2270033003: DevTools: include traces when exporting console log via 'Save as' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use contentElement instead of formattedMessage Created 4 years, 3 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 flex: auto; 87 flex: auto;
88 } 88 }
89 89
90 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before { 90 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before {
91 background-image: none; 91 background-image: none;
92 } 92 }
93 93
94 .console-timestamp { 94 .console-timestamp {
95 color: gray; 95 color: gray;
96 -webkit-user-select: none; 96 -webkit-user-select: none;
97 flex-grow: 0;
98 margin-right: 6px;
97 } 99 }
98 100
99 .console-message::before, 101 .console-message::before,
100 .console-user-command::before, 102 .console-user-command::before,
101 #console-prompt::before, 103 #console-prompt::before,
102 .console-group-title::before { 104 .console-group-title::before {
103 position: absolute; 105 position: absolute;
104 display: block; 106 display: block;
105 content: ""; 107 content: "";
106 left: -17px; 108 left: -17px;
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 background-color: rgb(179, 203, 247); 451 background-color: rgb(179, 203, 247);
450 } 452 }
451 453
452 .info-note::before { 454 .info-note::before {
453 content: "i"; 455 content: "i";
454 } 456 }
455 457
456 .console-view-object-properties-section { 458 .console-view-object-properties-section {
457 padding: 0px; 459 padding: 0px;
458 } 460 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698