1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*
* 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);
/* NOTE: Keep padding top in sync with topPadding in SoftContextMenu.js */
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;
min-width: 160px !important;
}
.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;
}
.soft-context-menu-disabled {
color: #999;
pointer-events: none;
}
.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,
.-theme-selection-color {
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,
.-theme-selection-color {
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;
pointer-events: none;
font-size: 11px;
flex: 1 1 auto;
text-align: right;
}
.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.1) {
.checkmark {
background-image: url(Images/toolbarButtonGlyphs_2x.png);
}
}
|