UNPKG

1.54 kBCSSView Raw
1/*-----------------------------------------------------------------------------
2| Copyright (c) Jupyter Development Team.
3| Copyright (c) 2014-2017, PhosphorJS Contributors
4|
5| Distributed under the terms of the BSD 3-Clause License.
6|
7| The full license is in the file LICENSE, distributed with this software.
8|----------------------------------------------------------------------------*/
9
10/* <DEPRECATED> */
11.p-Menu, /* </DEPRECATED> */
12.lm-Menu {
13 z-index: 10000;
14 position: absolute;
15 white-space: nowrap;
16 overflow-x: hidden;
17 overflow-y: auto;
18 outline: none;
19 -webkit-user-select: none;
20 -moz-user-select: none;
21 -ms-user-select: none;
22 user-select: none;
23}
24
25/* <DEPRECATED> */
26.p-Menu-content, /* </DEPRECATED> */
27.lm-Menu-content {
28 margin: 0;
29 padding: 0;
30 display: table;
31 list-style-type: none;
32}
33
34/* <DEPRECATED> */
35.p-Menu-item, /* </DEPRECATED> */
36.lm-Menu-item {
37 display: table-row;
38}
39
40/* <DEPRECATED> */
41.p-Menu-item.p-mod-hidden,
42.p-Menu-item.p-mod-collapsed,
43/* </DEPRECATED> */
44.lm-Menu-item.lm-mod-hidden,
45.lm-Menu-item.lm-mod-collapsed {
46 display: none !important;
47}
48
49/* <DEPRECATED> */
50.p-Menu-itemIcon,
51.p-Menu-itemSubmenuIcon,
52/* </DEPRECATED> */
53.lm-Menu-itemIcon,
54.lm-Menu-itemSubmenuIcon {
55 display: table-cell;
56 text-align: center;
57}
58
59/* <DEPRECATED> */
60.p-Menu-itemLabel, /* </DEPRECATED> */
61.lm-Menu-itemLabel {
62 display: table-cell;
63 text-align: left;
64}
65
66/* <DEPRECATED> */
67.p-Menu-itemShortcut, /* </DEPRECATED> */
68.lm-Menu-itemShortcut {
69 display: table-cell;
70 text-align: right;
71}