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

Unified Diff: Source/devtools/front_end/inspectorStyle.css

Issue 428563002: DevTools: separate style for error message bubble. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: console-message-repeat-count -> bubble-repeat-count Created 6 years, 5 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: Source/devtools/front_end/inspectorStyle.css
diff --git a/Source/devtools/front_end/inspectorStyle.css b/Source/devtools/front_end/inspectorStyle.css
index 26f3cb7f1c581d395c6cce70e12eab04ee762e72..8ad9609150d61c49294defdb980d59134a9baec4 100644
--- a/Source/devtools/front_end/inspectorStyle.css
+++ b/Source/devtools/front_end/inspectorStyle.css
@@ -938,25 +938,28 @@ body.platform-linux .source-code {
background-color: rgba(0, 0, 0, 0.05);
}
-.console-message .bubble {
+.bubble-repeat-count {
display: inline-block;
height: 14px;
background-color: rgb(128, 151, 189);
vertical-align: middle;
white-space: nowrap;
padding: 1px 4px;
- margin-top: -1px;
- margin-right: 4px;
- margin-left: -18px;
text-align: left;
font-size: 11px;
line-height: normal;
font-weight: bold;
text-shadow: none;
color: white;
+ margin-top: -1px;
border-radius: 7px;
}
+.console-message .bubble-repeat-count {
+ margin-right: 4px;
+ margin-left: -18px;
+}
+
.console-message-text {
white-space: pre-wrap;
}
@@ -2142,38 +2145,20 @@ li .status:empty {
display: none;
}
-li .status .bubble {
- display: inline-block;
- height: 14px;
- min-width: 16px;
- margin-top: 1px;
- background-color: rgb(128, 151, 189);
- vertical-align: middle;
- white-space: nowrap;
- padding: 1px 4px;
- text-align: center;
- font-size: 11px;
- line-height: normal;
- font-weight: bold;
- text-shadow: none;
- color: white;
- border-radius: 7px;
-}
-
-li .status .bubble:empty {
+li .status .bubble-repeat-count:empty {
display: none;
}
-li.selected .status .bubble {
+li.selected .status .bubble-repeat-count {
background-color: white !important;
color: rgb(132, 154, 190) !important;
}
-:focus li.selected .status .bubble {
+:focus li.selected .status .bubble-repeat-count {
color: rgb(36, 98, 172) !important;
}
-body.inactive li.selected .status .bubble {
+body.inactive li.selected .status .bubble-repeat-count {
color: rgb(159, 159, 159) !important;
}
@@ -2260,18 +2245,18 @@ body.inactive .sidebar-tree-item.selected {
color: white;
}
-.bubble.debug,
-.console-debug-level .bubble {
+.bubble-repeat-count.debug,
+.console-debug-level .bubble-repeat-count {
background-color: rgb(0, 0, 255) !important;
}
-.bubble.warning,
-.console-warning-level .bubble {
+.bubble-repeat-count.warning,
+.console-warning-level .bubble-repeat-count {
background-color: rgb(232, 164, 0) !important;
}
-.bubble.error,
-.console-error-level .bubble {
+.bubble-repeat-count.error,
+.console-error-level .bubble-repeat-count {
background-color: rgb(216, 35, 35) !important;
}
« no previous file with comments | « Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | Source/devtools/front_end/resources/ResourcesPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698