diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-07-15 17:16:09 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-07-15 17:16:09 -0700 |
commit | 9988e4739f2af029732c66d0bc5f03e6f43c5685 (patch) | |
tree | 5478f36bc705f7838a1c868ea81e72d5690aa815 /indra/newview | |
parent | 61e5164a41faf5d56919377ea00a6166b772a5a1 (diff) |
ACME-725 Add the connected text, 'Connect...' button, 'User another account...' button and 'Disconnect' button
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_social_account.xml | 61 |
1 files changed, 59 insertions, 2 deletions
diff --git a/indra/newview/skins/default/xui/en/panel_social_account.xml b/indra/newview/skins/default/xui/en/panel_social_account.xml index d1f188fbc8..639e601f9d 100644 --- a/indra/newview/skins/default/xui/en/panel_social_account.xml +++ b/indra/newview/skins/default/xui/en/panel_social_account.xml @@ -4,7 +4,64 @@ layout="topleft" name="panel_social_account"> - + <text + layout="topleft" + length="1" + follows="top|left" + font="SansSerif" + height="16" + left="9" + name="account_caption_label" + top="21" + type="string"> + You are connected to Facebook as: + </text> + <text + layout="topleft" + top_pad="2" + length="1" + follows="top|left" + font="SansSerif" + height="16" + left="9" + name="account_name_label" + type="string"> + [secondlife:/// Philippe Bossut] + </text> + <button + layout="topleft" + follows="left|top" + top_pad="9" + left="9" + visible="false" + height="0" + label="Connect..." + name="connect_btn" + width="210"> + </button> -</panel>
\ No newline at end of file + <button + layout="topleft" + follows="left|top" + top_pad="9" + left="9" + height="23" + label="Use another account..." + name="use_another_account_btn" + width="210"> + + </button> + + <button + layout="topleft" + follows="left|top" + top_pad="11" + left="9" + height="23" + label="Disconnect" + name="disconnect_btn" + width="210"> + + </button> +</panel> |