-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
multi-table support, meta-control wrapping, viewport parameter error fix
- Loading branch information
Showing
10 changed files
with
99 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
#param-button { | ||
min-width: 3%; | ||
margin: 0 0 10px 10px; | ||
} | ||
|
||
#about-button { | ||
min-width: 25%; | ||
margin: 0 10px 10px 5px; | ||
} | ||
|
||
|
||
|
||
.desktop { | ||
display: none; | ||
} | ||
|
||
.mobile { | ||
display: inline-block; | ||
} | ||
|
||
@media (min-width : 481px) { | ||
.desktop { | ||
display: inline-block; | ||
} | ||
.mobile { | ||
display: none; | ||
} | ||
#param-button { | ||
min-width: 130px; | ||
margin: 0 0 10px 0px; | ||
} | ||
|
||
#about-button { | ||
min-width: auto; | ||
margin: 0 10px 10px 5px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React, { Component } from "react"; | ||
import "./MetaControls.css"; | ||
|
||
class MetaControls extends Component { | ||
render() { | ||
return ( | ||
<div id="meta-control" className={this.props.class}> | ||
<button | ||
id="param-button" | ||
onClick={this.props.switchState} | ||
className="button" | ||
> | ||
{this.props.switch === true ? "Close" : "Parameters"} | ||
</button> | ||
<button | ||
id="about-button" | ||
onClick={this.props.handleAbout} | ||
className="button" | ||
> | ||
About | ||
</button> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default MetaControls; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
} | ||
} | ||
|
||
label input { | ||
.label100 { | ||
width: 100%; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters