style fixes

pull/1/head
LianaHus 6 years ago
parent b32ad8aa8c
commit d6d52eec51
  1. 2
      src/app/files/file-explorer.js
  2. 2
      src/app/files/styles/file-explorer-styles.js
  3. 5
      src/app/panels/styles/terminal-styles.js
  4. 4
      src/app/panels/tab-proxy.js
  5. 2
      src/app/panels/terminal.js

@ -432,7 +432,7 @@ fileExplorer.prototype.packageFiles = function (filesProvider, callback) {
content = '// this line is added to create a gist. Empty file is not allowed.'
}
if (error) cb(error)
else {gi
else {
ret[path] = { content }
cb()
}

@ -19,7 +19,7 @@ var css = csjs`
padding : 4px;
}
.newFile {
padding-right : 5px;
padding-right : 10px;
}
.newFile i {
cursor : pointer;

@ -13,7 +13,6 @@ var css = csjs`
.bar {
display : flex;
min-height : 3em;
padding : 2px;
z-index : 3;
}
.menu {
@ -35,7 +34,7 @@ var css = csjs`
}
.toggleTerminal {
margin-right : 20px;
margin-left : 20px;
margin-left : 4px;
font-size : 14px;
font-weight : bold;
cursor : pointer;
@ -138,7 +137,7 @@ var css = csjs`
display : flex;
justify-content : center;
align-items : center;
font-size : 10px;
font-size : 14px;
}
.dragbarHorizontal {
position : absolute;

@ -107,8 +107,8 @@ export class TabProxy {
</div>
`
let tabsbar = yo`
<div class="d-flex border-bottom">
<div class="m-1">
<div class="d-flex align-items-center" style="max-height: 35px; height: 100%">
<div class="m-1 botder-bottom">
<span class="p-1">
<i class="m-1 fa fa-plus" style="color: var(--text-dark)" onclick=${increase} aria-hidden="true" title="increase editor font size"></i>
<i class="m-1 fa fa-minus" style="color: var(--text-dark)" onclick=${decrease} aria-hidden="true" title="decrease editor font size"></i>

@ -143,7 +143,7 @@ class Terminal {
</div>
${self._view.dropdown}
<div class=${css.search}>
<i class="fa fa-search ${css.searchIcon} bg-light btn-light" aria-hidden="true"></i>
<i class="fa fa-search ${css.searchIcon} bg-light" aria-hidden="true"></i>
<input spellcheck="false" type="text" class="${css.filter} form-control" onkeydown=${filter} placeholder="Search transactions">
</div>
</div>

Loading…
Cancel
Save