File tree Expand file tree Collapse file tree 6 files changed +11
-7
lines changed
validation/lib/components Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 62
62
.collection-view {
63
63
header {
64
64
padding : 12px 0 0 ;
65
- position : relative ;
66
- z-index : 1 ;
65
+ position : fixed ;
66
+ z-index : 4 ;
67
67
background : @pw ;
68
68
.row {
69
69
margin-left : 0 ;
94
94
}
95
95
}
96
96
97
+ .header-margin {
98
+ margin-top : 154px ; // size of header
99
+ }
100
+
97
101
.column {
98
102
overflow : auto ;
99
103
height : auto ;
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ class DocumentList extends React.Component {
236
236
*/
237
237
render ( ) {
238
238
return (
239
- < div >
239
+ < div className = "header-margin" >
240
240
< this . samplingMessage insertHandler = { this . handleOpenInsert . bind ( this ) } />
241
241
< div className = "column-container with-refinebar-and-message" >
242
242
< div className = "column main" >
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class CompassExplain extends React.Component {
35
35
*/
36
36
render ( ) {
37
37
return (
38
- < div className = "compass-explain" >
38
+ < div className = "compass-explain header-margin " >
39
39
< div className = "flexbox-fix" > </ div >
40
40
< div className = "column-container with-refinebar" >
41
41
< div className = "column main" >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class Indexes extends React.Component {
16
16
*/
17
17
render ( ) {
18
18
return (
19
- < div className = "index-container" >
19
+ < div className = "index-container header-margin " >
20
20
< div className = "flexbox-fix" > </ div >
21
21
< div className = "column-container" >
22
22
< div className = "column main" >
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ const Schema = React.createClass({
82
82
return < Field key = { field . name } { ...field } /> ;
83
83
} ) ;
84
84
return (
85
- < div >
85
+ < div className = "header-margin" >
86
86
< this . samplingMessage sampleSize = { this . state . schema ? this . state . schema . count : 0 } />
87
87
< div className = "column-container with-refinebar-and-message" >
88
88
< div className = "column main" >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class Validation extends React.Component {
62
62
this . props . viewMode : 'JSON' ;
63
63
64
64
return (
65
- < div className = "validation" >
65
+ < div className = "validation header-margin " >
66
66
< Grid fluid >
67
67
< StatusRow >
68
68
< ViewSwitcher
You can’t perform that action at this time.
0 commit comments