Skip to content

Commit

Permalink
hide the new run button
Browse files Browse the repository at this point in the history
  • Loading branch information
briehl committed Jul 18, 2018
1 parent c6cb4aa commit 83d982e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions kbase-extension/static/kbase/custom/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -377,3 +377,25 @@ p {
.prompt {
display: none !important;
}

/*
* Jupyter 5.6.0 introduced a "run this cell" button that appears on mouseover.
* Cool though this is, it's a problem on app cells.
* This hunk of CSS should remove it until we can better work it in to our design.
*/
div.code_cell:hover .run_this_cell {
visibility: hidden !important;
}

div.code_cell:hover div.input_prompt.run_this_cell {
visibility: hidden !important;
}

div.code_cell div.input_prompt {
min-width: 0;
}

.run_this_cell {
padding: 0 !important;
width: 0 !important;
}

0 comments on commit 83d982e

Please sign in to comment.