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

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

Issue 2058513003: DevTools: max length limit for formatting commands (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made const Created 4 years, 6 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 flex: 1 1; 49 flex: 1 1;
50 padding: 2px 0; 50 padding: 2px 0;
51 overflow-y: auto; 51 overflow-y: auto;
52 word-wrap: break-word; 52 word-wrap: break-word;
53 -webkit-user-select: text; 53 -webkit-user-select: text;
54 transform: translateZ(0); 54 transform: translateZ(0);
55 } 55 }
56 56
57 #console-prompt { 57 #console-prompt {
58 clear: right; 58 clear: right;
59 position: relative; 59 position: absolute;
dgozman 2016/06/14 08:55:04 I've tried this in canary, and it doesn't have any
luoe 2016/06/14 18:29:54 After checking Canary on Mac, it looks like there
60 left: 0;
61 right: 0;
60 padding: 3px 22px 1px 0; 62 padding: 3px 22px 1px 0;
61 margin-left: 24px; 63 margin-left: 24px;
62 min-height: 18px; /* Sync with ConsoleViewMessage.js */ 64 min-height: 18px; /* Sync with ConsoleViewMessage.js */
63 white-space: pre-wrap; 65 white-space: pre-wrap;
64 -webkit-user-modify: read-write-plaintext-only; 66 -webkit-user-modify: read-write-plaintext-only;
65 } 67 }
66 68
67 #console-prompt::before { 69 #console-prompt::before {
68 background-position: -192px -96px; 70 background-position: -192px -96px;
69 } 71 }
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 content: "i"; 455 content: "i";
454 } 456 }
455 457
456 .console-view-object-properties-section:not(.expanded) .info-note { 458 .console-view-object-properties-section:not(.expanded) .info-note {
457 display: none; 459 display: none;
458 } 460 }
459 461
460 .console-view-object-properties-section { 462 .console-view-object-properties-section {
461 padding: 0px; 463 padding: 0px;
462 } 464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698