forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainPanel.css
More file actions
102 lines (85 loc) · 2.62 KB
/
mainPanel.css
File metadata and controls
102 lines (85 loc) · 2.62 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
/*
See here for defaults:
https://github.com/adazzle/react-data-grid/blob/master/themes
*/
body {
background-color: var(--vscode-editor-background);
}
.background {
/* this is simply to eliminate the body style that bootstrap.css forces on us */
position: absolute;
bottom: 0;
top: 0px;
left: 0px;
right: 0;
background-color: var(--vscode-editor-background);
}
.main-panel {
position: absolute;
bottom: 0;
top: 0px;
left: 0px;
right: 0;
font-size: var(--code-font-size);
font-family: var(--code-font-family);
margin: 10px;
background-color: var(--vscode-editor-background);
}
.main-panel .form-control {
height: auto;
padding: 0px;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
border-radius: 0px;
}
.main-panel .react-grid-Toolbar {
background-color: var(--vscode-editor-background);
border: none;
}
.main-panel .react-grid-Toolbar .btn {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
border-color: var(--vscode-badge-background);
}
.main-panel .react-grid-Main {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
outline: none;
}
.main-panel .react-grid-Grid {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
border-color: var(--vscode-badge-background);
}
.main-panel .react-grid-Canvas {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
}
.main-panel .react-grid-Header {
background-color: var(--vscode-notifications-background);
}
.main-panel .react-grid-HeaderCell {
background-color: var(--vscode-notifications-background);
color: var(--vscode-editor-foreground);
border-right-color: var(--vscode-badge-background);
border-bottom-color: var(--vscode-badge-background);
}
.main-panel .react-grid-Cell {
background-color: var(--vscode-editor-background);
color: var(--vscode-editor-foreground);
border-right-color: var(--vscode-badge-background);
border-bottom-color: var(--vscode-badge-background);
}
.main-panel .react-grid-Cell:hover {
background-color: var(--vscode-editor-selectionBackground);
}
.main-panel .react-grid-Row:hover {
background-color: var(--vscode-editor-selectionBackground);
}
.main-panel .react-grid-Row:hover .react-grid-Cell {
background-color: var(--vscode-editor-selectionBackground);
}
.main-panel .rdg-selected {
visibility: hidden;
}