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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/navigatorView.css

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years 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
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 } 49 }
50 50
51 .navigator-other-tree-item .icon { 51 .navigator-other-tree-item .icon {
52 content: url(Images/resourcePlainIcon.png); 52 content: url(Images/resourcePlainIcon.png);
53 } 53 }
54 54
55 .navigator > ol { 55 .navigator > ol {
56 min-width: 100%; 56 min-width: 100%;
57 min-height: 100%; 57 min-height: 100%;
58 display: inline-block; 58 display: inline-block;
59 position: relative 59 position: relative;
60 } 60 }
61 61
62 .navigator li { 62 .navigator li {
63 height: 18px; 63 height: 18px;
64 line-height: 17px; 64 line-height: 17px;
65 white-space: nowrap; 65 white-space: nowrap;
66 padding-right: 3px;
66 } 67 }
67 68
68 .navigator :focus li.selected { 69 .navigator :focus li.selected {
69 color: white; 70 color: white;
70 } 71 }
71 72
72 .navigator > ol.being-edited li.selected .selection { 73 .navigator > ol.being-edited li.selected .selection {
73 background-color: rgb(56, 121, 217); 74 background-color: rgb(56, 121, 217);
74 } 75 }
75 76
76 .navigator > ol.being-edited li.selected { 77 .navigator > ol.being-edited li.selected {
77 overflow: visible; 78 overflow: visible;
78 } 79 }
79 80
80 .navigator .icon { 81 .navigator .icon {
81 width: 16px; 82 width: 16px;
82 height: 16px; 83 height: 16px;
83 float: left; 84 margin-top: -2px;
85 position: relative;
86 top: 3px;
84 } 87 }
85 88
86 .navigator .base-navigator-tree-element-title { 89 .navigator .base-navigator-tree-element-title {
87 display: inline-block; 90 display: inline-block;
88 position: relative; 91 position: relative;
89 padding-left: 2px; 92 padding-left: 2px;
90 } 93 }
91 94
92 .navigator .base-navigator-tree-element-title.editing { 95 .navigator .base-navigator-tree-element-title.editing {
93 margin: auto; 96 margin: auto;
94 } 97 }
95 98
96 .navigator-tabbed-pane { 99 .navigator-tabbed-pane {
97 flex: auto; 100 flex: auto;
98 } 101 }
99 102
100 .navigator-tabbed-pane .navigator { 103 .navigator-tabbed-pane .navigator {
101 padding-left: 0; 104 padding-left: 0;
102 transform: translateZ(0); 105 transform: translateZ(0);
103 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698