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

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

Issue 1990423002: DevTools: fix styling offset in logged console objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 115
116 @media (-webkit-min-device-pixel-ratio: 1.5) { 116 @media (-webkit-min-device-pixel-ratio: 1.5) {
117 .console-message::before, 117 .console-message::before,
118 .console-user-command::before, 118 .console-user-command::before,
119 #console-prompt::before, 119 #console-prompt::before,
120 .console-group-title::before { 120 .console-group-title::before {
121 background-image: url(Images/toolbarButtonGlyphs_2x.png); 121 background-image: url(Images/toolbarButtonGlyphs_2x.png);
122 } 122 }
123 } /* media */ 123 } /* media */
124 124
125 .console-message > .outline-disclosure li.parent {
126 margin-top: 0;
127 }
128
125 .console-message > .outline-disclosure li.parent::before { 129 .console-message > .outline-disclosure li.parent::before {
126 top: 0; 130 top: 0;
127 } 131 }
128 132
129 .bubble-repeat-count { 133 .bubble-repeat-count {
130 display: inline-block; 134 display: inline-block;
131 height: 14px; 135 height: 14px;
132 background-color: rgb(128, 151, 189); 136 background-color: rgb(128, 151, 189);
133 vertical-align: middle; 137 vertical-align: middle;
134 white-space: nowrap; 138 white-space: nowrap;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 border-bottom: 1px solid #a5a5a5; 258 border-bottom: 1px solid #a5a5a5;
255 position: absolute; 259 position: absolute;
256 top: 0; 260 top: 0;
257 left: 0; 261 left: 0;
258 margin-left: 100%; 262 margin-left: 100%;
259 width: 3px; 263 width: 3px;
260 height: 100%; 264 height: 100%;
261 box-sizing: border-box; 265 box-sizing: border-box;
262 } 266 }
263 267
268 .console-message-text {
269 line-height: 16px;
lushnikov 2016/05/20 21:22:06 Why do we set fixed line-height? The font and its
luoe 2016/05/20 23:23:53 I couldn't remember how to solve this with vertica
270 }
271
264 .console-error-level { 272 .console-error-level {
265 background-color: hsl(0, 100%, 97%); 273 background-color: hsl(0, 100%, 97%);
266 } 274 }
267 275
268 .-theme-with-dark-background .console-error-level { 276 .-theme-with-dark-background .console-error-level {
269 background-color: hsl(0, 100%, 8%); 277 background-color: hsl(0, 100%, 8%);
270 } 278 }
271 279
272 .console-warning-level { 280 .console-warning-level {
273 background-color: hsl(50, 100%, 95%); 281 background-color: hsl(50, 100%, 95%);
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 background-color: rgb(179, 203, 247); 453 background-color: rgb(179, 203, 247);
446 } 454 }
447 455
448 .info-note::before { 456 .info-note::before {
449 content: "i"; 457 content: "i";
450 } 458 }
451 459
452 .console-view-object-properties-section:not(.expanded) .info-note { 460 .console-view-object-properties-section:not(.expanded) .info-note {
453 display: none; 461 display: none;
454 } 462 }
463
464 .console-view-object-properties-section {
465 padding: 0px;
466 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698