forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoverrideAceStyle.scss
More file actions
59 lines (51 loc) · 1.29 KB
/
overrideAceStyle.scss
File metadata and controls
59 lines (51 loc) · 1.29 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
.ace_mobile-menu,
.ace_tooltip.ace_doc-tooltip {
display: none !important;
}
.ace_editor {
&[data-font="Fira Code"] {
font-feature-settings:
"liga" on,
"calt" on;
-webkit-font-feature-settings:
"liga" on,
"calt" on;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
unicode-bidi: isolate;
}
}
.ace_tooltip {
background-color: rgb(255, 255, 255);
background-color: var(--secondary-color);
color: rgb(37, 37, 37);
color: var(--secondary-text-color);
max-width: 68%;
white-space: pre-wrap;
}
main .ace_editor {
textarea {
user-select: none !important;
pointer-events: none !important;
transform: translate(-100000px, -10000px) !important;
}
}
.ace-container {
height: 100%;
}
.ace_dark.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {
background-color: rgba(from var(--active-color) r g b / 0.3);
}
.ace_dark.ace_editor.ace_autocomplete .ace_completion-highlight {
color: var(--popup-active-color);
}
.ace_dark.ace_editor.ace_autocomplete {
border: 1px solid var(--popup-border-color);
box-shadow: 2px 3px 5px var(--box-shadow-color);
line-height: 1.4;
background: var(--primary-color);
color: var(--primary-text-color);
}
.ace_hidden-cursors .ace_cursor {
opacity: 0.8 !important;
}