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

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

Issue 2651843003: DevTools: update console timestamp style (Closed)
Patch Set: nochange Created 3 years, 10 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 {
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 margin-right: 5px;
103 } 103 }
104 104
105 .message-level-icon, .command-result-icon { 105 .message-level-icon, .command-result-icon {
106 position: absolute; 106 position: absolute;
107 left: -17px; 107 left: -17px;
108 top: 4px; 108 top: 4px;
109 -webkit-user-select: none; 109 -webkit-user-select: none;
110 } 110 }
111 111
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 .console-message-stack-trace-wrapper { 354 .console-message-stack-trace-wrapper {
355 flex: 1 1 auto; 355 flex: 1 1 auto;
356 display: flex; 356 display: flex;
357 flex-direction: column; 357 flex-direction: column;
358 align-items: stretch; 358 align-items: stretch;
359 } 359 }
360 360
361 .console-message-stack-trace-wrapper > * { 361 .console-message-stack-trace-wrapper > * {
362 flex: none; 362 flex: none;
363 } 363 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698