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

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: Fixed apavlov's comments 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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 } 850 }
851 851
852 .console-adjacent-user-command-result { 852 .console-adjacent-user-command-result {
853 border-bottom: none; 853 border-bottom: none;
854 } 854 }
855 855
856 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before { 856 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before {
857 background-image: none; 857 background-image: none;
858 } 858 }
859 859
860 .console-timestamp {
861 color: gray;
862 margin-right: 10px;
863 -webkit-user-select: none;
864 }
865
860 .console-message::before, 866 .console-message::before,
861 .console-user-command::before, 867 .console-user-command::before,
862 #console-prompt::before, 868 #console-prompt::before,
863 .console-group-title::before { 869 .console-group-title::before {
864 position: absolute; 870 position: absolute;
865 display: block; 871 display: block;
866 content: ""; 872 content: "";
867 left: -17px; 873 left: -17px;
868 top: 0.8em; 874 top: 0.8em;
869 width: 10px; 875 width: 10px;
(...skipping 1964 matching lines...) Expand 10 before | Expand all | Expand 10 after
2834 } 2840 }
2835 2841
2836 .root-view > .split-view > .split-view-sidebar { 2842 .root-view > .split-view > .split-view-sidebar {
2837 position: relative; 2843 position: relative;
2838 } 2844 }
2839 2845
2840 select.drop-down-menu { 2846 select.drop-down-menu {
2841 border: none; 2847 border: none;
2842 -webkit-appearance: none; 2848 -webkit-appearance: none;
2843 } 2849 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698