mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
OpenPGP (#53) Beta
Archive (Closes #110) Delete, Spam and Archive button in mail view when preview pane is off (Closes #72) Small fixes (Closes #101)
This commit is contained in:
parent
ab817e1396
commit
cae0cc2f77
45 changed files with 1390 additions and 172 deletions
|
|
@ -90,6 +90,7 @@ html.ssm-state-desktop-large {
|
|||
}
|
||||
|
||||
html.ssm-state-desktop {
|
||||
|
||||
#rl-left {
|
||||
width: @rlLeftWidth;
|
||||
}
|
||||
|
|
@ -99,15 +100,16 @@ html.ssm-state-desktop {
|
|||
}
|
||||
|
||||
#rl-sub-left {
|
||||
width: 350px;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
#rl-sub-right {
|
||||
left: 350px;
|
||||
left: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
html.ssm-state-tablet {
|
||||
|
||||
#rl-left {
|
||||
width: 150px;
|
||||
}
|
||||
|
|
@ -117,7 +119,7 @@ html.ssm-state-tablet {
|
|||
}
|
||||
|
||||
#rl-sub-left {
|
||||
width: 310px;
|
||||
width: 340px;
|
||||
|
||||
.messageList .inputSearch {
|
||||
width: 220px;
|
||||
|
|
@ -125,7 +127,7 @@ html.ssm-state-tablet {
|
|||
}
|
||||
|
||||
#rl-sub-right {
|
||||
left: 310px;
|
||||
left: 340px;
|
||||
}
|
||||
|
||||
.b-compose.modal {
|
||||
|
|
@ -147,7 +149,7 @@ html.ssm-state-mobile {
|
|||
}
|
||||
|
||||
#rl-sub-left {
|
||||
width: 310px;
|
||||
width: 340px;
|
||||
|
||||
.messageList .inputSearch {
|
||||
width: 220px;
|
||||
|
|
@ -155,7 +157,7 @@ html.ssm-state-mobile {
|
|||
}
|
||||
|
||||
#rl-sub-right {
|
||||
left: 310px;
|
||||
left: 340px;
|
||||
}
|
||||
|
||||
.b-compose.modal {
|
||||
|
|
|
|||
|
|
@ -63,26 +63,39 @@ select {
|
|||
.border-radius(@btnBorderRadius);
|
||||
}
|
||||
|
||||
.btn-group + .btn-group {
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
.border-radius(@btnBorderRadius);
|
||||
background-image: none;
|
||||
padding-left: 13px;
|
||||
padding-right: 13px;
|
||||
|
||||
&.disabled, &[disabled] {
|
||||
.opacity(75);
|
||||
.box-shadow(~"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)");
|
||||
}
|
||||
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
|
||||
&:active {
|
||||
// &:active {
|
||||
// .box-shadow(~"inset 0 2px 4px rgba(0,0,0,.3), 0 0 0 rgba(0,0,0,.1)");
|
||||
// }
|
||||
}
|
||||
|
||||
.btn.btn-dark-disabled-border {
|
||||
&.disabled, &[disabled] {
|
||||
border-color: #aaa;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group.open {
|
||||
.dropdown-toggle {
|
||||
//.btn-group.open {
|
||||
// .dropdown-toggle {
|
||||
// .box-shadow(~"inset 0 2px 4px rgba(0,0,0,.3), 0 0 0 rgba(0,0,0,.1)");
|
||||
}
|
||||
}
|
||||
// }
|
||||
//}
|
||||
|
||||
html.rgba.textshadow {
|
||||
.btn.btn-danger, .btn.btn-success, .btn.btn-primary {
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
@rlMessageDelimiterColor: #999;
|
||||
|
||||
// bootstart
|
||||
@btnBorderRadius: 2px;
|
||||
@btnBorderRadius: 3px;
|
||||
|
||||
@tooltipColor: #eee;
|
||||
@tooltipBackground: #333;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue