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

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

Issue 1290883006: Devtools: Add new row in toolbarButtonGlyphs and layout editor icon (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 text-align: right; 82 text-align: right;
83 padding-left: 10px; 83 padding-left: 10px;
84 } 84 }
85 85
86 .soft-context-menu-item-mouse-over .soft-context-menu-shortcut { 86 .soft-context-menu-item-mouse-over .soft-context-menu-shortcut {
87 color: inherit; 87 color: inherit;
88 } 88 }
89 89
90 .checkmark { 90 .checkmark {
91 background-image: url(Images/toolbarButtonGlyphs.png); 91 background-image: url(Images/toolbarButtonGlyphs.png);
92 background-size: 352px 144px; 92 background-size: 352px 168px;
93 opacity: 0.7; 93 opacity: 0.7;
94 width: 10px; 94 width: 10px;
95 height: 10px; 95 height: 10px;
96 background-position: -128px -109px; 96 background-position: -128px -109px;
97 display: inline-block; 97 display: inline-block;
98 pointer-events: none; 98 pointer-events: none;
99 margin: auto 5px auto 0px; 99 margin: auto 5px auto 0px;
100 } 100 }
101 101
102 @media (-webkit-min-device-pixel-ratio: 1.5) { 102 @media (-webkit-min-device-pixel-ratio: 1.5) {
103 .checkmark { 103 .checkmark {
104 background-image: url(Images/toolbarButtonGlyphs_2x.png); 104 background-image: url(Images/toolbarButtonGlyphs_2x.png);
105 } 105 }
106 } 106 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/smallIcon.css ('k') | Source/devtools/front_end/ui/splitWidget.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698