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

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

Issue 2474073005: DevTools: add the logging aspect into the PerformanceMonitor (Closed)
Patch Set: test fixed Created 4 years, 1 month 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 .console-debug-level .repeated-message::before, 149 .console-debug-level .repeated-message::before,
150 .console-info-level .repeated-message::before { 150 .console-info-level .repeated-message::before {
151 visibility: hidden; 151 visibility: hidden;
152 } 152 }
153 153
154 .repeated-message .console-message-stack-trace-toggle, 154 .repeated-message .console-message-stack-trace-toggle,
155 .repeated-message > .console-message-text { 155 .repeated-message > .console-message-text {
156 flex: 1; 156 flex: 1;
157 } 157 }
158 158
159 .console-warning-level .repeated-message,
160 .console-error-level .repeated-message, 159 .console-error-level .repeated-message,
161 .console-revokedError-level .repeated-message, 160 .console-revokedError-level .repeated-message,
162 .console-log-level .repeated-message, 161 .console-log-level .repeated-message,
162 .console-warning-level .repeated-message,
163 .console-debug-level .repeated-message, 163 .console-debug-level .repeated-message,
164 .console-info-level .repeated-message { 164 .console-info-level .repeated-message {
165 display: flex; 165 display: flex;
166 } 166 }
167 167
168 .console-info { 168 .console-info {
169 color: rgb(128, 128, 128); 169 color: rgb(128, 128, 128);
170 font-style: italic; 170 font-style: italic;
171 } 171 }
172 172
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 482
483 @media (-webkit-min-device-pixel-ratio: 1.1) { 483 @media (-webkit-min-device-pixel-ratio: 1.1) {
484 .console-message-stack-trace-toggle .console-message-text::before { 484 .console-message-stack-trace-toggle .console-message-text::before {
485 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 485 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
486 } 486 }
487 } /* media */ 487 } /* media */
488 488
489 .console-message-stack-trace-toggle.expanded .console-message-text::before { 489 .console-message-stack-trace-toggle.expanded .console-message-text::before {
490 -webkit-mask-position: -20px -96px; 490 -webkit-mask-position: -20px -96px;
491 } 491 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698