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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 .media-inspector-min-label::after { | 473 .media-inspector-min-label::after { |
474 position: absolute; | 474 position: absolute; |
475 padding-left: 2px; | 475 padding-left: 2px; |
476 right: -1px; | 476 right: -1px; |
477 height: 6px; | 477 height: 6px; |
478 content: url(Images/graphLabelCalloutLeft.png); | 478 content: url(Images/graphLabelCalloutLeft.png); |
479 -webkit-filter: invert(0.8); | 479 -webkit-filter: invert(0.8); |
480 } | 480 } |
481 | 481 |
482 .media-inspector-max-label { | 482 .media-inspector-max-label { |
483 background-color: rgba(0, 0, 0, 0.5); | 483 text-shadow: 0px 0px 2px black; |
484 padding-left: 11px; | 484 padding-left: 11px; |
485 } | 485 } |
486 | 486 |
487 .media-inspector-marker-container:hover .media-inspector-max-label { | |
488 background-color: rgba(0, 0, 0, 0.3); | |
489 } | |
490 | |
491 .media-inspector-max-label::before { | 487 .media-inspector-max-label::before { |
492 position: absolute; | 488 position: absolute; |
493 padding-right: 2px; | 489 padding-right: 2px; |
494 left: -1px; | 490 left: -1px; |
495 height: 6px; | 491 height: 6px; |
496 content: url(Images/graphLabelCalloutRight.png); | 492 content: url(Images/graphLabelCalloutRight.png); |
497 -webkit-filter: invert(0.8); | 493 -webkit-filter: invert(0.8); |
498 } | 494 } |
499 | 495 |
500 .media-inspector-threshold-serif { | 496 .media-inspector-threshold-serif { |
(...skipping 30 matching lines...) Expand all Loading... |
531 | 527 |
532 @-webkit-keyframes media-inspector-animation-highlight-1 { | 528 @-webkit-keyframes media-inspector-animation-highlight-1 { |
533 from { -webkit-filter: brightness(135%); } | 529 from { -webkit-filter: brightness(135%); } |
534 to { -webkit-filter: brightness(100%); } | 530 to { -webkit-filter: brightness(100%); } |
535 } | 531 } |
536 | 532 |
537 @-webkit-keyframes media-inspector-animation-highlight-2 { | 533 @-webkit-keyframes media-inspector-animation-highlight-2 { |
538 from { -webkit-filter: brightness(135%); } | 534 from { -webkit-filter: brightness(135%); } |
539 to { -webkit-filter: brightness(100%); } | 535 to { -webkit-filter: brightness(100%); } |
540 } | 536 } |
OLD | NEW |