Skip to content

Commit

Permalink
fix: improve furo cell outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed May 4, 2021
1 parent 9e76e21 commit f346fd8
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions mudkip/_static/mudkip_furo.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@

.cell_output {
border: none !important;
padding-left: 1.8em !important;
background: no-repeat
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='22' viewBox='0 0 24 24' width='22'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z' fill='%2372747eaa '/%3E%3C/svg%3E%0A") !important;
}

.cell_output .output.text_plain,
.cell_output .output.traceback,
.cell_output .output.stream,
.cell_output .output.stderr {
margin: -1rem 0 0 0;
}

.cell_output .output + .output.text_plain,
.cell_output .output + .output.traceback,
.cell_output .output + .output.stream,
.cell_output .output + .output.stderr {
margin: 0;
}

.cell_output .output .highlight {
background: none;
}

0 comments on commit f346fd8

Please sign in to comment.