Small fixes

This commit is contained in:
RainLoop Team 2014-02-06 19:58:53 +04:00
parent 041bd1ae1b
commit 320f92b1a8
6 changed files with 18 additions and 8 deletions

View file

@ -132,7 +132,8 @@
width: 100%; width: 100%;
margin: 0px; margin: 0px;
padding: 8px; padding: 8px;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; /*font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;*/
font-family: Arial, Verdana, Geneva, sans-serif;
font-size: 13px; font-size: 13px;
line-height: 15px; line-height: 15px;

View file

@ -205,6 +205,10 @@ html.rl-no-preview-pane {
background-color: #f9f9f9; background-color: #f9f9f9;
/* &:nth-child(even) {
background-color: #f3f3f3;
}*/
.delimiter { .delimiter {
position: relative; position: relative;
display: block; display: block;

View file

@ -255,7 +255,7 @@ html.rl-no-preview-pane {
.bodyText { .bodyText {
color: #000; color: #000;
font-family: arial, sans-serif; font-family: Arial, Verdana, Geneva, sans-serif;
.b-text-part { .b-text-part {
@ -305,13 +305,13 @@ html.rl-no-preview-pane {
&.plain { &.plain {
padding: 15px; padding: 15px;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
pre { pre {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
background: #fff; background: #fff;
border: none; border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
} }
blockquote { blockquote {

View file

@ -240,7 +240,6 @@ Enables caching in the system'),
'custom_login_link' => array(''), 'custom_login_link' => array(''),
'custom_logout_link' => array(''), 'custom_logout_link' => array(''),
'allow_external_login' => array(false), 'allow_external_login' => array(false),
'in_iframe' => array(false),
'fast_cache_memcache_host' => array('127.0.0.1'), 'fast_cache_memcache_host' => array('127.0.0.1'),
'fast_cache_memcache_port' => array(11211), 'fast_cache_memcache_port' => array(11211),
'fast_cache_memcache_expire' => array(43200), 'fast_cache_memcache_expire' => array(43200),

View file

@ -6663,6 +6663,10 @@ html.rl-no-preview-pane .messageList.message-selected {
border: 0px solid transparent; border: 0px solid transparent;
z-index: 100; z-index: 100;
background-color: #f9f9f9; background-color: #f9f9f9;
/* &:nth-child(even) {
background-color: #f3f3f3;
}*/
} }
.messageList .b-content .messageListItem .delimiter { .messageList .b-content .messageListItem .delimiter {
position: relative; position: relative;
@ -7144,7 +7148,7 @@ html.rl-no-preview-pane .messageView.message-selected {
} }
.messageView .b-content .messageItem .bodyText { .messageView .b-content .messageItem .bodyText {
color: #000; color: #000;
font-family: arial, sans-serif; font-family: Arial, Verdana, Geneva, sans-serif;
} }
.messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html] { .messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html] {
height: 100%; height: 100%;
@ -7181,13 +7185,13 @@ html.rl-no-preview-pane .messageView.message-selected {
} }
.messageView .b-content .messageItem .bodyText .b-text-part.plain { .messageView .b-content .messageItem .bodyText .b-text-part.plain {
padding: 15px; padding: 15px;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
} }
.messageView .b-content .messageItem .bodyText .b-text-part.plain pre { .messageView .b-content .messageItem .bodyText .b-text-part.plain pre {
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
background: #fff; background: #fff;
border: none; border: none;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
} }
.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote { .messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote {
border-left: 2px solid blue; border-left: 2px solid blue;
@ -8694,7 +8698,9 @@ html.rl-started-trigger.no-mobile #rl-content {
width: 100%; width: 100%;
margin: 0px; margin: 0px;
padding: 8px; padding: 8px;
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace; /*font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;*/
font-family: Arial, Verdana, Geneva, sans-serif;
font-size: 13px; font-size: 13px;
line-height: 15px; line-height: 15px;
overflow: auto; overflow: auto;

File diff suppressed because one or more lines are too long