UNPKG

1.01 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-MenuBar, /* </DEPRECATED> */
12.lm-MenuBar {
13 outline: none;
14 -webkit-user-select: none;
15 -moz-user-select: none;
16 -ms-user-select: none;
17 user-select: none;
18}
19
20/* <DEPRECATED> */
21.p-MenuBar-content, /* </DEPRECATED> */
22.lm-MenuBar-content {
23 margin: 0;
24 padding: 0;
25 display: flex;
26 flex-direction: row;
27 list-style-type: none;
28}
29
30/* <DEPRECATED> */
31.p--MenuBar-item, /* </DEPRECATED> */
32.lm-MenuBar-item {
33 box-sizing: border-box;
34}
35
36/* <DEPRECATED> */
37.p-MenuBar-itemIcon,
38.p-MenuBar-itemLabel,
39/* </DEPRECATED> */
40.lm-MenuBar-itemIcon,
41.lm-MenuBar-itemLabel {
42 display: inline-block;
43}