Fix style

This commit is contained in:
Florian Mounier
2015-04-17 11:30:53 +02:00
parent b03a3c836a
commit 5be66f7728
6 changed files with 20 additions and 10 deletions

View File

@@ -19,17 +19,21 @@ html, body
margin: 0
padding: 0
line-height: 1.2
body
white-space: nowrap
overflow-x: hidden
overflow-y: scroll
white-space: nowrap
::-webkit-scrollbar
background: $bg
width: .75em
height: .75em
::-webkit-scrollbar-thumb
background: rgba($fg, .1)
::-webkit-scrollbar-thumb:hover
background: rgba($fg, .15)
.terminal
outline: none

File diff suppressed because one or more lines are too long

View File

@@ -3020,19 +3020,23 @@ html, body {
html, body {
margin: 0;
padding: 0;
line-height: 1.2;
line-height: 1.2; }
body {
white-space: nowrap;
overflow-x: hidden;
overflow-y: scroll;
white-space: nowrap; }
overflow-y: scroll; }
::-webkit-scrollbar {
background: #110f13;
width: .75em;
height: .75em; }
width: .75em; }
::-webkit-scrollbar-thumb {
background: rgba(244, 234, 213, 0.1); }
::-webkit-scrollbar-thumb:hover {
background: rgba(244, 234, 213, 0.15); }
.terminal {
outline: none; }

View File

@@ -166,6 +166,7 @@
while (i--) {
div = this.document.createElement('div');
div.className = 'line';
div.textContent = ' ';
this.element.appendChild(div);
this.children.push(div);
}

File diff suppressed because one or more lines are too long

View File

@@ -79,6 +79,7 @@ class Terminal
while i--
div = @document.createElement('div')
div.className = 'line'
div.textContent = ' '
@element.appendChild(div)
@children.push(div)