Integration of Webui with Ray (#32)

* Initial integration of webui with ray

* Re-organized calling of build-webui in setup.py

* Fixed Lint comments on js code

* Fixed more lint issues

* Fixed various issues

* Fixed directory in services.py

* Small changes.

* Changes to match lint
This commit is contained in:
Wapaul1
2016-11-17 22:33:29 -08:00
committed by Robert Nishihara
parent 7babe0d22f
commit 08707f9408
16 changed files with 693 additions and 4 deletions
+84
View File
@@ -0,0 +1,84 @@
.GridContainer {
margin-top: 15px;
border: 1px solid #e0e0e0;
}
.GridRow {
margin-top: 15px;
display: flex;
flex-direction: row;
}
.GridColumn {
display: flex;
flex-direction: column;
flex: 1 1 auto;
}
.LeftSideGridContainer {
flex: 0 0 50px;
}
.BodyGrid {
width: 100%;
border: 1px solid #e0e0e0;
}
.evenRow,
.oddRow {
border-bottom: 1px solid #e0e0e0;
}
.oddRow {
background-color: #fafafa;
}
.cell,
.headerCell {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 .5em;
}
.cell {
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
display: flex;
flex-direction: row;
background-color: white;
}
.rowbutton:hover {
background-color: blue;
}
.rowbutton:hover *{
background-color: gold;
}
.headerCell {
font-weight: bold;
border-right: 1px solid #e0e0e0;
}
.centeredCell {
align-items: center;
text-align: center;
}
.table {
display: flex;
flex-direction: row;
}
.letterCell {
font-size: 1.5em;
color: #fff;
text-align: center;
}
.noCells {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 1em;
color: #bdbdbd;
}