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

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

Issue 2623143002: DevTools: insert console message decorations in order
Patch Set: ac Created 3 years, 11 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 .console-message > * { 94 .console-message > * {
95 flex: auto; 95 flex: auto;
96 } 96 }
97 97
98 .console-timestamp { 98 .console-timestamp, .console-context-label {
99 color: gray; 99 color: gray;
100 -webkit-user-select: none; 100 -webkit-user-select: none;
101 flex-grow: 0; 101 flex: none;
102 margin-right: 5px; 102 }
103
104 .console-timestamp {
105 margin-right: 15px;
106 max-width: 80px;
107 overflow: hidden;
108 }
109
110 .console-timestamp-visible {
111 white-space: nowrap;
112 float: right;
113 }
114
115 .console-context-label:not(:empty) {
116 margin-right: 15px;
117 width: 80px;
118 }
119
120 .console-context-label {
121 text-overflow: ellipsis;
122 white-space: nowrap;
123 overflow: hidden;
103 } 124 }
104 125
105 .message-level-icon, .command-result-icon { 126 .message-level-icon, .command-result-icon {
106 position: absolute; 127 position: absolute;
107 left: -17px; 128 left: -17px;
108 top: 5px; 129 top: 5px;
109 -webkit-user-select: none; 130 -webkit-user-select: none;
110 } 131 }
111 132
112 .console-message-repeat-count { 133 .console-message-repeat-count {
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 .console-message-stack-trace-wrapper { 380 .console-message-stack-trace-wrapper {
360 flex: 1 1 auto; 381 flex: 1 1 auto;
361 display: flex; 382 display: flex;
362 flex-direction: column; 383 flex-direction: column;
363 align-items: stretch; 384 align-items: stretch;
364 } 385 }
365 386
366 .console-message-stack-trace-wrapper > * { 387 .console-message-stack-trace-wrapper > * {
367 flex: none; 388 flex: none;
368 } 389 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698