Small fixes

This commit is contained in:
RainLoop Team 2014-03-21 20:03:06 +04:00
parent 1c4ce1dfb2
commit 9d26fe049e
9 changed files with 241 additions and 207 deletions

View file

@ -300,6 +300,14 @@ html.rl-no-preview-pane {
div[data-x-div-type=body] { div[data-x-div-type=body] {
margin: 15px; margin: 15px;
} }
pre {
margin: 0px;
padding: 0px;
background: #fff;
border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
}
} }
&.plain { &.plain {

View file

@ -13,7 +13,8 @@
padding: 10px; padding: 10px;
padding-right: 0; padding-right: 0;
font-family: arial,sans-serif; /*font-family: arial, sans-serif;*/
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
font-size: 13px; font-size: 13px;
line-height: 16px; line-height: 16px;
color: #333; color: #333;
@ -49,8 +50,9 @@
} }
.cke_wysiwyg_div { .cke_wysiwyg_div {
padding: 10px !important; padding: 10px !important;
font-family: arial,sans-serif; font-family: arial, sans-serif;
font-size: 13px; font-size: 13px;
line-height: 16px; line-height: 16px;
color: #333; color: #333;
@ -69,6 +71,14 @@
} }
} }
pre {
margin: 0px;
padding: 0px;
background: #fff;
border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
}
blockquote { blockquote {
border: 0; border: 0;
border-left: solid 2px #444; border-left: solid 2px #444;

View file

@ -5696,7 +5696,9 @@ html.no-rgba .modal {
border: 0; border: 0;
padding: 10px; padding: 10px;
padding-right: 0; padding-right: 0;
font-family: arial, sans-serif; /*font-family: arial, sans-serif;*/
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
font-size: 13px; font-size: 13px;
line-height: 16px; line-height: 16px;
color: #333; color: #333;
@ -5744,6 +5746,13 @@ html.no-rgba .modal {
.cke_wysiwyg_div ol li { .cke_wysiwyg_div ol li {
list-style-type: decimal !important; list-style-type: decimal !important;
} }
.cke_wysiwyg_div pre {
margin: 0px;
padding: 0px;
background: #fff;
border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
}
.cke_wysiwyg_div blockquote { .cke_wysiwyg_div blockquote {
border: 0; border: 0;
border-left: solid 2px #444; border-left: solid 2px #444;
@ -7310,6 +7319,13 @@ html.rl-no-preview-pane .messageView.message-selected {
.messageView .b-content .messageItem .bodyText .b-text-part.html div[data-x-div-type=body] { .messageView .b-content .messageItem .bodyText .b-text-part.html div[data-x-div-type=body] {
margin: 15px; margin: 15px;
} }
.messageView .b-content .messageItem .bodyText .b-text-part.html pre {
margin: 0px;
padding: 0px;
background: #fff;
border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
}
.messageView .b-content .messageItem .bodyText .b-text-part.plain { .messageView .b-content .messageItem .bodyText .b-text-part.plain {
padding: 15px; padding: 15px;
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -10369,7 +10369,7 @@ function PopupsComposeOpenPgpViewModel()
if (!oPrivateKey) if (!oPrivateKey)
{ {
this.notification('No private key found for "' + this.from() + '" email!'); this.notification('No private key found for "' + this.from() + '" email');
bResult = false; bResult = false;
} }
} }
@ -10386,7 +10386,7 @@ function PopupsComposeOpenPgpViewModel()
var oKey = fFindPublicKey(sEmail); var oKey = fFindPublicKey(sEmail);
if (!oKey && bResult) if (!oKey && bResult)
{ {
self.notification('No public key found for "' + sEmail + '" email!'); self.notification('No public key found for "' + sEmail + '" email');
bResult = false; bResult = false;
} }

File diff suppressed because one or more lines are too long