1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-23 09:22:23 -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 // Basic layout
.main-app-view { .main-app-view {
height: 100%; 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%); background-image: linear-gradient(to right ,$color-grey-lightest 98%, darken($color-grey-lightest, 1%) 100%);
border-right: 1px solid $color-grey-light; border-right: 1px solid $color-grey-light;
::-webkit-scrollbar {
width: 0px;
}
header { header {
cursor: pointer; cursor: pointer;

View File

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

View File

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