-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcellCursor.css
More file actions
42 lines (41 loc) · 896 Bytes
/
cellCursor.css
File metadata and controls
42 lines (41 loc) · 896 Bytes
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
table.table-data{
background: white;
border-collapse:collapse;
}
table.table-data tbody{
background-color: white;
}
table.table-data tbody td{
border:1px dotted lightgray;
}
table.table-data tr.area-t > td.area{
border-top: 1px solid #9ABAF1;
}
table.table-data tr.area-b > td.area{
border-bottom: 1px solid #9ABAF1;
}
table.table-data td.area.area-l{
border-left: 1px solid #9ABAF1;
}
table.table-data td.area.area-r{
border-right: 1px solid #9ABAF1;
}
table.table-data td.area.cursor,
table.table-data td.cursor{
border: 1px solid #9ABAF1;
background: #FAFAFF;
}
table.table-data.focus td.area.cursor,
table.table-data.focus td.cursor{
background: #FAFAFF;
border: 1px solid #4285F4;
}
table.table-data td.area{
background: #ECF3FF;
}
table.table-data thead td{
background: #F3F3F3;
border-left:1px solid #CCCCCC;
border-bottom:1px solid #CCCCCC;
text-align: center;
}