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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/smallBubble.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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 div { 7 div {
8 display: inline-block; 8 display: inline-block;
9 height: 14px; 9 height: 14px;
10 vertical-align: middle; 10 vertical-align: middle;
11 white-space: nowrap; 11 white-space: nowrap;
12 padding: 1px 4px; 12 padding: 1px 4px;
13 text-align: left; 13 text-align: left;
14 font-size: 11px; 14 font-size: 11px;
15 line-height: normal; 15 line-height: normal;
16 font-weight: bold; 16 font-weight: bold;
17 text-shadow: none; 17 text-shadow: none;
18 color: white; 18 color: white;
19 margin-top: -1px; 19 margin-top: -1px;
20 border-radius: 7px; 20 border-radius: 7px;
21 } 21 }
22 22
23 div.verbose {
24 background-color: rgb(0, 0, 255);
25 }
26
23 div.info { 27 div.info {
24 background-color: rgb(128, 151, 189); 28 background-color: rgb(128, 151, 189);
25 } 29 }
26 30
27 div.debug {
28 background-color: rgb(0, 0, 255);
29 }
30
31 div.warning { 31 div.warning {
32 background-color: rgb(232, 164, 0); 32 background-color: rgb(232, 164, 0);
33 } 33 }
34 34
35 div.error { 35 div.error {
36 background-color: rgb(216, 35, 35); 36 background-color: rgb(216, 35, 35);
37 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698