-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.module.css
More file actions
129 lines (112 loc) · 1.85 KB
/
Copy pathApp.module.css
File metadata and controls
129 lines (112 loc) · 1.85 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
119
120
121
122
123
124
125
126
127
128
129
.app {
display: flex;
flex-direction: column;
height: 100vh;
}
.toolbar {
display: flex;
align-items: center;
gap: 6px;
padding: 5px 10px;
background: #f4f4f4;
border-bottom: 1px solid #ccc;
flex-wrap: wrap;
flex-shrink: 0;
}
.toolbarGroup {
display: flex;
align-items: center;
gap: 6px;
min-width: 0;
flex-wrap: nowrap;
}
/* Styled label acting as a file-open button */
.openBtn {
display: inline-block;
padding: 3px 10px;
background: #e8e8e8;
border: 1px solid #bbb;
cursor: pointer;
user-select: none;
}
.openBtn:hover {
background: #d4d4d4;
}
.sep {
width: 1px;
height: 20px;
background: #ccc;
margin: 0 2px;
flex-shrink: 0;
}
.numInput {
width: 65px;
}
.textInput {
width: 160px;
}
.filename {
color: #555;
font-style: italic;
max-width: 360px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.warning {
color: #c00;
font-weight: bold;
}
.tableWrapper {
flex: 1;
overflow: auto;
}
.statsFooter {
flex-shrink: 0;
min-width: 0;
padding: 3px 10px;
color: #666;
background: #f4f4f4;
border-top: 1px solid #ccc;
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
}
/* Sticky header requires position on th */
.tableWrapper thead th {
position: sticky;
top: 0;
z-index: 1;
}
.rowNum {
color: #aaa;
font-size: 11px;
user-select: none;
min-width: 38px;
text-align: right;
}
/* !important overrides tr:hover from global styles */
.selected td {
background: #b8d4ff !important;
}
.malformed td {
background: #ffcccc !important;
}
.spacerCell {
padding: 0 !important;
border: 0 !important;
background: transparent !important;
}
.cellEditor {
width: 100%;
font: inherit;
padding: 2px 4px;
border: 1px solid #7aa7e8;
}
.empty {
padding: 60px;
color: #aaa;
text-align: center;
}