Skip to content

Commit

Permalink
Merge pull request #2780 from ethereum/stAn
Browse files Browse the repository at this point in the history
replaced break-all to break-word
  • Loading branch information
yann300 committed Apr 28, 2020
2 parents bd0dabb + f933fba commit c4eaa6c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/app/panels/styles/terminal-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var css = csjs`
font-family : monospace;
}
.block {
word-break : break-all;
word-break : break-word;
white-space : pre-wrap;
line-height : 2ch;
padding : 1ch;
Expand All @@ -82,7 +82,7 @@ var css = csjs`
font-size : 14px;
}
.input {
word-break : break-all;
word-break : break-word;
outline : none;
font-family : monospace;
}
Expand Down
6 changes: 3 additions & 3 deletions src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ var css = csjs`
}
.dropdownpanel {
width: 100%;
word-break: break-all;
word-break: break-word;
}
.dropdownrawcontent {
padding: 2px;
word-break: break-all;
word-break: break-word;
}
.message {
padding: 2px;
word-break: break-all;
word-break: break-word;
}
.refresh {
display: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var css = csjs`
.result {
margin-top: 1%;
max-height: 300px;
word-break: break-all;
word-break: break-word;
}
.buttons {
margin: 1rem 0;
Expand Down
2 changes: 1 addition & 1 deletion src/app/tabs/styles/compile-tab-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const css = csjs`
.errorBlobs {
padding-left: 5px;
padding-right: 5px;
word-break: break-all;
word-break: break-word;
}
.storageLogo {
width: 20px;
Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/TreeView.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var css = csjs`
align-items: center;
}
.label_tv>span {
word-break: break-all;
word-break: break-word;
}
`

Expand Down

0 comments on commit c4eaa6c

Please sign in to comment.