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

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

Issue 649633005: DevTools: fix nowrap style in the elements panel. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 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.elements-wrap {
38 overflow-x: hidden;
39 }
40
37 #elements-crumbs { 41 #elements-crumbs {
38 flex: 0 0 19px; 42 flex: 0 0 19px;
39 background-color: white; 43 background-color: white;
40 border-top: 1px solid #ccc; 44 border-top: 1px solid #ccc;
41 overflow: hidden; 45 overflow: hidden;
42 height: 19px; 46 height: 19px;
43 width: 100%; 47 width: 100%;
44 } 48 }
45 49
46 .metrics { 50 .metrics {
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 line-height: 16px; 721 line-height: 16px;
718 } 722 }
719 723
720 .animation-pause .glyph { 724 .animation-pause .glyph {
721 -webkit-mask-position: -32px -72px; 725 -webkit-mask-position: -32px -72px;
722 } 726 }
723 727
724 .animation-pause.toggled-on .glyph { 728 .animation-pause.toggled-on .glyph {
725 -webkit-mask-position: 0 -72px; 729 -webkit-mask-position: 0 -72px;
726 } 730 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/ElementsTreeOutline.js ('k') | Source/devtools/front_end/elements/elementsTreeOutline.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698