OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |