-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsublime.css
109 lines (94 loc) · 2.01 KB
/
sublime.css
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.sublime-modal {
width: 605px;
position: absolute;
top: 80px;
left: 50%;
right: auto;
bottom: auto;
border: 0px none;
background: rgb(235, 237, 239);
overflow: hidden;
border-radius: 0;
outline: none;
padding: 4px;
margin-right: -50%;
transform: translate(-50%, 0px);
}
.sublime-overlay {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: transparent;
}
.sublime-header {}
.sublime-content {
position: absolute;
top: 80px;
left: 50%;
right: auto;
bottom: auto;
margin-right: -50%;
transform: translate(-50%, 0);
border: 0px none;
background: rgb(48, 51, 56);
overflow: hidden;
-webkit-overflow-scrolling: touch;
outline: none;
padding: 10px;
min-width: 600px;
}
.sublime-container {
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
font-weight: lighter;
font-size: 14px;
}
.sublime-containerOpen {}
.sublime-input {
font-size: 14px;
border: 0px none;
width: 593px;
padding: 4px 6px;
outline: none;
border-radius: 2px;
background-color: rgb(255, 255, 255);
color: #202634;
}
.sublime-inputOpen {}
.sublime-inputFocused {}
.sublime-suggestionsContainer {}
.sublime-suggestionsContainerOpen {
overflow: hidden;
max-height: 500px;
margin-top: 4px
}
.sublime-suggestionsList {
list-style: none;
padding: 0;
margin-bottom: 0;
margin-top: 0
}
.sublime-suggestion {
color: #181a1f;
border-top: 0px none;
background-color: rgb(235, 237, 239);
padding: 6.5px 6px;
cursor: pointer;
}
.sublime-suggestion b {
font-weight: bold;
color: #111;
}
.sublime-suggestionFirst {}
.sublime-suggestionFirst.sublime-suggestionHighlighted,
.sublime-suggestionHighlighted {
color: #181a1f;
background-color: rgb(199, 203, 209)
}
.sublime-spinner {
border-top: 0.4em solid rgba(111, 111, 111, 0.4);
border-right: 0.4em solid rgba(111, 111, 111, 0.4);
border-bottom: 0.4em solid rgba(111, 111, 111, 0.4);
border-left: 0.4em solid rgb(130, 130, 130);
}