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

Side by Side Diff: Source/devtools/front_end/responsiveDesignView.css

Issue 351303003: [DevTools] Switch from DIP to CSS pixels in device mode. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 2014 The Chromium Authors. All rights reserved. 2 * Copyright 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 .responsive-design { 7 .responsive-design {
8 overflow: hidden; 8 overflow: hidden;
9 position: relative; 9 position: relative;
10 } 10 }
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 490
491 .media-inspector-max-label::before { 491 .media-inspector-max-label::before {
492 position: absolute; 492 position: absolute;
493 padding-right: 2px; 493 padding-right: 2px;
494 left: -1px; 494 left: -1px;
495 height: 6px; 495 height: 6px;
496 content: url(Images/graphLabelCalloutRight.png); 496 content: url(Images/graphLabelCalloutRight.png);
497 -webkit-filter: invert(0.8); 497 -webkit-filter: invert(0.8);
498 } 498 }
499 499
500 .media-inspector-ruler-decoration {
lushnikov 2014/06/26 20:21:46 lets better add this into ruler glasspane.
dgozman 2014/06/27 11:07:00 Done.
501 overflow: hidden;
502 }
503
500 .media-inspector-threshold-serif { 504 .media-inspector-threshold-serif {
501 position: absolute; 505 position: absolute;
502 top: 0px; 506 top: 0px;
503 bottom: 0px; 507 bottom: 0px;
504 width: 5px; 508 width: 5px;
505 margin-left: -2px; 509 margin-left: -2px;
506 } 510 }
507 511
508 .media-inspector-threshold-serif::before { 512 .media-inspector-threshold-serif::before {
509 content: "."; 513 content: ".";
(...skipping 21 matching lines...) Expand all
531 535
532 @-webkit-keyframes media-inspector-animation-highlight-1 { 536 @-webkit-keyframes media-inspector-animation-highlight-1 {
533 from { -webkit-filter: brightness(135%); } 537 from { -webkit-filter: brightness(135%); }
534 to { -webkit-filter: brightness(100%); } 538 to { -webkit-filter: brightness(100%); }
535 } 539 }
536 540
537 @-webkit-keyframes media-inspector-animation-highlight-2 { 541 @-webkit-keyframes media-inspector-animation-highlight-2 {
538 from { -webkit-filter: brightness(135%); } 542 from { -webkit-filter: brightness(135%); }
539 to { -webkit-filter: brightness(100%); } 543 to { -webkit-filter: brightness(100%); }
540 } 544 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698