mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
Updated: ckeditor 4.5.3, jquery 1.11.3, openpgpjs 1.2.0
OpenPGP decrypt fix + Small fixes
This commit is contained in:
parent
4deb083d7d
commit
87887373c1
370 changed files with 10805 additions and 5637 deletions
|
|
@ -69,6 +69,11 @@ html.csstransitions.rl-started-trigger.no-mobile .b-login-content .loginFormWrap
|
|||
animation: login-form-shake 400ms ease-in-out;
|
||||
}
|
||||
|
||||
&.no-mobile .b-login-content .errorAnimated .buttonLogin {
|
||||
color: #b94a48;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&.cssanimations.csstransitions.no-mobile .b-login-content .afterLoginHide {
|
||||
opacity: 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -610,7 +610,7 @@ html.cssanimations.rl-anim .messageList .line-loading {
|
|||
}
|
||||
|
||||
.draggablePlace {
|
||||
z-index: 10002;
|
||||
z-index: 10003;
|
||||
color: #fff;
|
||||
background-color: #333;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
|
|
|
|||
|
|
@ -388,8 +388,23 @@ html.rl-no-preview-pane {
|
|||
border-radius: 0;
|
||||
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
|
||||
display: block;
|
||||
max-width: 700px;
|
||||
word-wrap: break-word;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
code {
|
||||
display: inline;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
pre > code {
|
||||
padding: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -571,6 +586,6 @@ html.rl-message-fullscreen {
|
|||
}
|
||||
}
|
||||
|
||||
.nano-scrolllimit-top .buttonUp {
|
||||
.nano.scroller-shadow-top .buttonUp {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
html.ssm-state-mobile111 {
|
||||
|
||||
|
||||
&.rl-message-fullscreen {
|
||||
#rl-right {
|
||||
.RL-MailMessageView {
|
||||
|
|
@ -47,8 +47,8 @@ html.ssm-state-mobile111 {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#rl-right {
|
||||
.RL-MailMessageView {
|
||||
.messageView {
|
||||
|
|
@ -124,18 +124,18 @@ html.ssm-state-mobile111 {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#rl-sub-right {
|
||||
right:0px;
|
||||
left:auto;
|
||||
width:35px;
|
||||
}
|
||||
|
||||
|
||||
#rl-center {
|
||||
min-width: 0px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.b-compose.modal,
|
||||
.b-contacts-content.modal,
|
||||
.b-compose.modal,
|
||||
|
|
@ -144,7 +144,7 @@ html.ssm-state-mobile111 {
|
|||
width: 95%;
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
|
||||
.b-compose.modal {
|
||||
.b-header {
|
||||
max-height:130px;
|
||||
|
|
@ -154,10 +154,9 @@ html.ssm-state-mobile111 {
|
|||
.cke_top {
|
||||
max-height:30px;
|
||||
overflow:auto;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.b-advanced-search-content.modal {
|
||||
.control-label {
|
||||
width:60px;
|
||||
|
|
@ -166,5 +165,5 @@ html.ssm-state-mobile111 {
|
|||
margin-left:70px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
.nano:before, .nano:after {
|
||||
display: none;
|
||||
|
||||
.nano.scroller-shadow-top:before, .nano.scroller-shadow-bottom:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
|
@ -9,18 +9,14 @@
|
|||
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.fixIndex.nano:before, .fixIndex.nano:after {
|
||||
z-index: 98;
|
||||
}
|
||||
|
||||
.nano:before {
|
||||
.nano.scroller-shadow-top:before {
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
.nano:after {
|
||||
.nano.scroller-shadow-bottom:after {
|
||||
bottom: -10px;
|
||||
}
|
||||
|
||||
.nano.nano-scrolllimit-top:before, .nano.nano-scrolllimit-bottom:after {
|
||||
display: block;
|
||||
.nano.fixIndex.scroller-shadow-top:before, .nano.fixIndex.scroller-shadow-bottom:after {
|
||||
z-index: 98;
|
||||
}
|
||||
|
|
@ -15,6 +15,11 @@
|
|||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border-bottom: 1px solid #b6b6b6 !important;
|
||||
}
|
||||
|
||||
.cke_button_on {
|
||||
background: #ddd !important;
|
||||
}
|
||||
|
||||
.cke_button {
|
||||
|
|
@ -34,6 +39,7 @@
|
|||
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace !important;
|
||||
padding: 10px !important;
|
||||
padding-right: 0 !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.cke_plain {
|
||||
|
|
@ -93,12 +99,31 @@
|
|||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
pre, code {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background: #fff;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
font-family: Monaco, Menlo, Consolas, 'Courier New', monospace;
|
||||
display: block;
|
||||
word-wrap: break-word;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
code {
|
||||
display: inline;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
pre > code {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
opacity: 0;
|
||||
}
|
||||
|
||||
#rl-content {
|
||||
#rl-check {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue