Merge pull request #1981 from cmgustavo/feature/modal-addressbook
Address book is opened in a modal window
This commit is contained in:
commit
2e3e3a55ae
5 changed files with 203 additions and 134 deletions
|
|
@ -1492,6 +1492,32 @@ a.text-warning:hover {color: #FD7262;}
|
|||
width: 50%;
|
||||
margin-left: -25%;
|
||||
}
|
||||
dialog.large, .reveal-modal.large {
|
||||
max-height: 70%;
|
||||
overflow-y: auto;
|
||||
width: 80%;
|
||||
margin-left: -40%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 40em) {
|
||||
dialog.large, .reveal-modal.large {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
padding: 1.25rem 0.25rem;
|
||||
}
|
||||
|
||||
dialog.large span.address-size, .reveal-modal.large span.address-size {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
dialog.large table, .reveal-modal.large table {
|
||||
margin: 0;
|
||||
box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
-o-box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 380px) {
|
||||
|
|
@ -1642,6 +1668,15 @@ a.text-warning:hover {color: #FD7262;}
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.addressbook-entry td {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.addressbook-disabled td, .addressbook-disabled td a {
|
||||
color: #8597A7;
|
||||
}
|
||||
|
||||
/*/////////////////////////////////////////////////*/
|
||||
|
||||
.session-expired {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue