File tree Expand file tree Collapse file tree 3 files changed +34
-40
lines changed Expand file tree Collapse file tree 3 files changed +34
-40
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " iknow-entity-browser" ,
3
- "version" : " 0.5.6 " ,
3
+ "version" : " 0.5.7 " ,
4
4
"description" : " Visualizer for iKnow entities" ,
5
5
"main" : " gulpfile.babel.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 38
38
< i id ="dropChildrenButton " class ="ui icon-unlink "> </ i >
39
39
< i id ="removeButton " class ="ui icon-remove "> </ i >
40
40
</ div >
41
+ < div class ="controls ">
42
+ < label >
43
+ < i id ="exportCSV " class ="ui icon-share "> </ i >
44
+ </ label >
45
+ </ div >
41
46
< div class ="wrapper ">
42
- < div class ="controls ">
43
- < label >
44
- < i id ="exportCSV " class ="ui icon-share "> </ i >
45
- </ label >
46
- </ div >
47
- < h1 > Selected Nodes</ h1 >
48
- < div class ="wrapper ">
49
- < table >
50
- < thead >
51
- < tr >
52
- < th > ID</ th >
53
- < th > Label</ th >
54
- < th > Score</ th >
55
- < th > Frequency</ th >
56
- < th > Spread</ th >
57
- < th > Relation</ th >
58
- < th > Parent</ th >
59
- </ tr >
60
- </ thead >
61
- < tbody >
47
+ < table >
48
+ < thead >
49
+ < tr >
50
+ < th > ID</ th >
51
+ < th > Label</ th >
52
+ < th > Score</ th >
53
+ < th > Frequency</ th >
54
+ < th > Spread</ th >
55
+ < th > Relation</ th >
56
+ < th > Parent</ th >
57
+ </ tr >
58
+ </ thead >
59
+ < tbody >
62
60
63
- </ tbody >
64
- </ table >
65
- </ div >
61
+ </ tbody >
62
+ </ table >
66
63
</ div >
67
64
</ div >
68
65
< div id ="settings ">
Original file line number Diff line number Diff line change 1
1
@import " mixins" ;
2
2
@import " const" ;
3
3
4
+ $headerHeight : 36px ;
5
+
4
6
#table {
5
7
6
8
position : absolute ;
18
20
@include transform (translate (0 ,0 ));
19
21
}
20
22
23
+ > .controls {
24
+ position : relative ;
25
+ padding-left : 40px ;
26
+ top : 5px ;
27
+ }
28
+
21
29
> .wrapper {
22
30
23
31
overflow : auto ;
24
- height : 100% ;
25
- padding : 0 $defaultPadding $defaultPadding $defaultPadding ;
32
+ height : 100% ; /* to be compatible with old browsers */
33
+ height : calc (100% - #{$headerHeight } );
34
+ padding : $defaultPadding ;
26
35
box-sizing : border-box ;
27
36
28
- > .controls {
29
- position : relative ;
30
- padding-left : 30px ;
31
- top : 5px ;
32
- }
33
-
34
- > .wrapper {
35
-
36
- position : relative ;
37
-
38
- table {
39
- width : 100% ;
40
- }
41
-
37
+ table {
38
+ width : 100% ;
42
39
}
43
40
44
41
}
You can’t perform that action at this time.
0 commit comments