File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ export default class DataBrowserHeaderBar extends React.Component {
29
29
headerWidth
30
30
} = this . props ;
31
31
const elements = [
32
- < div key = "check" className = { [ styles . wrap , styles . check ] . join ( ' ' ) } style = { { paddingLeft : headerWidth , width : headerWidth + 30 } } >
32
+ < div key = "rowNumber" className = { styles . wrap } style = { { width : headerWidth , background : '#66637A' } } >
33
+ < div className = { [ styles . rowNumberColumn ] . join ( ' ' ) } > #</ div >
34
+ </ div > ,
35
+ < div key = "check" className = { [ styles . wrap , styles . check ] . join ( ' ' ) } style = { { width : 30 } } >
33
36
{ readonly ? null : (
34
37
< input type = "checkbox" checked = { selected } onChange = { e => selectAll ( e . target . checked ) } />
35
38
) }
Original file line number Diff line number Diff line change 108
108
109
109
}
110
110
}
111
+
112
+ .rowNumberColumn {
113
+ height : 30px ;
114
+ line-height : 31px ;
115
+ vertical-align : top ;
116
+ text-align : center ;
117
+ background-color : #66637A ;
118
+ color : white ;
119
+ font-size : 12px ;
120
+ font-weight : normal ;
121
+ }
You can’t perform that action at this time.
0 commit comments