style fixes

pull/3094/head
LianaHus 6 years ago
parent 10ae199e5b
commit ea15863729
  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.' content = '// this line is added to create a gist. Empty file is not allowed.'
} }
if (error) cb(error) if (error) cb(error)
else {gi else {
ret[path] = { content } ret[path] = { content }
cb() cb()
} }

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

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

@ -107,8 +107,8 @@ export class TabProxy {
</div> </div>
` `
let tabsbar = yo` let tabsbar = yo`
<div class="d-flex border-bottom"> <div class="d-flex align-items-center" style="max-height: 35px; height: 100%">
<div class="m-1"> <div class="m-1 botder-bottom">
<span class="p-1"> <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-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> <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> </div>
${self._view.dropdown} ${self._view.dropdown}
<div class=${css.search}> <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"> <input spellcheck="false" type="text" class="${css.filter} form-control" onkeydown=${filter} placeholder="Search transactions">
</div> </div>
</div> </div>

Loading…
Cancel
Save