| 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 11 matching lines...) Expand all Loading... |
| 22 width: 100%; | 22 width: 100%; |
| 23 line-height: 14px; | 23 line-height: 14px; |
| 24 font-size: 12px; | 24 font-size: 12px; |
| 25 border-top: 1px solid transparent; | 25 border-top: 1px solid transparent; |
| 26 border-bottom: 1px solid transparent; | 26 border-bottom: 1px solid transparent; |
| 27 padding: 2px 7px 2px 8px; | 27 padding: 2px 7px 2px 8px; |
| 28 margin: 0 13px 0 0; | 28 margin: 0 13px 0 0; |
| 29 white-space: nowrap; | 29 white-space: nowrap; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .soft-context-menu-disabled { |
| 33 color: #999; |
| 34 pointer-events: none; |
| 35 } |
| 36 |
| 32 .soft-context-menu-separator { | 37 .soft-context-menu-separator { |
| 33 height: 10px; | 38 height: 10px; |
| 34 margin: 0 1px; | 39 margin: 0 1px; |
| 35 } | 40 } |
| 36 | 41 |
| 37 .soft-context-menu-separator > .separator-line { | 42 .soft-context-menu-separator > .separator-line { |
| 38 margin: 0; | 43 margin: 0; |
| 39 height: 5px; | 44 height: 5px; |
| 40 border-bottom: 1px solid rgb(222, 222, 222); | 45 border-bottom: 1px solid rgb(222, 222, 222); |
| 41 pointer-events: none; | 46 pointer-events: none; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 display: inline-block; | 106 display: inline-block; |
| 102 pointer-events: none; | 107 pointer-events: none; |
| 103 margin: auto 5px auto 0px; | 108 margin: auto 5px auto 0px; |
| 104 } | 109 } |
| 105 | 110 |
| 106 @media (-webkit-min-device-pixel-ratio: 1.5) { | 111 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 107 .checkmark { | 112 .checkmark { |
| 108 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 113 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 109 } | 114 } |
| 110 } | 115 } |
| OLD | NEW |