| Index: ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html
|
| diff --git a/ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html b/ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html
|
| index e5d4ef904c9a9757d0f5b7662db1d4dc9a807222..0a36633844a4cbacf573590ffb6567fc7f4bb9ed 100644
|
| --- a/ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html
|
| +++ b/ui/webui/resources/cr_elements/cr_action_menu/cr_action_menu.html
|
| @@ -1,4 +1,5 @@
|
| <link rel="import" href="chrome://resources/html/polymer.html">
|
| +<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
|
|
|
| <dom-module id="cr-action-menu">
|
| <template>
|
| @@ -16,6 +17,27 @@
|
| background-color: transparent;
|
| }
|
|
|
| + :host ::content .dropdown-item {
|
| + background: none;
|
| + border: none;
|
| + box-sizing: border-box;
|
| + color: var(--paper-grey-800);
|
| + font: inherit;
|
| + min-height: 32px;
|
| + padding: 0 24px;
|
| + text-align: start;
|
| + width: 100%;
|
| + }
|
| +
|
| + :host ::content .dropdown-item:not([hidden]) {
|
| + align-items: center;
|
| + display: flex;
|
| + }
|
| +
|
| + :host ::content .dropdown-item:not([disabled]) {
|
| + @apply(--cr-actionable);
|
| + }
|
| +
|
| :host ::content .dropdown-item:focus {
|
| background-color: var(--paper-grey-300);
|
| outline: none;
|
|
|