-
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
/*
* SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
* SPDX-License-Identifier: AGPL-3.0-only
*/
.row {
display: contents;
}
.rowHeaderCell {
border-bottom: 1px solid var(--gray-a3);
}
.columnHeaderCell {
border-right: 1px solid var(--gray-a3);
}
.writableCell {
border: none;
background-color: transparent;
outline: none;
}
.recordCell {
border-bottom: 1px solid var(--gray-a2);
border-right: 1px solid var(--gray-a2);
}
.writableCell {
position: relative;
}
.writableCell::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: var(--radius-1);
outline-offset: -2px;
outline-width: 2px;
outline-style: solid;
outline-color: transparent;
pointer-events: none;
}
@media (any-hover: hover) {
.writableCell:hover {
background-color: var(--gray-a2);
}
}
.writableCell[aria-selected="true"] {
background-color: var(--accent-a2);
}
.writableCell[data-selection-start]::after {
outline-color: var(--accent-7);
}