forked from autocomplete-python/autocomplete-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautocomplete-python.less
More file actions
60 lines (51 loc) · 1.66 KB
/
Copy pathautocomplete-python.less
File metadata and controls
60 lines (51 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@import "ui-variables";
@import "../node_modules/kite-installer/styles/styles.less";
atom-text-editor[data-grammar="source python"], :host {
.autocomplete-suggestion-list.select-list.popover-list .suggestion-description-content {
white-space: pre-wrap;
}
}
@row-line-height: 2em;
@item-side-padding: .6em;
@line-height: 1.3;
autocomplete-python-suggestion {
width: auto;
display: inline-block;
min-width: 200px;
max-width: 800px;
color: @text-color;
padding: 5px 0;
padding-left: @item-side-padding;
padding-right: @item-side-padding;
min-height: @row-line-height;
line-height: @line-height;
background: darken(@overlay-background-color, 4%);
border-radius: 0 0 @component-border-radius @component-border-radius;
max-height: @font-size * @line-height * 20;
overflow-y: scroll;
white-space: pre-wrap;
font-family: @font-family;
}
.install-flow {
&[data-show-kite-logo="yes"], &[data-show-kite-logo="no"] {
.logo {
background-image: none;
color: white;
height: auto;
}
}
.install-flow-step.install-step .row.cta-row .logo {
background-image: url('atom://autocomplete-python/node_modules/kite-installer/styles/logo.png');
}
.welcome-to-kite {
.welcome-title .title-logo {
background-image: url('atom://autocomplete-python/node_modules/kite-installer/styles/smalllogo.png');
}
.description .description-screenshot {
background-image: url('atom://autocomplete-python/node_modules/kite-installer/styles/plotscreenshot.png');
}
}
.install-flow-step.install-step .screenshot {
background-image: url('atom://autocomplete-python/node_modules/kite-installer/styles/screenshot.png');
}
}