-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathactive-tab-vscode.css
More file actions
118 lines (116 loc) · 2.21 KB
/
active-tab-vscode.css
File metadata and controls
118 lines (116 loc) · 2.21 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
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
/* Idea belong to Evondev */
:root {
--size: 5px;
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container {
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: transparent;
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container:before,
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container:after {
content: "";
width: var(--size);
height: var(--size);
position: absolute;
border: 2px solid;
border-image-slice: 1;
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container:before {
top: 0;
left: 0;
border-right: 0;
border-bottom: 0;
border-image-source: linear-gradient(-45deg, #4dd78a, #20e3b2);
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active.tab-border-top
> .tab-border-top-container:after {
right: 0;
bottom: 0;
border-top: 0;
border-left: 0;
border-image-source: linear-gradient(-45deg, #6a5af9, #d66efd);
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active:before,
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active:after {
content: "";
width: var(--size);
height: var(--size);
position: absolute;
border: 2px solid;
border-image-slice: 1;
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active:before {
left: 0;
bottom: 0;
border-top: 0;
border-right: 0;
border-image-source: linear-gradient(-45deg, #fc6c8f, #ffb86c);
}
.monaco-workbench
.part.editor
> .content
.editor-group-container
> .title
.tabs-container
> .tab.active:after {
top: 0;
right: 0;
border-left: 0;
border-bottom: 0;
border-image-source: linear-gradient(-45deg, #098dff, #2cccff);
}