forked from fengqshanl/wasm-excel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
93 lines (93 loc) · 1.71 KB
/
index.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
.excel_row_col_div {
border-right: 0.1px solid #d1d1d1;
border-bottom: 0.1px solid #d1d1d1;
display:flex;
font-size:12px;
padding:1px;
height:15px;
min-width:60px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.excel_row_col_div:hover {
border-color: red;
}
.excel_row {
display:flex;
flex-direction:row;
flex-wrap:no-wrap;
}
#excel_top_border {
display:flex;
position: sticky;
top: 0;
flex-direction:row;
flex-wrap:no-wrap;
}
.excel_top_border_col {
border-top: 0.1px solid #d1d1d1;
border-right: 0.1px solid #d1d1d1;
border-bottom: 0.1px solid #d1d1d1;
display:flex;
font-size:12px;
padding:1px;
height:15px;
min-width:60px;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
justify-content:center;
align-items:center
}
#excel_third_parent_container {
width:100%;
display:flex;
flex-direction:column;
margin-left:3px;
margin-top:-1px
}
#excel_left_border {
border: 1px solid red;
display:flex;
width: 62px;
position: sticky;
left: 0;
flex-direction:column;
flex-wrap:no-wrap;
min-width:60px;
margin-top:-1px
}
.excel_left_border_col {
border-right: 0.1px solid #d1d1d1;
border-bottom: 0.1px solid #d1d1d1;
display:flex;
font-size:12px;
padding:1px;
height:15px;
width:60px;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
justify-content:center;
align-items:center"
}
#excel_secondary_parent_container {
width:100%;
display:flex;
flex-direction:row
}
#excel_parent_container {
width:90vw;
height:80vh;
overflow:auto;
display: inline-block;
}
.context_container {
left: 71px;
position: relative;
display: flex;
overflow: auto;
flex-direction: column;
top: 49px;
}