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

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

Issue 564893002: DevTools: [Console] fix selection of all console messages (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 #console-messages { 813 #console-messages {
814 flex: 1 1; 814 flex: 1 1;
815 padding: 2px 0; 815 padding: 2px 0;
816 overflow-y: auto; 816 overflow-y: auto;
817 word-wrap: break-word; 817 word-wrap: break-word;
818 -webkit-user-select: text; 818 -webkit-user-select: text;
819 border-top: 1px solid rgb(230, 230, 230); 819 border-top: 1px solid rgb(230, 230, 230);
820 -webkit-transform: translateZ(0); 820 -webkit-transform: translateZ(0);
821 } 821 }
822 822
823 .console-view-fix-select-all {
824 height: 0px;
825 overflow: hidden;
826 }
827
823 #console-prompt { 828 #console-prompt {
824 clear: right; 829 clear: right;
825 position: relative; 830 position: relative;
826 padding: 1px 22px 1px 0; 831 padding: 1px 22px 1px 0;
827 margin-left: 24px; 832 margin-left: 24px;
828 min-height: 16px; 833 min-height: 16px;
829 white-space: pre-wrap; 834 white-space: pre-wrap;
830 -webkit-user-modify: read-write-plaintext-only; 835 -webkit-user-modify: read-write-plaintext-only;
831 } 836 }
832 837
(...skipping 1946 matching lines...) Expand 10 before | Expand all | Expand 10 after
2779 } 2784 }
2780 2785
2781 body.inactive select.chrome-select, 2786 body.inactive select.chrome-select,
2782 .chrome-select:disabled { 2787 .chrome-select:disabled {
2783 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 2788 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
2784 border-color: rgba(80, 80, 80, 0.2); 2789 border-color: rgba(80, 80, 80, 0.2);
2785 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 2790 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
2786 inset 0 1px 2px rgba(255, 255, 255, 0.75); 2791 inset 0 1px 2px rgba(255, 255, 255, 0.75);
2787 color: #aaa; 2792 color: #aaa;
2788 } 2793 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/console/ConsoleView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698