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

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

Issue 207553010: DevTools: speed up network scrolling and layout. (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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 overflow: hidden; 819 overflow: hidden;
820 } 820 }
821 821
822 #console-messages { 822 #console-messages {
823 flex: 1 1; 823 flex: 1 1;
824 padding: 2px 0; 824 padding: 2px 0;
825 overflow-y: auto; 825 overflow-y: auto;
826 word-wrap: break-word; 826 word-wrap: break-word;
827 -webkit-user-select: text; 827 -webkit-user-select: text;
828 border-top: 1px solid rgb(230, 230, 230); 828 border-top: 1px solid rgb(230, 230, 230);
829 -webkit-transform: translateZ(0);
829 } 830 }
830 831
831 #console-prompt { 832 #console-prompt {
832 clear: right; 833 clear: right;
833 position: relative; 834 position: relative;
834 padding: 1px 22px 1px 0; 835 padding: 1px 22px 1px 0;
835 margin-left: 24px; 836 margin-left: 24px;
836 min-height: 16px; 837 min-height: 16px;
837 white-space: pre-wrap; 838 white-space: pre-wrap;
838 -webkit-user-modify: read-write-plaintext-only; 839 -webkit-user-modify: read-write-plaintext-only;
(...skipping 2006 matching lines...) Expand 10 before | Expand all | Expand 10 after
2845 } 2846 }
2846 2847
2847 .root-view > .split-view > .split-view-sidebar { 2848 .root-view > .split-view > .split-view-sidebar {
2848 position: relative; 2849 position: relative;
2849 } 2850 }
2850 2851
2851 select.drop-down-menu { 2852 select.drop-down-menu {
2852 border: none; 2853 border: none;
2853 -webkit-appearance: none; 2854 -webkit-appearance: none;
2854 } 2855 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698