1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-23 01:12:19 -05:00

add scrolling in writer

This commit is contained in:
Tankred Hase 2013-10-05 16:07:42 +02:00
parent 4d75fc3f1b
commit 9311d0c14c
4 changed files with 8 additions and 8 deletions

View File

@ -37,4 +37,8 @@ textarea {
// Basic layout
.main-app-view {
height: 100%;
::-webkit-scrollbar {
width: 0px;
}
}

View File

@ -8,10 +8,6 @@
background-image: linear-gradient(to right ,$color-grey-lightest 98%, darken($color-grey-lightest, 1%) 100%);
border-right: 1px solid $color-grey-light;
::-webkit-scrollbar {
width: 0px;
}
header {
cursor: pointer;

View File

@ -4,10 +4,6 @@
height: 100%;
color: $color-grey-dark;
::-webkit-scrollbar {
width: 0px;
}
.headers {
p {
margin: 0px;

View File

@ -2,6 +2,8 @@
margin: 0px;
padding: 12px;
color: $color-grey-dark;
height: 100%;
overflow-y: hidden;
.title {
text-align: center;
@ -60,6 +62,8 @@
.body {
line-height: 1.5em;
height: 60%;
overflow-y: scroll;
*[contentEditable] {
outline: 0px;