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

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

Issue 2646033003: DevTools: streamline console logging levels, migrate 'log' to 'info' level, 'debug' to 'verbose' le… (Closed)
Patch Set: missing rebaseline Created 3 years, 11 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 .repeated-message .message-level-icon { 121 .repeated-message .message-level-icon {
122 display: none; 122 display: none;
123 } 123 }
124 124
125 .repeated-message .console-message-stack-trace-toggle, 125 .repeated-message .console-message-stack-trace-toggle,
126 .repeated-message > .console-message-text { 126 .repeated-message > .console-message-text {
127 flex: 1; 127 flex: 1;
128 } 128 }
129 129
130 .console-error-level .repeated-message, 130 .console-error-level .repeated-message,
131 .console-log-level .repeated-message,
132 .console-warning-level .repeated-message, 131 .console-warning-level .repeated-message,
133 .console-debug-level .repeated-message, 132 .console-verbose-level .repeated-message,
134 .console-info-level .repeated-message { 133 .console-info-level .repeated-message {
135 display: flex; 134 display: flex;
136 } 135 }
137 136
138 .console-info { 137 .console-info {
139 color: rgb(128, 128, 128); 138 color: rgb(128, 128, 128);
140 font-style: italic; 139 font-style: italic;
141 } 140 }
142 141
143 .console-group .console-group > .console-group-messages { 142 .console-group .console-group > .console-group-messages {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 .console-error-level .console-message-text, 226 .console-error-level .console-message-text,
228 .console-error-level .console-view-object-properties-section { 227 .console-error-level .console-view-object-properties-section {
229 color: red !important; 228 color: red !important;
230 } 229 }
231 230
232 .-theme-with-dark-background .console-error-level .console-message-text, 231 .-theme-with-dark-background .console-error-level .console-message-text,
233 .-theme-with-dark-background .console-error-level .console-view-object-propertie s-section { 232 .-theme-with-dark-background .console-error-level .console-view-object-propertie s-section {
234 color: hsl(0, 100%, 75%) !important; 233 color: hsl(0, 100%, 75%) !important;
235 } 234 }
236 235
237 .console-debug-level .console-message-text { 236 .console-verbose-level .console-message-text {
238 color: blue; 237 color: blue;
239 } 238 }
240 239
241 .-theme-with-dark-background .console-debug-level .console-message-text { 240 .-theme-with-dark-background .console-verbose-level .console-message-text {
242 color: hsl(220, 100%, 65%) !important; 241 color: hsl(220, 100%, 65%) !important;
243 } 242 }
244 243
245 .console-message.console-warning-level { 244 .console-message.console-warning-level {
246 background-color: rgb(255, 250, 224); 245 background-color: rgb(255, 250, 224);
247 } 246 }
248 247
249 #console-messages .link { 248 #console-messages .link {
250 text-decoration: underline; 249 text-decoration: underline;
251 } 250 }
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 .console-message-stack-trace-wrapper { 357 .console-message-stack-trace-wrapper {
359 flex: 1 1 auto; 358 flex: 1 1 auto;
360 display: flex; 359 display: flex;
361 flex-direction: column; 360 flex-direction: column;
362 align-items: stretch; 361 align-items: stretch;
363 } 362 }
364 363
365 .console-message-stack-trace-wrapper > * { 364 .console-message-stack-trace-wrapper > * {
366 flex: none; 365 flex: none;
367 } 366 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698