mirror of
https://github.com/moparisthebest/mail
synced 2024-11-13 20:55:05 -05:00
1d0526a6a0
* Remove recursive ng-includes/templates * Use DOMPurify to sanitize reader input * Remove ngSanitize * Wait to show signature error until body has been parsed * Fix scrollbar in iframe * Allow iframe scrolling on iOS * Move mail text body rendering to sandbox * Cleanup html files
196 lines
4.3 KiB
SCSS
196 lines
4.3 KiB
SCSS
.view-read {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: 10px 15px;
|
|
height: 100%;
|
|
width: 100%;
|
|
color: $color-grey-dark;
|
|
|
|
.headers {
|
|
flex-shrink: 0;
|
|
margin-bottom: 1em;
|
|
|
|
.subject {
|
|
font-size: $font-size-bigger;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
&:before {
|
|
color: $color-blue;
|
|
font-size: $font-size-smaller;
|
|
margin-right: 0.5em;
|
|
|
|
@include respond-to(desktop) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background-color: darken($color-white, 10%);
|
|
}
|
|
}
|
|
|
|
.date {
|
|
color: $color-grey-medium;
|
|
font-size: $font-size-small;
|
|
margin-top: 0.25em;
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
.mail-addresses {
|
|
.label {
|
|
cursor: pointer;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0.2em;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.controls {
|
|
float: right;
|
|
|
|
button {
|
|
margin-left: 7px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.attachments-wrapper {
|
|
flex-shrink: 0;
|
|
|
|
.attachments {
|
|
position: relative;
|
|
width: inherit;
|
|
border: 1px;
|
|
border-style: solid;
|
|
border-color: $color-grey-lighter;
|
|
min-height: em(44);
|
|
|
|
.attachment {
|
|
height: 32px;
|
|
border-radius: 16px;
|
|
vertical-align: middle;
|
|
margin: 5px 0 5px 5px;
|
|
padding: 5px 10px 5px 10px;
|
|
border: 1px;
|
|
border-style: solid;
|
|
border-color: $color-grey-lighter;
|
|
display: inline-block;
|
|
|
|
span {
|
|
font-size: 14px;
|
|
color: $color-grey-input;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-color: darken($color-white, 2%);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.seperator-line {
|
|
height: 1px;
|
|
color: $color-grey-lighter;
|
|
background-color: $color-grey-lighter;
|
|
}
|
|
}
|
|
|
|
.working-wrapper {
|
|
flex-grow: 1;
|
|
position: relative;
|
|
|
|
.working {
|
|
@include scut-vcenter-tt;
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 2em;
|
|
|
|
strong {
|
|
color: $color-grey-input;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|
|
|
|
.signature-status {
|
|
flex-shrink: 0;
|
|
padding: 0.9em;
|
|
text-align: center;
|
|
|
|
p {
|
|
color: $label-primary-back-color;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.display-images {
|
|
flex-shrink: 0;
|
|
padding: 0.9em;
|
|
text-align: center;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $color-blue;
|
|
}
|
|
}
|
|
|
|
.frame-wrapper {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
// allow scrolling on iOS
|
|
overflow: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
iframe {
|
|
flex-grow: 1;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.reply-selection {
|
|
.popover-content {
|
|
padding: 0;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
}
|
|
|
|
li {
|
|
border-bottom: 1px solid $color-grey-lighter;
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
background: none;
|
|
width: 100%;
|
|
border: 0;
|
|
outline: 0;
|
|
padding: 0.5em 1em 0.5em 0.3em;
|
|
color: $color-blue;
|
|
transition: background-color 0.3s;
|
|
text-align: left;
|
|
|
|
&:before {
|
|
display: inline-block;
|
|
width: 2.5em;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
&:hover,
|
|
&:focus {
|
|
background-color: darken($color-white, 2%);
|
|
}
|
|
}
|
|
}
|
|
} |