UNPKG

2.25 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-CommandPalette, /* </DEPRECATED> */
12.lm-CommandPalette {
13 display: flex;
14 flex-direction: column;
15 -webkit-user-select: none;
16 -moz-user-select: none;
17 -ms-user-select: none;
18 user-select: none;
19}
20
21/* <DEPRECATED> */
22.p-CommandPalette-search, /* </DEPRECATED> */
23.lm-CommandPalette-search {
24 flex: 0 0 auto;
25}
26
27/* <DEPRECATED> */
28.p-CommandPalette-content, /* </DEPRECATED> */
29.lm-CommandPalette-content {
30 flex: 1 1 auto;
31 margin: 0;
32 padding: 0;
33 min-height: 0;
34 overflow: auto;
35 list-style-type: none;
36}
37
38/* <DEPRECATED> */
39.p-CommandPalette-header, /* </DEPRECATED> */
40.lm-CommandPalette-header {
41 overflow: hidden;
42 white-space: nowrap;
43 text-overflow: ellipsis;
44}
45
46/* <DEPRECATED> */
47.p-CommandPalette-item, /* </DEPRECATED> */
48.lm-CommandPalette-item {
49 display: flex;
50 flex-direction: row;
51}
52
53/* <DEPRECATED> */
54.p-CommandPalette-itemIcon, /* </DEPRECATED> */
55.lm-CommandPalette-itemIcon {
56 flex: 0 0 auto;
57}
58
59/* <DEPRECATED> */
60.p-CommandPalette-itemContent, /* </DEPRECATED> */
61.lm-CommandPalette-itemContent {
62 flex: 1 1 auto;
63 overflow: hidden;
64}
65
66/* <DEPRECATED> */
67.p-CommandPalette-itemShortcut, /* </DEPRECATED> */
68.lm-CommandPalette-itemShortcut {
69 flex: 0 0 auto;
70}
71
72/* <DEPRECATED> */
73.p-CommandPalette-itemLabel, /* </DEPRECATED> */
74.lm-CommandPalette-itemLabel {
75 overflow: hidden;
76 white-space: nowrap;
77 text-overflow: ellipsis;
78}
79
80.lm-close-icon {
81 border: 1px solid transparent;
82 background-color: transparent;
83 position: absolute;
84 z-index: 1;
85 right: 3%;
86 top: 0;
87 bottom: 0;
88 margin: auto;
89 padding: 7px 0;
90 display: none;
91 vertical-align: middle;
92 outline: 0;
93 cursor: pointer;
94}
95.lm-close-icon:after {
96 content: 'X';
97 display: block;
98 width: 15px;
99 height: 15px;
100 text-align: center;
101 color: #000;
102 font-weight: normal;
103 font-size: 12px;
104 cursor: pointer;
105}