Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |