| /* |
| * Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| :host { |
| position: absolute; |
| border: 1px solid rgba(196, 196, 196, 0.9); |
| border-top: 1px solid rgba(196, 196, 196, 0.5); |
| padding: 4px 0 4px 0; |
| border-radius: 4px; |
| background-color: rgb(240, 240, 240); |
| box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25); |
| overflow-y: auto; |
| } |
| |
| .soft-context-menu-item { |
| display: flex; |
| width: 100%; |
| line-height: 14px; |
| font-size: 12px; |
| border-top: 1px solid transparent; |
| border-bottom: 1px solid transparent; |
| padding: 2px 7px 2px 8px; |
| margin: 0 13px 0 0; |
| white-space: nowrap; |
| min-width: 160px; |
| } |
| |
| .soft-context-menu-separator { |
| height: 10px; |
| margin: 0 1px; |
| } |
| |
| .soft-context-menu-separator > .separator-line { |
| margin: 0; |
| height: 5px; |
| border-bottom: 1px solid rgb(222, 222, 222); |
| pointer-events: none; |
| } |
| |
| .soft-context-menu-item-mouse-over { |
| border-top: 1px solid rgb(56, 121, 217); |
| border-bottom: 1px solid rgb(56, 121, 217); |
| background-color: rgb(56, 121, 217); |
| color: white; |
| } |
| |
| :host-context(.platform-mac) .soft-context-menu-item-mouse-over { |
| border-top: 1px solid transparent; |
| border-bottom: 1px solid transparent; |
| background-image: linear-gradient(to right, hsl(214, 81%, 60%), hsl(214, 100%, 56%)); |
| } |
| |
| :host-context(.platform-mac) .separator-line { |
| border-width: 2px; |
| } |
| |
| .soft-context-menu-item-submenu-arrow { |
| color: #222; |
| float: right; |
| pointer-events: none; |
| font-size: 11px; |
| } |
| |
| .soft-context-menu-item-mouse-over .soft-context-menu-item-checkmark { |
| color: white; |
| } |
| |
| .soft-context-menu-custom-item { |
| display: inline-flex; |
| justify-content: center; |
| align-items: center; |
| flex: auto; |
| } |
| |
| .soft-context-menu-shortcut { |
| color: gray; |
| pointer-events: none; |
| flex: 1 1 auto; |
| text-align: right; |
| padding-left: 10px; |
| } |
| |
| .soft-context-menu-item-mouse-over .soft-context-menu-shortcut { |
| color: inherit; |
| } |
| |
| .checkmark { |
| background-image: url(Images/toolbarButtonGlyphs.png); |
| background-size: 352px 168px; |
| opacity: 0.7; |
| width: 10px; |
| height: 10px; |
| background-position: -128px -109px; |
| display: inline-block; |
| pointer-events: none; |
| margin: auto 5px auto 0px; |
| } |
| |
| @media (-webkit-min-device-pixel-ratio: 1.5) { |
| .checkmark { |
| background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| } |
| } |