-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
.custom-vscodestyles.css
145 lines (125 loc) · 3.82 KB
/
.custom-vscodestyles.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* Styles in here based on Wes Bos's Cobalt2 custom styles */
.monaco-shell {
font-family: "Operator Mono", "Fira code", "Inconsolata", monospace;
letter-spacing: .5px;
}
/*
Fat Cursor.
This overwrites the "underline thin" style since that is one that can be styled with CSS
So set your settings to:
"editor.cursorStyle": "underline-thin",
*/
.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
border-bottom-width: 0;
border-left-width: 3px;
border-left-style: solid;
background: transparent !important;
box-sizing: border-box;
}
/* This makes the dirty tab circle light yellow */
.vs-dark
.monaco-workbench
> .part.editor
> .content
> .one-editor-silo
> .container
> .title
.tabs-container
> .tab.dirty
.close-editor-action {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' height='16' width='16'%3E%3Ccircle fill='%23f7ecb5' cx='8' cy='8' r='4'/%3E%3C/svg%3E")
50% no-repeat;
}
.monaco-workbench > .editor > .content > .one-editor-silo {
border-top: 1px solid #15232d !important;
}
.one-editor-silo + .one-editor-silo {
border-left: 1px solid #15232d !important;
}
/*
This puts a thin yellow border around the found items like Sublime did it
*/
.monaco-editor .findMatch,
.monaco-editor .selectionHighlight {
border-top: 0.1px solid #f7ecb5;
border-bottom: 0.1px solid #f7ecb5;
background: transparent;
}
/* This accounts for larger font cutting off - bump up 3px */
.monaco-workbench>.activitybar>.content .monaco-action-bar .badge .badge-content {
top: 17px !important;
}
.vs-dark .monaco-panel-view .panel>.panel-header>.title {
font-weight: normal;
letter-spacing: 1px;
}
.vs-dark .monaco-workbench>.part.titlebar>.window-title {
/* color: #f7ecb5; */
}
.vs-dark .monaco-workbench .debug-actions-widget {
border-top: 1px solid #b15a91;
border-bottom: 1px solid #b15a91;
}
/* Styles in here based on Wes Bos's Cobalt2 custom styles */
.monaco-shell {
font-family: 'Operator Mono', 'Fira code', 'Inconsolata', monospace;
}
/*
Fat Cursor.
This overwrites the "underline thin" style since that is one that can be styled with CSS
So set your settings to:
"editor.cursorStyle": "underline-thin",
*/
.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
border-bottom-width: 0;
border-left-width: 3px;
border-left-style: solid;
background: transparent !important;
box-sizing: border-box;
}
/* This makes the dirty tab circle light yellow */
.vs-dark
.monaco-workbench
> .part.editor
> .content
> .one-editor-silo
> .container
> .title
.tabs-container
> .tab.dirty
.close-editor-action {
background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' height='16' width='16'%3E%3Ccircle fill='%23f7ecb5' cx='8' cy='8' r='4'/%3E%3C/svg%3E")
50% no-repeat;
}
.monaco-workbench > .editor > .content > .one-editor-silo {
border-top: 1px solid #15232d !important;
}
.one-editor-silo + .one-editor-silo {
border-left: 1px solid #15232d !important;
}
/*
This puts a thin yellow border around the found items like Sublime did it
*/
.monaco-editor .findMatch,
.monaco-editor .selectionHighlight {
border-top: 0.1px solid #f7ecb5;
border-bottom: 0.1px solid #f7ecb5;
background: transparent;
}
/* This accounts for larger font cutting off - bump up 3px */
.monaco-workbench > .activitybar > .content .monaco-action-bar .badge .badge-content {
top: 17px !important;
}
.vs-dark .monaco-panel-view .panel > .panel-header > .title {
font-weight: normal;
}
.vs-dark .monaco-workbench > .part.titlebar > .window-title {
color: #f7ecb5;
}
.vs-dark .monaco-workbench .debug-actions-widget {
border-top: 1px solid #b15a91;
border-bottom: 1px solid #b15a91;
}
.monaco-workbench .tabs-container .tab * {
font-style: italic;
}