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

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

Issue 351263002: DevTools: [MQI] text-shadow for label instead of black background color (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
« no previous file with comments | « no previous file | no next file » | 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 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698