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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 542383004: DevTools: [Console] bring back per-word wrapping of console messages (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 margin: 0; 1335 margin: 0;
1336 } 1336 }
1337 1337
1338 .source-code { 1338 .source-code {
1339 font-family: monospace; 1339 font-family: monospace;
1340 font-size: 11px !important; 1340 font-size: 11px !important;
1341 white-space: pre-wrap; 1341 white-space: pre-wrap;
1342 } 1342 }
1343 1343
1344 .console-message-text { 1344 .console-message-text {
1345 white-space: pre; 1345 white-space: pre-wrap;
1346 } 1346 }
1347 1347
1348 .outline-disclosure li { 1348 .outline-disclosure li {
1349 padding: 0 0 0 14px; 1349 padding: 0 0 0 14px;
1350 margin-top: 1px; 1350 margin-top: 1px;
1351 margin-left: -2px; 1351 margin-left: -2px;
1352 word-wrap: break-word; 1352 word-wrap: break-word;
1353 } 1353 }
1354 1354
1355 .outline-disclosure ol:focus li.selected { 1355 .outline-disclosure ol:focus li.selected {
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
2779 } 2779 }
2780 2780
2781 body.inactive select.chrome-select, 2781 body.inactive select.chrome-select,
2782 .chrome-select:disabled { 2782 .chrome-select:disabled {
2783 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 2783 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
2784 border-color: rgba(80, 80, 80, 0.2); 2784 border-color: rgba(80, 80, 80, 0.2);
2785 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 2785 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
2786 inset 0 1px 2px rgba(255, 255, 255, 0.75); 2786 inset 0 1px 2px rgba(255, 255, 255, 0.75);
2787 color: #aaa; 2787 color: #aaa;
2788 } 2788 }
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