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: third_party/WebKit/Source/devtools/front_end/sources/sourcesPanel.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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 } 167 }
168 168
169 .watch-expression-title { 169 .watch-expression-title {
170 white-space: nowrap; 170 white-space: nowrap;
171 text-overflow: ellipsis; 171 text-overflow: ellipsis;
172 overflow: hidden; 172 overflow: hidden;
173 line-height: 12px; 173 line-height: 12px;
174 margin-left: 11px; 174 margin-left: 11px;
175 } 175 }
176 176
177 .watch-expression-object-header .watch-expression-title {
178 margin-left: 1px;
179 }
180
177 .watch-expression { 181 .watch-expression {
178 position: relative; 182 position: relative;
179 padding: 1px 0px 1px 6px; 183 padding: 1px 0px 1px 6px;
184 flex: none;
180 } 185 }
181 186
182 .watch-expressions .name { 187 .watch-expressions .name {
183 color: rgb(136, 19, 145); 188 color: rgb(136, 19, 145);
184 flex: none; 189 flex: none;
185 white-space: nowrap; 190 white-space: nowrap;
186 text-overflow: ellipsis ; 191 text-overflow: ellipsis ;
187 overflow: hidden; 192 overflow: hidden;
188 } 193 }
189 194
(...skipping 11 matching lines...) Expand all
201 overflow: hidden; 206 overflow: hidden;
202 white-space: nowrap; 207 white-space: nowrap;
203 padding-left: 4px; 208 padding-left: 4px;
204 -webkit-user-select: text; 209 -webkit-user-select: text;
205 } 210 }
206 211
207 .watch-expression-text-prompt-proxy { 212 .watch-expression-text-prompt-proxy {
208 margin-left: 12px; 213 margin-left: 12px;
209 } 214 }
210 215
216 .watch-expression-header {
217 flex: auto;
218 }
219
220 .watch-expression-object-header {
221 margin-left: -12px;
222 padding-left: 12px;
223 }
224
211 .watch-expression-header:hover { 225 .watch-expression-header:hover {
212 background-color: #F0F0F0; 226 background-color: #F0F0F0;
213 padding-right: 14px; 227 padding-right: 14px;
214 } 228 }
215 229
216 .sidebar-pane-stack .watch-expressions { 230 .sidebar-pane-stack .watch-expressions {
217 margin-top: 0px; 231 margin-top: 0px;
218 } 232 }
219 233
234 .scope-chain-sidebar-pane-section-header {
235 flex: auto;
236 }
237
220 .scope-chain-sidebar-pane-section-subtitle { 238 .scope-chain-sidebar-pane-section-subtitle {
221 float: right; 239 float: right;
222 margin-left: 5px; 240 margin-left: 5px;
223 max-width: 55%; 241 max-width: 55%;
224 text-overflow: ellipsis; 242 text-overflow: ellipsis;
225 overflow: hidden; 243 overflow: hidden;
226 } 244 }
227 245
228 .scope-chain-sidebar-pane-section-title { 246 .scope-chain-sidebar-pane-section-title {
229 font-weight: normal; 247 font-weight: normal;
(...skipping 15 matching lines...) Expand all
245 263
246 .scope-chain-sidebar-pane-section-title { 264 .scope-chain-sidebar-pane-section-title {
247 font-weight: normal; 265 font-weight: normal;
248 word-wrap: break-word; 266 word-wrap: break-word;
249 white-space: normal; 267 white-space: normal;
250 } 268 }
251 269
252 .scope-chain-sidebar-pane-section { 270 .scope-chain-sidebar-pane-section {
253 padding: 2px 4px 2px 4px; 271 padding: 2px 4px 2px 4px;
254 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698