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

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

Issue 2514123003: DevTools: non-italic previews that always wrap (Closed)
Patch Set: Created 4 years, 1 month 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 line-height: 13px; 381 line-height: 13px;
382 } 382 }
383 383
384 .console-group-messages .section .properties li .info { 384 .console-group-messages .section .properties li .info {
385 padding-top: 0; 385 padding-top: 0;
386 padding-bottom: 0; 386 padding-bottom: 0;
387 color: rgb(60%, 60%, 60%); 387 color: rgb(60%, 60%, 60%);
388 } 388 }
389 389
390 .console-object-preview { 390 .console-object-preview {
391 font-style: italic;
392 white-space: normal; 391 white-space: normal;
393 word-wrap: break-word; 392 word-wrap: break-word;
394 } 393 }
395 394
396 .console-object-preview .name { 395 .console-object-preview .name {
397 /* Follows .section .properties .name, .event-properties .name */ 396 /* Follows .section .properties .name, .event-properties .name */
398 color: rgb(136, 19, 145); 397 color: rgb(136, 19, 145);
399 flex-shrink: 0; 398 flex-shrink: 0;
400 } 399 }
401 400
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 481
483 @media (-webkit-min-device-pixel-ratio: 1.1) { 482 @media (-webkit-min-device-pixel-ratio: 1.1) {
484 .console-message-stack-trace-toggle .console-message-text::before { 483 .console-message-stack-trace-toggle .console-message-text::before {
485 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 484 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
486 } 485 }
487 } /* media */ 486 } /* media */
488 487
489 .console-message-stack-trace-toggle.expanded .console-message-text::before { 488 .console-message-stack-trace-toggle.expanded .console-message-text::before {
490 -webkit-mask-position: -20px -96px; 489 -webkit-mask-position: -20px -96px;
491 } 490 }
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