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

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

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