mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Implementation of share contacts (begin)
This commit is contained in:
parent
5198dcfa20
commit
026839d864
17 changed files with 469 additions and 50 deletions
|
|
@ -7244,6 +7244,12 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull {
|
|||
float: left;
|
||||
padding: 0 8px 0 6px;
|
||||
}
|
||||
.b-contacts-content.modal .b-list-content .e-contact-item .shareParent {
|
||||
display: none;
|
||||
float: right;
|
||||
position: relative;
|
||||
margin: 2px 8px 0 5px;
|
||||
}
|
||||
.b-contacts-content.modal .b-list-content .e-contact-item .nameParent {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
|
@ -7266,6 +7272,9 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull {
|
|||
position: relative;
|
||||
margin: 0 5px;
|
||||
}
|
||||
.b-contacts-content.modal .b-list-content .e-contact-item.shared .shareParent {
|
||||
display: inline-block;
|
||||
}
|
||||
.b-contacts-content.modal .b-list-content .e-contact-item.checked {
|
||||
z-index: 101;
|
||||
}
|
||||
|
|
@ -7293,6 +7302,21 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull {
|
|||
.b-contacts-content.modal .b-view-content .content {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .contactValueStatic {
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
font-size: 18px;
|
||||
display: inline-block;
|
||||
padding: 5px 7px;
|
||||
color: #555;
|
||||
display: none;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content.read-only .contactValueStatic {
|
||||
display: inline-block;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content.read-only .contactValueInput {
|
||||
display: none;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .b-contact-view-desc {
|
||||
text-align: center;
|
||||
font-size: 24px;
|
||||
|
|
@ -7312,18 +7336,64 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull {
|
|||
}
|
||||
.b-contacts-content.modal .b-view-content .add-link {
|
||||
padding-top: 5px;
|
||||
padding-left: 7px;
|
||||
font-size: 12px;
|
||||
color: #aaa;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .contactValueStatic {
|
||||
font-size: 18px;
|
||||
display: none;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .contactValueInput {
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
border-color: #fff;
|
||||
font-size: 18px;
|
||||
width: 250px;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .contactValueInput:hover {
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
border-color: #ccc;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .contactValueInput:focus {
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
border-color: #999;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .hasError .contactValueInput {
|
||||
color: #ee5f5b;
|
||||
border: 1px solid #ee5f5b;
|
||||
border-color: #ee5f5b;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .e-read-only-sign {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 40px;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .e-share-sign {
|
||||
position: absolute;
|
||||
top: 60px;
|
||||
right: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content .button-save-contact {
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content.read-only .e-read-only-sign {
|
||||
display: inline-block;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content.read-only .e-share-sign {
|
||||
display: none;
|
||||
}
|
||||
.b-contacts-content.modal .b-view-content.read-only .button-save-contact {
|
||||
display: none;
|
||||
}
|
||||
.b-contacts-content .e-contact-item {
|
||||
position: relative;
|
||||
height: 55px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue