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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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: relative; |
60 padding: 3px 22px 1px 0; | 60 margin: 0 22px 0 20px; |
61 margin-left: 24px; | |
62 min-height: 18px; /* Sync with ConsoleViewMessage.js */ | 61 min-height: 18px; /* Sync with ConsoleViewMessage.js */ |
63 white-space: pre-wrap; | 62 } |
64 -webkit-user-modify: read-write-plaintext-only; | 63 |
| 64 #console-prompt .CodeMirror{ |
| 65 padding: 3px 0 1px 0; |
| 66 } |
| 67 |
| 68 #console-prompt .CodeMirror-line { |
| 69 padding-top:0; |
| 70 } |
| 71 |
| 72 #console-prompt .CodeMirror-lines { |
| 73 padding-top:0; |
65 } | 74 } |
66 | 75 |
67 #console-prompt::before { | 76 #console-prompt::before { |
68 background-position: -20px -20px; | 77 background-position: -20px -20px; |
| 78 margin-left:4px; |
69 } | 79 } |
70 | 80 |
71 .console-log-level .console-user-command-result::before { | 81 .console-log-level .console-user-command-result::before { |
72 background-position: -40px -20px; | 82 background-position: -40px -20px; |
73 } | 83 } |
74 | 84 |
75 .console-message, | 85 .console-message, |
76 .console-user-command { | 86 .console-user-command { |
77 clear: right; | 87 clear: right; |
78 position: relative; | 88 position: relative; |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 background-color: rgb(179, 203, 247); | 442 background-color: rgb(179, 203, 247); |
433 } | 443 } |
434 | 444 |
435 .info-note::before { | 445 .info-note::before { |
436 content: "i"; | 446 content: "i"; |
437 } | 447 } |
438 | 448 |
439 .console-view-object-properties-section { | 449 .console-view-object-properties-section { |
440 padding: 0px; | 450 padding: 0px; |
441 } | 451 } |
OLD | NEW |