Skip to content

Commit

Permalink
Added model summary to help button and style update in segment(alread…
Browse files Browse the repository at this point in the history
…y in model) (#351)

Co-authored-by: leoarc <roychpudhury.archit@gmail.com>
  • Loading branch information
leoarc and leoarc authored Apr 10, 2020
1 parent 23a4580 commit 8a0ad5e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,8 @@ function openHelp() {
<i class="material-icons">add</i>: This will open a dialogue box to upload the model. Make sure to fill in all the fields. The image size field expects a
single integer. <br>
<i class="material-icons">info</i>: This will display the details of previously uploaded models. <br>
<i class="material-icons">bug_report</i>: Bug report.
<i class="material-icons">bug_report</i>: Bug report. <br>
<i class="material-icons">subject</i>: This will display the summary of the current selected model.
`;
$UI.helpModal.open();
}
Expand Down
13 changes: 13 additions & 0 deletions apps/segment/segment.css
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,19 @@ ul.disabled {
#upload_panel .modalbox-content{
width: 30%;
}
.form-style [type=url]:focus,
.form-style input[type=text]:focus,
.form-style input[type=number]:focus
{
background-color: #ddd;
outline: none;
border:2px;
border-style: solid;
}
.form-style #modelupload,
.form-style #weightsupload{
cursor: pointer;
}
body{
color: black;
}

0 comments on commit 8a0ad5e

Please sign in to comment.