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

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

Issue 911993002: DevTools: [Console] render console stacktraces consistently (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline one more test Created 5 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
« no previous file with comments | « Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #console-prompt::before, 121 #console-prompt::before,
122 .console-group-title::before { 122 .console-group-title::before {
123 background-image: url(Images/statusbarButtonGlyphs_2x.png); 123 background-image: url(Images/statusbarButtonGlyphs_2x.png);
124 } 124 }
125 } /* media */ 125 } /* media */
126 126
127 .console-message > .outline-disclosure li.parent::before { 127 .console-message > .outline-disclosure li.parent::before {
128 top: 0; 128 top: 0;
129 } 129 }
130 130
131 .console-message .outline-disclosure .stacktrace-entry:hover {
132 background-color: rgba(0, 0, 0, 0.05);
133 }
134
135 .stacktrace-entry .webkit-html-blackbox-link {
136 opacity: 0.6;
137 }
138
139 .bubble-repeat-count { 131 .bubble-repeat-count {
140 display: inline-block; 132 display: inline-block;
141 height: 14px; 133 height: 14px;
142 background-color: rgb(128, 151, 189); 134 background-color: rgb(128, 151, 189);
143 vertical-align: middle; 135 vertical-align: middle;
144 white-space: nowrap; 136 white-space: nowrap;
145 padding: 1px 4px; 137 padding: 1px 4px;
146 text-align: left; 138 text-align: left;
147 font-size: 11px; 139 font-size: 11px;
148 line-height: normal; 140 line-height: normal;
149 font-weight: bold; 141 font-weight: bold;
150 text-shadow: none; 142 text-shadow: none;
151 color: white; 143 color: white;
152 margin-top: -1px; 144 margin-top: -1px;
153 border-radius: 7px; 145 border-radius: 7px;
154 } 146 }
155 147
156 .console-message .bubble-repeat-count { 148 .console-message .bubble-repeat-count {
157 margin-right: 4px; 149 margin-right: 4px;
158 margin-left: -18px; 150 margin-left: -18px;
159 } 151 }
160 152
161 .console-async-trace-text {
162 margin-left: -10px;
163 font-style: italic;
164 }
165
166 .repeated-message.console-error-level::before, 153 .repeated-message.console-error-level::before,
167 .repeated-message.console-warning-level:before, 154 .repeated-message.console-warning-level:before,
168 .repeated-message.console-debug-level:before, 155 .repeated-message.console-debug-level:before,
169 .repeated-message.console-info-level:before { 156 .repeated-message.console-info-level:before {
170 visibility: hidden; 157 visibility: hidden;
171 } 158 }
172 159
173 .repeated-message .outline-disclosure, 160 .repeated-message .outline-disclosure,
174 .repeated-message > .console-message-text { 161 .repeated-message > .console-message-text {
175 flex: 1; 162 flex: 1;
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 .console-view .status-bar::shadow .console-context { 378 .console-view .status-bar::shadow .console-context {
392 max-width: 200px; 379 max-width: 200px;
393 } 380 }
394 381
395 .highlighted-search-result.current-search-result { 382 .highlighted-search-result.current-search-result {
396 border-radius: 1px; 383 border-radius: 1px;
397 padding: 1px; 384 padding: 1px;
398 margin: -1px; 385 margin: -1px;
399 background-color: rgba(255, 127, 0, 0.8); 386 background-color: rgba(255, 127, 0, 0.8);
400 } 387 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleViewMessage.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698