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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 .console-user-command { | 84 .console-user-command { |
85 clear: right; | 85 clear: right; |
86 position: relative; | 86 position: relative; |
87 padding: 3px 22px 1px 0; | 87 padding: 3px 22px 1px 0; |
88 margin-left: 24px; | 88 margin-left: 24px; |
89 min-height: 18px; /* Sync with ConsoleViewMessage.js */ | 89 min-height: 18px; /* Sync with ConsoleViewMessage.js */ |
90 flex: auto; | 90 flex: auto; |
91 display: flex; | 91 display: flex; |
92 } | 92 } |
93 | 93 |
| 94 .show-context-icons .console-message, |
| 95 .show-context-icons .console-user-command { |
| 96 margin-left: 44px; |
| 97 } |
| 98 |
| 99 .show-context-icons .console-message.repeated-message { |
| 100 margin-left: 20px; |
| 101 } |
| 102 |
94 .console-message > * { | 103 .console-message > * { |
95 flex: auto; | 104 flex: auto; |
96 } | 105 } |
97 | 106 |
98 .console-timestamp { | 107 .console-timestamp { |
99 color: gray; | 108 color: gray; |
| 109 white-space: nowrap; |
| 110 overflow: hidden; |
| 111 text-overflow: ellipsis; |
| 112 } |
| 113 |
| 114 .console-context-icon { |
| 115 position: absolute; |
| 116 top: 1px; |
| 117 left: -35px; |
| 118 } |
| 119 |
| 120 .repeated-message .console-context-icon { |
| 121 left: -15px; |
| 122 } |
| 123 |
| 124 .console-timestamp, .console-context-icon { |
| 125 margin-right: 5px; |
100 -webkit-user-select: none; | 126 -webkit-user-select: none; |
101 flex: none; | 127 flex: none; |
102 margin-right: 5px; | |
103 } | 128 } |
104 | 129 |
105 .message-level-icon, .command-result-icon { | 130 .message-level-icon, .command-result-icon { |
106 position: absolute; | 131 position: absolute; |
107 left: -17px; | 132 left: -17px; |
108 top: 4px; | 133 top: 4px; |
109 -webkit-user-select: none; | 134 -webkit-user-select: none; |
110 } | 135 } |
111 | 136 |
112 .console-message-repeat-count { | 137 .console-message-repeat-count { |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 .console-message-stack-trace-wrapper { | 382 .console-message-stack-trace-wrapper { |
358 flex: 1 1 auto; | 383 flex: 1 1 auto; |
359 display: flex; | 384 display: flex; |
360 flex-direction: column; | 385 flex-direction: column; |
361 align-items: stretch; | 386 align-items: stretch; |
362 } | 387 } |
363 | 388 |
364 .console-message-stack-trace-wrapper > * { | 389 .console-message-stack-trace-wrapper > * { |
365 flex: none; | 390 flex: none; |
366 } | 391 } |
OLD | NEW |