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

Side by Side Diff: Source/devtools/front_end/inspector.css

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
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 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 } 885 }
886 886
887 .console-adjacent-user-command-result { 887 .console-adjacent-user-command-result {
888 border-bottom: none; 888 border-bottom: none;
889 } 889 }
890 890
891 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before { 891 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before {
892 background-image: none; 892 background-image: none;
893 } 893 }
894 894
895 .console-timestamp {
896 color: gray;
897 margin-right: 10px;
apavlov 2014/03/06 09:56:20 Just an idea: we can wrap it into square brackets
898 -webkit-user-select: none;
899 }
900
895 .console-message::before, 901 .console-message::before,
896 .console-user-command::before, 902 .console-user-command::before,
897 #console-prompt::before, 903 #console-prompt::before,
898 .console-group-title::before { 904 .console-group-title::before {
899 position: absolute; 905 position: absolute;
900 display: block; 906 display: block;
901 content: ""; 907 content: "";
902 left: -17px; 908 left: -17px;
903 top: 0.8em; 909 top: 0.8em;
904 width: 10px; 910 width: 10px;
(...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after
2883 } 2889 }
2884 2890
2885 .root-view > .split-view > .split-view-sidebar { 2891 .root-view > .split-view > .split-view-sidebar {
2886 position: relative; 2892 position: relative;
2887 } 2893 }
2888 2894
2889 select.drop-down-menu { 2895 select.drop-down-menu {
2890 border: none; 2896 border: none;
2891 -webkit-appearance: none; 2897 -webkit-appearance: none;
2892 } 2898 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698