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

Side by Side Diff: Source/devtools/front_end/elements/elementsPanel.css

Issue 734963003: Revert of DevTools: [regression] blue selection is truncated in Elements panel / non-wrap mode. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | 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 16 matching lines...) Expand all
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #elements-content { 30 #elements-content {
31 flex: 1 1; 31 flex: 1 1;
32 overflow: auto; 32 overflow: auto;
33 padding: 2px 0 0 0; 33 padding: 2px 0 0 0;
34 transform: translateZ(0); 34 transform: translateZ(0);
35 } 35 }
36 36
37 #elements-content:not(.elements-wrap) > div {
38 display: inline-block;
39 }
40
41 #elements-content.elements-wrap { 37 #elements-content.elements-wrap {
42 overflow-x: hidden; 38 overflow-x: hidden;
43 } 39 }
44 40
45 #elements-crumbs { 41 #elements-crumbs {
46 flex: 0 0 19px; 42 flex: 0 0 19px;
47 background-color: white; 43 background-color: white;
48 border-top: 1px solid #ccc; 44 border-top: 1px solid #ccc;
49 overflow: hidden; 45 overflow: hidden;
50 height: 19px; 46 height: 19px;
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 .swatch-inner { 684 .swatch-inner {
689 width: 100%; 685 width: 100%;
690 height: 100%; 686 height: 100%;
691 display: inline-block; 687 display: inline-block;
692 border: 1px solid rgba(128, 128, 128, 0.6); 688 border: 1px solid rgba(128, 128, 128, 0.6);
693 } 689 }
694 690
695 .swatch-inner:hover { 691 .swatch-inner:hover {
696 border: 1px solid rgba(64, 64, 64, 0.8); 692 border: 1px solid rgba(64, 64, 64, 0.8);
697 } 693 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698