mail/src/sass/views/_write.scss

85 lines
1.6 KiB
SCSS

.view-write {
margin: 0px;
padding: 0px;
color: $color-grey-dark;
overflow-y: hidden;
height: 100%;
@include respond-to(desktop) {
height: 600px;
}
input {
border: 0!important;
outline: none;
}
button {
border: 0!important;
}
.headers {
margin-top: 10px;
span {
color: $color-grey;
}
input {
margin-left: 0.3em;
}
}
.subject-box {
margin: 20px 0;
width: inherit;
border: 1px;
border-style: solid;
border-color: $color-grey-lighter;
height: em(44);
.subject-line {
float: left;
padding: 10px;
width: 80%;
color: $color-grey;
}
.subject {
font-weight: bold;
width: 100%;
}
.btn-attachment {
float: right;
padding: em(7.5) em(7.5) em(4) em(7.5);
margin: em(5);
color: $color-grey-lightest;
background-color: $color-blue;
}
}
.body {
line-height: 1.5em;
height: 68%;
overflow-y: scroll;
*[contentEditable] {
outline: 0px;
cursor: text;
}
.encrypt-preview {
font-size: 0.9em;
margin-top: 3em;
font-family: monospace;
color: $color-grey-light;
word-wrap: break-word;
}
}
.send-control {
position: absolute;
bottom: 15px;
right: 15px;
}
}