-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (63 loc) · 1.45 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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
.code-to-image-wrap {
position: relative;
}
.markdown-rendered pre:not(:hover) > button.code-to-image-button {
display: none;
}
.markdown-rendered button.code-to-image-button:hover {
background-color: var(--background-modifier-hover);
}
.markdown-rendered button.code-to-image-button {
margin: 6px;
padding: 6px 8px;
height: auto;
background-color: transparent;
box-shadow: none;
color: var(--text-muted);
font-size: var(--font-ui-smaller);
font-family: var(--font-interface);
position: absolute;
top: 0;
right: 40px;
}
.shared-as-image-modal {
padding: 0;
width: var(--modal-width);
max-height: var(--modal-max-height);
}
.cti-select-dropdown {
height: 1.75rem !important;
outline: none !important;
box-shadow: none !important;
}
/* Codemiorror */
.cm-editor.cm-focused {
outline: none !important;
}
.cm-activeLineGutter {
background-color: transparent !important;
}
.cm-editor .cm-lineNumbers {
background-color: transparent !important;
}
.cm-gutters {
background-color: transparent !important;
}
/*
* Font
*/
@font-face {
font-family: Comic Mono;
font-weight: normal;
src: url("https://cdn.jsdelivr.net/npm/[email protected]/ComicMono.ttf");
}
@font-face {
font-family: Comic Mono;
font-weight: bold;
src: url("https://cdn.jsdelivr.net/npm/[email protected]/ComicMono-Bold.ttf");
}