-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathbase.css
105 lines (87 loc) · 1.76 KB
/
base.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
.jp-VarInspector {
flex-direction: column;
overflow: auto;
font-size: var(--jp-ui-font-size1);
}
.jp-VarInspector-table {
font-family: monospace;
border-collapse: collapse;
margin: auto;
width: 100%;
color: var(--jp-content-font-color1);
padding: 0 4px;
}
.jp-VarInspector-table td,
.jp-VarInspector-table thead {
border: 1px solid;
border-color: var(--jp-layout-color2);
padding: 8px;
}
.jp-VarInspector-table tr:nth-child(even) {
background-color: var(--jp-layout-color1);
}
.jp-VarInspector-content tr:hover {
background-color: var(--jp-layout-color2);
}
.jp-VarInspector-table thead {
font-size: var(--jp-ui-font-size0);
text-align: center;
background-color: var(--jp-layout-color2);
color: var(--jp-ui-font-color1);
font-family: sans-serif;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
}
.jp-VarInspector-title {
font-size: var(--jp-ui-font-size1);
color: var(--jp-content-font-color1);
text-align: left;
padding: 4px 10px;
}
.filter-container {
display: flex;
flex-direction: column;
}
.filter-search-container {
display: flex;
align-items: center;
padding: 0 1rem;
}
.filter-input {
width: 20rem !important;
margin-left: 1rem;
}
.type-button {
color: var(--jp-ui-font-color0);
}
.name-button {
color: var(--jp-ui-font-color1);
}
.filter-list {
display: flex;
}
.jp-VarInspector-table-row-hidden {
display: none;
}
.jp-VarInspector-deleteButton {
display: flex;
justify-content: space-around;
width: 1em;
}
.jp-VarInspector-inspectButton {
display: flex;
justify-content: space-around;
width: 1em;
}
.jp-VarInspector-varName {
font-weight: 600;
}
.filter-button-content {
display: flex;
align-items: center;
gap: 0.5rem;
}
.icon-button {
cursor: pointer;
}