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

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

Issue 1342243006: Devtools UI: Add high DPI chevron overflow icon (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « no previous file | Source/devtools/front_end/promises/promisePane.css » ('j') | 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) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .elements-disclosure { 7 .elements-disclosure {
8 width: 100%; 8 width: 100%;
9 display: inline-block; 9 display: inline-block;
10 line-height: normal; 10 line-height: normal;
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 height: 20px; 352 height: 20px;
353 transform: scale(0.8) rotate(90deg); 353 transform: scale(0.8) rotate(90deg);
354 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 354 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
355 -webkit-mask-size: 352px 168px; 355 -webkit-mask-size: 352px 168px;
356 background-color: #FFFFFF; 356 background-color: #FFFFFF;
357 z-index: 1; 357 z-index: 1;
358 margin-top: -3px; 358 margin-top: -3px;
359 cursor: pointer; 359 cursor: pointer;
360 } 360 }
361 361
362 @media (-webkit-min-device-pixel-ratio: 1.5) {
363 .node-actions-toggle {
364 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
365 }
366 } /* media */
367
362 .gutter-container.has-decorations .node-actions-toggle { 368 .gutter-container.has-decorations .node-actions-toggle {
363 opacity: 0; 369 opacity: 0;
364 } 370 }
365 371
366 .node-actions-container.expanded > .node-actions-toolbar { 372 .node-actions-container.expanded > .node-actions-toolbar {
367 visibility: visible; 373 visibility: visible;
368 } 374 }
369 375
370 .node-actions-toolbar-below { 376 .node-actions-toolbar-below {
371 margin-top: 2px; 377 margin-top: 2px;
372 } 378 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/promises/promisePane.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698