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

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

Issue 2650543002: DevTools: render console level filter as drop box. (Closed)
Patch Set: rebase again Created 3 years, 10 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 .console-error-level .repeated-message, 130 .console-error-level .repeated-message,
131 .console-warning-level .repeated-message, 131 .console-warning-level .repeated-message,
132 .console-verbose-level .repeated-message, 132 .console-verbose-level .repeated-message,
133 .console-info-level .repeated-message { 133 .console-info-level .repeated-message {
134 display: flex; 134 display: flex;
135 } 135 }
136 136
137 .console-info { 137 .console-info {
138 color: rgb(128, 128, 128); 138 color: rgb(128, 128, 128);
139 font-style: italic; 139 font-style: italic;
140 padding-bottom: 2px;
140 } 141 }
141 142
142 .console-group .console-group > .console-group-messages { 143 .console-group .console-group > .console-group-messages {
143 margin-left: 16px; 144 margin-left: 16px;
144 } 145 }
145 146
146 .console-group-title { 147 .console-group-title {
147 font-weight: bold; 148 font-weight: bold;
148 } 149 }
149 150
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 .console-error-level .console-message-text, 227 .console-error-level .console-message-text,
227 .console-error-level .console-view-object-properties-section { 228 .console-error-level .console-view-object-properties-section {
228 color: red !important; 229 color: red !important;
229 } 230 }
230 231
231 .-theme-with-dark-background .console-error-level .console-message-text, 232 .-theme-with-dark-background .console-error-level .console-message-text,
232 .-theme-with-dark-background .console-error-level .console-view-object-propertie s-section { 233 .-theme-with-dark-background .console-error-level .console-view-object-propertie s-section {
233 color: hsl(0, 100%, 75%) !important; 234 color: hsl(0, 100%, 75%) !important;
234 } 235 }
235 236
236 .console-verbose-level .console-message-text {
237 color: blue;
238 }
239
240 .-theme-with-dark-background .console-verbose-level .console-message-text { 237 .-theme-with-dark-background .console-verbose-level .console-message-text {
241 color: hsl(220, 100%, 65%) !important; 238 color: hsl(220, 100%, 65%) !important;
242 } 239 }
243 240
244 .console-message.console-warning-level { 241 .console-message.console-warning-level {
245 background-color: rgb(255, 250, 224); 242 background-color: rgb(255, 250, 224);
246 } 243 }
247 244
248 #console-messages .link { 245 #console-messages .link {
249 text-decoration: underline; 246 text-decoration: underline;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 .console-message-stack-trace-wrapper { 354 .console-message-stack-trace-wrapper {
358 flex: 1 1 auto; 355 flex: 1 1 auto;
359 display: flex; 356 display: flex;
360 flex-direction: column; 357 flex-direction: column;
361 align-items: stretch; 358 align-items: stretch;
362 } 359 }
363 360
364 .console-message-stack-trace-wrapper > * { 361 .console-message-stack-trace-wrapper > * {
365 flex: none; 362 flex: none;
366 } 363 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698