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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css b/third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css
index 067344fbed9ad3855c0f5f6225415726f8f65397..856890b2ca7ec77e2076e986ef58701bb3908a5b 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui/smallBubble.css
@@ -20,12 +20,12 @@ div {
border-radius: 7px;
}
-div.info {
- background-color: rgb(128, 151, 189);
+div.verbose {
+ background-color: rgb(0, 0, 255);
}
-div.debug {
- background-color: rgb(0, 0, 255);
+div.info {
+ background-color: rgb(128, 151, 189);
}
div.warning {

Powered by Google App Engine
This is Rietveld 408576698