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

Side by Side Diff: Source/devtools/front_end/promises/promisePane.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, 3 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 .promises .data-grid { 7 .promises .data-grid {
8 border: none; 8 border: none;
9 flex: 1 1; 9 flex: 1 1;
10 } 10 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 .promises .status { 56 .promises .status {
57 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 57 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
58 -webkit-mask-size: 352px 168px; 58 -webkit-mask-size: 352px 168px;
59 -webkit-mask-position: -294px -26px; 59 -webkit-mask-position: -294px -26px;
60 background-color: #bbb; 60 background-color: #bbb;
61 height: 20px; 61 height: 20px;
62 width: 20px; 62 width: 20px;
63 } 63 }
64 64
65 @media (-webkit-min-device-pixel-ratio: 1.5) {
66 .promises .status {
67 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
68 }
69 } /* media */
70
65 .promises .status.rejected { 71 .promises .status.rejected {
66 background-color: rgb(216, 0, 0); 72 background-color: rgb(216, 0, 0);
67 } 73 }
68 74
69 .promises .status.resolved { 75 .promises .status.resolved {
70 background-color: #696; 76 background-color: #696;
71 } 77 }
72 78
73 .promises-filters-header { 79 .promises-filters-header {
74 flex: 0 0 23px; 80 flex: 0 0 23px;
75 overflow: hidden; 81 overflow: hidden;
76 } 82 }
77 83
78 .promises-filter-status { 84 .promises-filter-status {
79 flex: 0 0 23px; 85 flex: 0 0 23px;
80 padding-left: 18px; 86 padding-left: 18px;
81 color: rgb(128, 128, 128); 87 color: rgb(128, 128, 128);
82 font-style: italic; 88 font-style: italic;
83 } 89 }
84 .promises-filter-status .link:hover { 90 .promises-filter-status .link:hover {
85 color: rgb(15%, 15%, 15%); 91 color: rgb(15%, 15%, 15%);
86 } 92 }
87 .promises-filter-status .link { 93 .promises-filter-status .link {
88 color: rgb(33%, 33%, 33%); 94 color: rgb(33%, 33%, 33%);
89 } 95 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/elementsTreeOutline.css ('k') | Source/devtools/front_end/ui/tabbedPane.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698