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

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: Address comments 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 | « third_party/WebKit/Source/devtools/front_end/components/objectValue.css ('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 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 background-color: rgb(179, 203, 247); 449 background-color: rgb(179, 203, 247);
446 } 450 }
447 451
448 .info-note::before { 452 .info-note::before {
449 content: "i"; 453 content: "i";
450 } 454 }
451 455
452 .console-view-object-properties-section:not(.expanded) .info-note { 456 .console-view-object-properties-section:not(.expanded) .info-note {
453 display: none; 457 display: none;
454 } 458 }
459
460 .console-view-object-properties-section {
461 padding: 0px;
462 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/components/objectValue.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698