Merge pull request #2780 from ethereum/stAn

replaced break-all to break-word
pull/1/head
yann300 5 years ago committed by GitHub
commit c4eaa6cbe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/app/panels/styles/terminal-styles.js
  2. 6
      src/app/tabs/debugger/debuggerUI/vmDebugger/DropdownPanel.js
  3. 2
      src/app/tabs/staticanalysis/styles/staticAnalysisView-styles.js
  4. 2
      src/app/tabs/styles/compile-tab-styles.js
  5. 2
      src/app/ui/TreeView.js

@ -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;
@ -82,7 +82,7 @@ var css = csjs`
font-size : 14px;
}
.input {
word-break : break-all;
word-break : break-word;
outline : none;
font-family : monospace;
}

@ -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;

@ -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;

@ -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;

@ -27,7 +27,7 @@ var css = csjs`
align-items: center;
}
.label_tv>span {
word-break: break-all;
word-break: break-word;
}
`

Loading…
Cancel
Save