OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |