-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles.css
107 lines (93 loc) · 1.92 KB
/
styles.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
.copilot-status-bar-item {
display: flex;
align-items: center;
justify-content: center;
& svg {
width: 18px;
height: 18px;
}
}
.copilot-status-bar-loading-item {
display: flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
animation: spin 1s linear infinite;
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
.copilot-inline-suggestion {
opacity: 0.4;
position: relative;
}
.copilot-inline-suggestion-box {
position: absolute;
left: 0;
z-index: 1000;
background: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
box-shadow: 0 0 0 1px var(--background-modifier-border);
padding: 0.3rem 0.5rem;
font-size: 0.9rem;
line-height: 1.5;
color: var(--text-primary);
min-width: 50px;
max-width: 70px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.copilot-modal-auth-box {
margin-bottom: 1rem;
line-height: 1.5;
}
.copilot-settings-note {
font-size: 0.9rem;
color: var(--text-muted);
padding-top: 0;
margin-top: 0;
}
.copilot-settings-hotkeys-container {
padding: 0.75em 0;
border-top: 1px solid var(--background-modifier-border);
display: flex;
flex-direction: column;
}
.copilot-settings-hotkeys-container .setting-item {
border-top: none !important;
}
.copilot-settings-save-button {
width: fit-content;
align-self: flex-end;
}
.copilot-settings-item-control {
position: relative;
}
.copilot-settings-suggestion-container {
top: 120%;
}
.copilot-settings-suggestion-item:hover {
background: var(--background-modifier-border);
}
.copilot-settings-suggestion-item-active {
background: var(--background-modifier-border);
}
.copilot-settings-exclude-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
cursor: pointer;
}
.copilot-settings-exclude-item-remove {
font-size: 1.2rem;
}