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

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

Issue 2676773002: DevTools: restore the style of expandable titles on console object previews (Closed)
Patch Set: a Created 3 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 | « third_party/WebKit/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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 281
282 .console-group-messages .section .properties li .info { 282 .console-group-messages .section .properties li .info {
283 padding-top: 0; 283 padding-top: 0;
284 padding-bottom: 0; 284 padding-bottom: 0;
285 color: rgb(60%, 60%, 60%); 285 color: rgb(60%, 60%, 60%);
286 } 286 }
287 287
288 .console-object-preview { 288 .console-object-preview {
289 white-space: normal; 289 white-space: normal;
290 word-wrap: break-word; 290 word-wrap: break-word;
291 font-style: italic;
291 } 292 }
292 293
293 .console-object-preview .name { 294 .console-object-preview .name {
294 /* Follows .section .properties .name, .event-properties .name */ 295 /* Follows .section .properties .name, .event-properties .name */
295 color: rgb(136, 19, 145); 296 color: rgb(136, 19, 145);
296 flex-shrink: 0; 297 flex-shrink: 0;
297 } 298 }
298 299
299 .console-message-text .object-value-string { 300 .console-message-text .object-value-string {
300 white-space: pre-wrap; 301 white-space: pre-wrap;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 } 335 }
335 336
336 .info-note { 337 .info-note {
337 background-color: rgb(179, 203, 247); 338 background-color: rgb(179, 203, 247);
338 } 339 }
339 340
340 .info-note::before { 341 .info-note::before {
341 content: "i"; 342 content: "i";
342 } 343 }
343 344
345 .console-view-object-properties-section:not(.expanded) .info-note {
346 display: none;
347 }
348
344 .console-view-object-properties-section { 349 .console-view-object-properties-section {
345 padding: 0px; 350 padding: 0px;
346 } 351 }
347 352
348 .console-message-stack-trace-toggle { 353 .console-message-stack-trace-toggle {
349 display: flex; 354 display: flex;
350 flex-direction: row; 355 flex-direction: row;
351 align-items: flex-start; 356 align-items: flex-start;
352 } 357 }
353 358
354 .console-message-stack-trace-wrapper { 359 .console-message-stack-trace-wrapper {
355 flex: 1 1 auto; 360 flex: 1 1 auto;
356 display: flex; 361 display: flex;
357 flex-direction: column; 362 flex-direction: column;
358 align-items: stretch; 363 align-items: stretch;
359 } 364 }
360 365
361 .console-message-stack-trace-wrapper > * { 366 .console-message-stack-trace-wrapper > * {
362 flex: none; 367 flex: none;
363 } 368 }
OLDNEW
« no previous file with comments | « third_party/WebKit/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