-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing UI for CSV Compatibility (#200)
* hacks to make it not dump error for CSV plot+explore. Doesn't filter correctly yet. * UI fixs Got rid of sort panel and sort by risk ratio * console plot + explore filter based on predicates * Adding confidence interval corrections * plot colors * outline boxes instead * color fix * colors, thresh, commas * back to grey * Risk ratio edge case fix * addressing comments
- Loading branch information
Showing
20 changed files
with
335 additions
and
101 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
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
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,64 @@ | ||
|
||
|
||
.itemsetHidden{ | ||
display:none; | ||
} | ||
|
||
.high-risk{ | ||
border-color: #D66F5E; | ||
border-style: solid; | ||
border-width: 2px; | ||
border-radius: 5px; | ||
} | ||
|
||
.med-risk{ | ||
border-color: #E2AA85; | ||
border-style: solid; | ||
border-width: 2px; | ||
border-radius: 5px; | ||
} | ||
|
||
.low-risk{ | ||
border-color: #ABC9AF; | ||
border-style: solid; | ||
border-width: 2px; | ||
border-radius: 5px; | ||
} | ||
|
||
|
||
element { | ||
} | ||
.active-schema { | ||
background-color: #ABC9AF !important; | ||
background-image: none !important; | ||
} | ||
|
||
.panel-brown { | ||
border-color: #DFCFB5; | ||
} | ||
.panel-brown > .panel-heading { | ||
background-image: none; | ||
background: #E1E5D5; | ||
border-color: #E1E5D5; | ||
} | ||
|
||
.panel-green { | ||
border-color: #DCEBD9; | ||
} | ||
.panel-green > .panel-heading { | ||
background-image: none; | ||
background: #DCEBD9; | ||
border-color: #DCEBD9; | ||
} | ||
|
||
.panel-gray { | ||
border-color: #dcddd7; | ||
} | ||
.panel-gray > .panel-heading { | ||
background-image: none; | ||
background: #dcddd7; | ||
border-color: #dcddd7; | ||
} | ||
|
||
|
||
|
Oops, something went wrong.