mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1069965: add a visual separator between available and blocked contacts. r=paolo
This commit is contained in:
parent
085706c93f
commit
efd449bfb5
@ -175,6 +175,9 @@ loop.contacts = (function(_, mozL10n) {
|
||||
shownContacts.available ?
|
||||
shownContacts.available.sort(this.sortContacts).map(viewForItem) :
|
||||
null,
|
||||
shownContacts.blocked ?
|
||||
React.DOM.h3({className: "header"}, mozL10n.get("contacts_blocked_contacts")) :
|
||||
null,
|
||||
shownContacts.blocked ?
|
||||
shownContacts.blocked.sort(this.sortContacts).map(viewForItem) :
|
||||
null
|
||||
|
@ -175,6 +175,9 @@ loop.contacts = (function(_, mozL10n) {
|
||||
{shownContacts.available ?
|
||||
shownContacts.available.sort(this.sortContacts).map(viewForItem) :
|
||||
null}
|
||||
{shownContacts.blocked ?
|
||||
<h3 className="header">{mozL10n.get("contacts_blocked_contacts")}</h3> :
|
||||
null}
|
||||
{shownContacts.blocked ?
|
||||
shownContacts.blocked.sort(this.sortContacts).map(viewForItem) :
|
||||
null}
|
||||
|
@ -400,7 +400,7 @@ p {
|
||||
padding: 5px 10px;
|
||||
color: #888;
|
||||
margin: 0;
|
||||
border-bottom: 1px solid #CCC;
|
||||
border-top: 1px solid #CCC;
|
||||
background: #EEE;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -85,6 +85,9 @@ new_contact_button=New Contact
|
||||
## and click the 'New Contact' button to see the fields.
|
||||
new_contact_name_placeholder=Name
|
||||
new_contact_email_placeholder=Email
|
||||
|
||||
contacts_blocked_contacts=Blocked Contacts
|
||||
|
||||
## LOCALIZATION NOTE (add_contact_button):
|
||||
## This is the button to actually add the new contact
|
||||
## See https://people.mozilla.org/~dhenein/labs/loop-mvp-spec/#contacts
|
||||
|
Loading…
Reference in New Issue
Block a user