[ContactsExchanger] updated ContactsExchanger sources
authorMaciek Blim <m.blim@samsung.com>
Mon, 26 Aug 2013 10:34:57 +0000 (12:34 +0200)
committerMaciek Blim <m.blim@samsung.com>
Mon, 26 Aug 2013 10:34:57 +0000 (12:34 +0200)
Change-Id: Ia9c152e749e4f1cf6ddb913a24b8f30944a4f110

css/style.css
js/app.ui.js

index 110629c..bcd38ca 100644 (file)
 .comment {
        font-size: 16px;
        text-align: center;
-       line-height: 3px;
        color: black;
        padding: 0px;
        margin: 0px 0px 12px 0px;
+       white-space: nowrap;
+       width: 300px;
+       overflow: hidden;
+       text-overflow: ellipsis;
+       line-height: 20px;
 }
 
 #comment {
        color: black;
 }
 
+#comment-userName {
+       font-size: 24px;
+}
+
 #comment-name {
-       white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
        width: 90%;
        margin-left: 5%;
-       line-height: inherit;
        font-size: 1rem;
        font-weight: bold;
 }
 
 #comment-phone {
        color: #85837E;
-       white-space: nowrap;
-       width: 300px;
        line-height: 20px;
-       overflow: hidden;
-       text-overflow: ellipsis;
 }
+
 #accept-choose {
        width: auto;
 }
index c7ee8fa..013c7e0 100644 (file)
@@ -175,7 +175,8 @@ App.Ui = null;
                                .text(data.caller).html();
                        return '<div id="comment">'
                                + '<p class="comment">Your default contact</p>'
-                               + def_name
+                               + '<p class="comment" id="comment-userName">'
+                               + def_name + '</p>'
                                + '<p class="comment" id="comment-phone">'
                                + data.phoneNumber + '</p>'
                                + '</div>';