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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/softContextMenu.css

Issue 2652153003: DevTools: migrate SoftContextMenu icons over to UI.Icon (Closed)
Patch Set: rebaseline Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js ('k') | 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 (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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 :host { 7 :host {
8 position: absolute; 8 position: absolute;
9 border: 1px solid rgba(196, 196, 196, 0.9); 9 border: 1px solid rgba(196, 196, 196, 0.9);
10 border-top: 1px solid rgba(196, 196, 196, 0.5); 10 border-top: 1px solid rgba(196, 196, 196, 0.5);
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 flex: 1 1 auto; 90 flex: 1 1 auto;
91 text-align: right; 91 text-align: right;
92 padding-left: 10px; 92 padding-left: 10px;
93 } 93 }
94 94
95 .soft-context-menu-item-mouse-over .soft-context-menu-shortcut { 95 .soft-context-menu-item-mouse-over .soft-context-menu-shortcut {
96 color: inherit; 96 color: inherit;
97 } 97 }
98 98
99 .checkmark { 99 .checkmark {
100 background-image: url(Images/toolbarButtonGlyphs.png);
101 background-size: 352px 168px;
102 opacity: 0.7; 100 opacity: 0.7;
103 width: 10px;
104 height: 10px;
105 background-position: -128px -109px;
106 display: inline-block;
107 pointer-events: none; 101 pointer-events: none;
108 margin: auto 5px auto 0px; 102 margin: auto 5px auto 0px;
109 } 103 }
110 104
111 @media (-webkit-min-device-pixel-ratio: 1.1) { 105 .soft-context-menu-item-mouse-over .checkmark {
112 .checkmark { 106 opacity: 1;
113 background-image: url(Images/toolbarButtonGlyphs_2x.png); 107 }
114 }
115 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SoftContextMenu.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698