1/* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5/* Derived from /ui/webui/resources/css/menu.css. */
6
7menu {
8  position: fixed;
9  white-space: nowrap;
10  z-index: 3;
11}
12
13menu:not(.decorated) {
14  display: none;
15}
16
17menu > * {
18  box-sizing: border-box;
19  display: block;
20  text-align: start;
21  width: 100%;
22}
23
24menu > hr {
25  border: 0;
26  height: 1px;
27}
28
29menu > [hidden] {
30  display: none;
31}
32
33menu > [shortcutText]::after {
34  -webkit-padding-start: 30px;
35  color: #999;
36  content: attr(shortcutText);
37  float: right;
38}
39
40html[dir='rtl'] menu > [shortcutText]::after {
41  float: left;
42}
43