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

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: Make repeat count work 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 font-size: 11px;
apavlov 2014/03/04 14:06:46 pfeldman suggests that you not specify font size h
897 color: gray;
898 margin-right: 10px;
899 -webkit-user-select: none;
900 }
901
895 .console-message::before, 902 .console-message::before,
896 .console-user-command::before, 903 .console-user-command::before,
897 #console-prompt::before, 904 #console-prompt::before,
898 .console-group-title::before { 905 .console-group-title::before {
899 position: absolute; 906 position: absolute;
900 display: block; 907 display: block;
901 content: ""; 908 content: "";
902 left: -17px; 909 left: -17px;
903 top: 0.8em; 910 top: 0.8em;
904 width: 10px; 911 width: 10px;
(...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after
2883 } 2890 }
2884 2891
2885 .root-view > .split-view > .split-view-sidebar { 2892 .root-view > .split-view > .split-view-sidebar {
2886 position: relative; 2893 position: relative;
2887 } 2894 }
2888 2895
2889 select.drop-down-menu { 2896 select.drop-down-menu {
2890 border: none; 2897 border: none;
2891 -webkit-appearance: none; 2898 -webkit-appearance: none;
2892 } 2899 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698