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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 flex: auto; | 87 flex: auto; |
88 } | 88 } |
89 | 89 |
90 .console-adjacent-user-command-result + .console-user-command-result.console-log
-level::before { | 90 .console-adjacent-user-command-result + .console-user-command-result.console-log
-level::before { |
91 background-image: none; | 91 background-image: none; |
92 } | 92 } |
93 | 93 |
94 .console-timestamp { | 94 .console-timestamp { |
95 color: gray; | 95 color: gray; |
96 -webkit-user-select: none; | 96 -webkit-user-select: none; |
| 97 flex-grow: 0; |
| 98 margin-right: 6px; |
97 } | 99 } |
98 | 100 |
99 .console-message::before, | 101 .console-message::before, |
100 .console-user-command::before, | 102 .console-user-command::before, |
101 #console-prompt::before, | 103 #console-prompt::before, |
102 .console-group-title::before { | 104 .console-group-title::before { |
103 position: absolute; | 105 position: absolute; |
104 display: block; | 106 display: block; |
105 content: ""; | 107 content: ""; |
106 left: -17px; | 108 left: -17px; |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 background-color: rgb(179, 203, 247); | 451 background-color: rgb(179, 203, 247); |
450 } | 452 } |
451 | 453 |
452 .info-note::before { | 454 .info-note::before { |
453 content: "i"; | 455 content: "i"; |
454 } | 456 } |
455 | 457 |
456 .console-view-object-properties-section { | 458 .console-view-object-properties-section { |
457 padding: 0px; | 459 padding: 0px; |
458 } | 460 } |
OLD | NEW |