From 6348e70daa113e8b3203de8fbc919d08c90d972e Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Thu, 1 Jul 2010 16:48:07 -0700 Subject: Initial checkin --- view/about.tpl | 14 ++ view/contact_selectors.php | 21 ++ view/contact_self.tpl | 9 + view/contact_template.tpl | 16 ++ view/contacts-top.tpl | 5 + view/cropbody.tpl | 56 ++++++ view/crophead.tpl | 6 + view/custom_tinymce.css | 35 ++++ view/default.php | 15 ++ view/dfrn_req_confirm.tpl | 17 ++ view/dfrn_request.tpl | 54 ++++++ view/head.tpl | 8 + view/intro_complete_eml.tpl | 28 +++ view/intros-top.tpl | 7 + view/intros.tpl | 21 ++ view/jot-header.tpl | 35 ++++ view/jot-plain.tpl | 15 ++ view/jot-save.tpl | 31 +++ view/jot.tpl | 18 ++ view/login.tpl | 25 +++ view/logout.tpl | 6 + view/profile-in-directory.tpl | 16 ++ view/profile.php | 66 +++++++ view/profile_edit.tpl | 91 +++++++++ view/profile_entry.tpl | 13 ++ view/profile_entry_default.tpl | 11 ++ view/profile_listing_header.tpl | 8 + view/profile_photo.tpl | 14 ++ view/profile_selectors.php | 32 +++ view/register-link.tpl | 1 + view/register.tpl | 15 ++ view/register_open_eml.tpl | 18 ++ view/settings.tpl | 49 +++++ view/settings_nick_set.tpl | 8 + view/settings_nick_unset.tpl | 13 ++ view/sidenote.tpl | 17 ++ view/silho.gif | Bin 0 -> 79 bytes view/style.css | 421 ++++++++++++++++++++++++++++++++++++++++ view/wall_item.tpl | 14 ++ 39 files changed, 1249 insertions(+) create mode 100644 view/about.tpl create mode 100644 view/contact_selectors.php create mode 100644 view/contact_self.tpl create mode 100644 view/contact_template.tpl create mode 100644 view/contacts-top.tpl create mode 100644 view/cropbody.tpl create mode 100644 view/crophead.tpl create mode 100644 view/custom_tinymce.css create mode 100644 view/default.php create mode 100644 view/dfrn_req_confirm.tpl create mode 100644 view/dfrn_request.tpl create mode 100644 view/head.tpl create mode 100644 view/intro_complete_eml.tpl create mode 100644 view/intros-top.tpl create mode 100644 view/intros.tpl create mode 100644 view/jot-header.tpl create mode 100644 view/jot-plain.tpl create mode 100644 view/jot-save.tpl create mode 100644 view/jot.tpl create mode 100644 view/login.tpl create mode 100644 view/logout.tpl create mode 100644 view/profile-in-directory.tpl create mode 100644 view/profile.php create mode 100644 view/profile_edit.tpl create mode 100644 view/profile_entry.tpl create mode 100644 view/profile_entry_default.tpl create mode 100644 view/profile_listing_header.tpl create mode 100644 view/profile_photo.tpl create mode 100644 view/profile_selectors.php create mode 100644 view/register-link.tpl create mode 100644 view/register.tpl create mode 100644 view/register_open_eml.tpl create mode 100644 view/settings.tpl create mode 100644 view/settings_nick_set.tpl create mode 100644 view/settings_nick_unset.tpl create mode 100644 view/sidenote.tpl create mode 100644 view/silho.gif create mode 100644 view/style.css create mode 100644 view/wall_item.tpl (limited to 'view') diff --git a/view/about.tpl b/view/about.tpl new file mode 100644 index 000000000..fa3d49cb7 --- /dev/null +++ b/view/about.tpl @@ -0,0 +1,14 @@ + +
+

+Tell us about yourself. +

+ + + +
+
+ +
+
+ diff --git a/view/contact_selectors.php b/view/contact_selectors.php new file mode 100644 index 000000000..186a50e7a --- /dev/null +++ b/view/contact_selectors.php @@ -0,0 +1,21 @@ +"; + + $r = q("SELECT `id` FROM `profile` WHERE `uid` = %d", + intval($_SESSION['uid'])); + + if(count($r)) { + foreach($r as $rr) { + $selected = (($rr['profile-name'] == $current) ? " selected=\"selected\" " : ""); + $o .= ""; + } + } + $o .= ""; + return $o; +} + diff --git a/view/contact_self.tpl b/view/contact_self.tpl new file mode 100644 index 000000000..7f5467b39 --- /dev/null +++ b/view/contact_self.tpl @@ -0,0 +1,9 @@ + +$name + +

$name

+

+This is you. +

+ +
\ No newline at end of file diff --git a/view/contact_template.tpl b/view/contact_template.tpl new file mode 100644 index 000000000..c590ba3d1 --- /dev/null +++ b/view/contact_template.tpl @@ -0,0 +1,16 @@ + +
+
+ $name +
+
$name
+
+
+Edit contact +Block contact +Delete contact +
+
+ + +
\ No newline at end of file diff --git a/view/contacts-top.tpl b/view/contacts-top.tpl new file mode 100644 index 000000000..20740ad87 --- /dev/null +++ b/view/contacts-top.tpl @@ -0,0 +1,5 @@ +

Contacts

+ +
+$hide_text +
diff --git a/view/cropbody.tpl b/view/cropbody.tpl new file mode 100644 index 000000000..03baf61e7 --- /dev/null +++ b/view/cropbody.tpl @@ -0,0 +1,56 @@ +

Crop Image

+

+Please adjust the image cropping for optimum viewing. +

+
+ +
+
+
+
+ + + +
+ + + + + + + + + +
+ +
+ +
diff --git a/view/crophead.tpl b/view/crophead.tpl new file mode 100644 index 000000000..2bfb7abe0 --- /dev/null +++ b/view/crophead.tpl @@ -0,0 +1,6 @@ + + + + + + diff --git a/view/custom_tinymce.css b/view/custom_tinymce.css new file mode 100644 index 000000000..48621c42c --- /dev/null +++ b/view/custom_tinymce.css @@ -0,0 +1,35 @@ +body, td, pre {color:#000; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; margin:8px;} +body {background:#FFF;} +body.mceForceColors {background:#FFF; color:#000;} +h1 {font-size: 2em} +h2 {font-size: 1.5em} +h3 {font-size: 1.17em} +h4 {font-size: 1em} +h5 {font-size: .83em} +h6 {font-size: .75em} +.mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} +a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(img/items.gif) no-repeat 0 0;} +td.mceSelected, th.mceSelected {background-color:#3399ff !important} +img {border:0;} +table {cursor:default} +table td, table th {cursor:text} +ins {border-bottom:1px solid green; text-decoration: none; color:green} +del {color:red; text-decoration:line-through} +cite {border-bottom:1px dashed blue} +acronym {border-bottom:1px dotted #CCC; cursor:help} +abbr {border-bottom:1px dashed #CCC; cursor:help} + +/* IE */ +* html body { +scrollbar-3dlight-color:#F0F0EE; +scrollbar-arrow-color:#676662; +scrollbar-base-color:#F0F0EE; +scrollbar-darkshadow-color:#DDD; +scrollbar-face-color:#E0E0DD; +scrollbar-highlight-color:#F0F0EE; +scrollbar-shadow-color:#F0F0EE; +scrollbar-track-color:#F5F5F5; +} + +img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} +font[face=mceinline] {font-family:inherit !important} diff --git a/view/default.php b/view/default.php new file mode 100644 index 000000000..25d8ea1dc --- /dev/null +++ b/view/default.php @@ -0,0 +1,15 @@ + + + + <?php echo $page['title'] ?> + + + +
+ + +
+ + + + diff --git a/view/dfrn_req_confirm.tpl b/view/dfrn_req_confirm.tpl new file mode 100644 index 000000000..1914e4c0e --- /dev/null +++ b/view/dfrn_req_confirm.tpl @@ -0,0 +1,17 @@ + +

+Welcome home $username. +
+Please confirm your introduction to $dfrn_url. + +

+
+ + + +$aes_allow + +
+ +
+
\ No newline at end of file diff --git a/view/dfrn_request.tpl b/view/dfrn_request.tpl new file mode 100644 index 000000000..df935ae2a --- /dev/null +++ b/view/dfrn_request.tpl @@ -0,0 +1,54 @@ + +

Personal Introduction

+ +

+You may introduce yourself to this member if you have a valid DFRN profile. +

+ +
+ +
+ + +
+
+ +

+Please answer the following: +

+ +
+ +

+Do I know you? +

+ +
+ + + +
+
+
+ + + +
+
+ + +

+Add a personal note: +

+
+ +
+ + +
+ +
+ + +
+
diff --git a/view/head.tpl b/view/head.tpl new file mode 100644 index 000000000..3a7bcc604 --- /dev/null +++ b/view/head.tpl @@ -0,0 +1,8 @@ + + + + + + diff --git a/view/intro_complete_eml.tpl b/view/intro_complete_eml.tpl new file mode 100644 index 000000000..414caaa7a --- /dev/null +++ b/view/intro_complete_eml.tpl @@ -0,0 +1,28 @@ + +Dear $username, + + An approval was recently processed at $sitename for a personal +introduction you initiated. + + You are now connected to '$fn' at '$dfrn_url'. + +Your access privileges to this profile MAY have been elevated. Please +view their profile from within your $sitename "Contacts" page going +forward. Should you visit the URL without going through $sitename, +you will only see this person's public profile. + +At $sitename, "relationships" are allowed to be one sided. Be advised +that your communications with this person may be partially limited +if they do not request (and you accept) a reciprocal relationship. + +You may now send them directed messages, and you also may have the +ability to receive non-public status messages and view otherwise +hidden profiles. Should this turn into a mutual relationship you +will both have this level of access. + + +Sincerely, + + $sitename Administrator + + diff --git a/view/intros-top.tpl b/view/intros-top.tpl new file mode 100644 index 000000000..71007dbf6 --- /dev/null +++ b/view/intros-top.tpl @@ -0,0 +1,7 @@ +

Pending Introductions / Notifications

+ +
+$hide_text +
+ + diff --git a/view/intros.tpl b/view/intros.tpl new file mode 100644 index 000000000..75739005b --- /dev/null +++ b/view/intros.tpl @@ -0,0 +1,21 @@ + +
+
+

Notification type: Introduction

+
$fullname
+fullname +
Presumably known to you? $knowyou
+
$note
+
+ +
+ + + +
+
+ + +
+
+
diff --git a/view/jot-header.tpl b/view/jot-header.tpl new file mode 100644 index 000000000..e5607b6bb --- /dev/null +++ b/view/jot-header.tpl @@ -0,0 +1,35 @@ + + + + \ No newline at end of file diff --git a/view/jot-plain.tpl b/view/jot-plain.tpl new file mode 100644 index 000000000..e3d2fa687 --- /dev/null +++ b/view/jot-plain.tpl @@ -0,0 +1,15 @@ + +
+

+What's on your mind? +

+
+ + + +
+
+ +
+ +
diff --git a/view/jot-save.tpl b/view/jot-save.tpl new file mode 100644 index 000000000..6de692e07 --- /dev/null +++ b/view/jot-save.tpl @@ -0,0 +1,31 @@ + +
+

+What's on your mind? +

+ + +
+
+ + + + + + + + + + +
+ + + + +
+
+ + +
+
+
\ No newline at end of file diff --git a/view/jot.tpl b/view/jot.tpl new file mode 100644 index 000000000..f005ab78e --- /dev/null +++ b/view/jot.tpl @@ -0,0 +1,18 @@ + +
+

+What's on your mind? +

+ + + + + + +
+
+ + +
+
+ diff --git a/view/login.tpl b/view/login.tpl new file mode 100644 index 000000000..2ce7241fc --- /dev/null +++ b/view/login.tpl @@ -0,0 +1,25 @@ + + + +
+ + +
+
+
+ + +
+
+ +
+
+ +
+
+ + diff --git a/view/logout.tpl b/view/logout.tpl new file mode 100644 index 000000000..9a6c1d763 --- /dev/null +++ b/view/logout.tpl @@ -0,0 +1,6 @@ +
+
+ + +
+
diff --git a/view/profile-in-directory.tpl b/view/profile-in-directory.tpl new file mode 100644 index 000000000..a120a24c1 --- /dev/null +++ b/view/profile-in-directory.tpl @@ -0,0 +1,16 @@ +

+Publish this profile in site directory? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/profile.php b/view/profile.php new file mode 100644 index 000000000..54087404a --- /dev/null +++ b/view/profile.php @@ -0,0 +1,66 @@ + + + + <?php echo $page['title']; ?> + + + +
+ + +
+ +
+ + + + diff --git a/view/profile_edit.tpl b/view/profile_edit.tpl new file mode 100644 index 000000000..25fc6fd4e --- /dev/null +++ b/view/profile_edit.tpl @@ -0,0 +1,91 @@ +

Edit Profile Details

+ +$default + +
+
+ +
+ +
*
+
+
+ +
+ + +
+
+ +
+ +$gender +
+
+ + +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ + +
+ +$marital +
+
+ +
+ + +
+
+ +$profile_in_dir + +
+

+Tell us about yourself. +

+ + + +
+
+
+ + +
+ +
+
+ + + + \ No newline at end of file diff --git a/view/profile_entry.tpl b/view/profile_entry.tpl new file mode 100644 index 000000000..9b3be79d3 --- /dev/null +++ b/view/profile_entry.tpl @@ -0,0 +1,13 @@ + +
+
+Profile Image +
+
$profile_name
+
+Edit Profile +Delete Profile +
+
+
+ diff --git a/view/profile_entry_default.tpl b/view/profile_entry_default.tpl new file mode 100644 index 000000000..bd74b9c54 --- /dev/null +++ b/view/profile_entry_default.tpl @@ -0,0 +1,11 @@ + +
+
+Profile Image +
+
$profile_name
+
+Edit Profile +
+
+
diff --git a/view/profile_listing_header.tpl b/view/profile_listing_header.tpl new file mode 100644 index 000000000..ce052658d --- /dev/null +++ b/view/profile_listing_header.tpl @@ -0,0 +1,8 @@ +

Profiles

+

+Click photo to change profile image or use controls to edit/delete profile details. +

+ + diff --git a/view/profile_photo.tpl b/view/profile_photo.tpl new file mode 100644 index 000000000..0bd5d7b1b --- /dev/null +++ b/view/profile_photo.tpl @@ -0,0 +1,14 @@ +

Upload Profile Photo

+ +
+ +
+ + +
+ +
+ +
+ +
\ No newline at end of file diff --git a/view/profile_selectors.php b/view/profile_selectors.php new file mode 100644 index 000000000..c6e64403a --- /dev/null +++ b/view/profile_selectors.php @@ -0,0 +1,32 @@ +"; + foreach($select as $selection) { + $selected = (($selection == $current) ? ' selected="selected" ' : ''); + $o .= ""; + } + $o .= ''; + return $o; +} + + +function marital_selector($current="",$suffix="") { + $select = array('','Single', 'Lonely', 'Available', 'Unavailable', 'Dating', 'Unfaithful', 'Sex Addict', 'Friends', 'Friends/Benefits', 'Casual', 'Engaged', 'Married', 'Partners', 'Cohabiting', 'Happy', 'Not Looking', 'Swinger', 'Betrayed', 'Separated', 'Unstable', 'Divorced', 'Widowed', 'Uncertain', 'Complicated', 'Don\'t care', 'Ask me' ); + + $o .= "'; + return $o; +} + + +//function birthday_selector($current = '') { +// if($current && (strlen($current) +//} \ No newline at end of file diff --git a/view/register-link.tpl b/view/register-link.tpl new file mode 100644 index 000000000..7f3fca4d6 --- /dev/null +++ b/view/register-link.tpl @@ -0,0 +1 @@ + Register diff --git a/view/register.tpl b/view/register.tpl new file mode 100644 index 000000000..f3cff3a1b --- /dev/null +++ b/view/register.tpl @@ -0,0 +1,15 @@ + +
+ $registertext +
+
+
+
+
+ +
+
diff --git a/view/register_open_eml.tpl b/view/register_open_eml.tpl new file mode 100644 index 000000000..bbfdc9940 --- /dev/null +++ b/view/register_open_eml.tpl @@ -0,0 +1,18 @@ + +Dear $username, + Thank you for registering at $sitename. Your account has been created. +The login details are as follows: + + +Site Location: $siteurl +Login Name: $email +Password: $password + +You may change your password from your account settings page after logging in. + +Thank you and welcome to $sitename. + +Sincerely, + $sitename Administrator + + diff --git a/view/settings.tpl b/view/settings.tpl new file mode 100644 index 000000000..d73e45a41 --- /dev/null +++ b/view/settings.tpl @@ -0,0 +1,49 @@ +

Account Settings

+ +
+ +
+ + +
+
+ +
+ + +
+
+ +$nickname_block + + +
+ +$zoneselect +
+
+ +
+

+Leave password fields blank unless changing +

+ + +
+
+ +
+ + +
+
+ + +
+ +
+ +
+ + + diff --git a/view/settings_nick_set.tpl b/view/settings_nick_set.tpl new file mode 100644 index 000000000..e25aa42ce --- /dev/null +++ b/view/settings_nick_set.tpl @@ -0,0 +1,8 @@ + +
+

+Your nickname cannot be changed. It is set to $nickname
+Your profile is located at $baseurl/profile/$nickname +

+
+
diff --git a/view/settings_nick_unset.tpl b/view/settings_nick_unset.tpl new file mode 100644 index 000000000..0ea99d68b --- /dev/null +++ b/view/settings_nick_unset.tpl @@ -0,0 +1,13 @@ + +
+

+Setting a nickname will allow a friendly profile URL such as +$baseurl/profile/nickname +Once set, it can never be changed. Only letter, numbers, spaces and +underscore are allowed and the nickname must start with a space. +

+ + +
+
+ diff --git a/view/sidenote.tpl b/view/sidenote.tpl new file mode 100644 index 000000000..dbc120cc0 --- /dev/null +++ b/view/sidenote.tpl @@ -0,0 +1,17 @@ + +
+

+Write something +

+
+ + + + +
+
+ + +
+
+ diff --git a/view/silho.gif b/view/silho.gif new file mode 100644 index 000000000..048bdebc0 Binary files /dev/null and b/view/silho.gif differ diff --git a/view/style.css b/view/style.css new file mode 100644 index 000000000..cd1548451 --- /dev/null +++ b/view/style.css @@ -0,0 +1,421 @@ + +body { + background: #EEEEEE; + font-family: verdana, sans-serif; + font-size: 1.0em; + margin-left: 10px; +} + +img.photo { + border: 1px solid #AAAAAA; + padding: 5px; + background: #FFFFFF; +} + +aside { + position: absolute; + left: 0px; + top: 60px; + right: 250px; + width: 250px; + margin-left: 20px; + margin-right: 0px; + font-size: 0.9em; +} +section { + position: absolute; + left: 270px; + top: 60px; + margin-left: 20px; + margin-right: 20px; +} +h1 { + font-size: 1.6em; +} + +nav { + position: absolute; + top: 0px; + height: 30px; + left: 0px; + right: 0px; + margin-top: 20px; +} + +footer { + position: absolute; + left: 0px; + right: 0px; + bottom: 0px; + margin: 20px 20px 20px 20px; +} +.fn { + font-size: 1.4em; + margin-bottom: 10px; + line-height: 1.5; +} + +.powered { + font-size: 0.6em; +} +.error-message { + color: #FF0000; + font-size: 1.1em; + border: 1px solid #FF8888; + background-color: #FFEEEE; + padding: 10px; +} +.nav-link { + float: right; + margin-left: 0px; + margin-right: 10px; + padding: 5px; + border: 1px solid black; + background: #DDDDFF; + font-size: 0.7em; + font-weight: bold; + +} + +.nav-commlink { + float: left; + margin-left: 10px; + margin-right: 0px; + padding: 5px; + border: 1px solid black; + background: #DDDDFF; + font-size: 0.7em; + font-weight: bold; +} +#nav-end { + clear: both; +} + +.login-extra-links { + font-size: 0.7em; +} + +#profile-extra-links { + margin-top: 20px; + margin-bottom: 20px; + margin-left: 20px; + margin-right: 20px; +} + +#label-register-name, #label-register-email { + float: left; + width: 350px; + margin-top: 10px; +} + +#register-name, #register-email { + float: left; + margin-top: 10px; +} + +#register-name-wrapper, #register-email-wrapper, #register-submit-wrapper { + clear: both; +} + +#register-submit-button { + margin-top: 10px; + margin-left: 350px; +} + +#label-login-name, #label-login-password, #login-extra-filler { + float: left; + width: 150px; + margin-bottom: 20px; +} + + +#login-name, #login-password { + float: left; + width: 150px; +} + +#register-link, #lost-password-link { + float: left; + font-size: 0.7em; + margin-right: 15px; +} + +#login-name-end, #login-password-end, #login-extra-end, #login-submit-end { + clear: both; +} + +#login-submit-button { + margin-top: 10px; + margin-left: 150px; +} + +input#dfrn-url { + float: left; + background: url(silho.gif) no-repeat; + background-position: 4px center; + font-size: 15px; + padding-left: 24px; + height: 24px; + background-color: #FFFFFF; + color: #000000; + margin-bottom: 20px; +} + +#dfrn-url-label { + float: left; + width: 250px; +} + +#dfrn-request-url-end { + clear: both; +} + +#knowyouyes, #knowyouno { + float: left; +} + +#dfrn-request-knowyou-yes-wrapper, #dfrn-request-knowyou-no-wrapper { + + float: none; +} +#dfrn-request-knowyou-yes-label, #dfrn-request-knowyou-no-label { + float: left; + width: 75px; + margin-left: 50px; + margin-bottom: 7px; +} +#dfrn-request-knowyou-break, #dfrn-request-knowyou-end { + clear: both; + +} + +#dfrn-request-message-wrapper { + margin-bottom: 50px; +} +#dfrn-request-submit-wrapper { + clear: both; + margin-left: 50px; +} + +#dfrn-request-info-wrapper { + margin-left: 50px; +} + +#settings-username-end, #settings-email-end, #settings-nick-end, #settings-timezone-end, #settings-password-end, #settings-confirm-end { + margin-bottom: 5px; + clear: both; +} + +#settings-username-label, #settings-email-label, #settings-nick-label, #settings-timezone-label, #settings-password-label, #settings-confirm-label { + float: left; + width: 200px; +} + +#settings-username, #settings-email, #settings-nick, #timezone-select, #settings-password, #settings-confirm { + float: left; + margin-bottom: 20px; +} + +#settings-nick-desc { + width: 500px; +} + +#settings-nick { + margin-bottom: 50px; +} + +#cropimage-wrapper, #cropimage-preview-wrapper { + float: left; + padding: 30px; +} + +#crop-image-form { + margin-top: 30px; + clear: both; +} + +.intro-fullname { + font-size: 1.1em; + font-weight: bold; + +} +.intro-desc { + margin-bottom: 20px; +} + +.intro-note { + padding: 10px; +} + +.intro-end { + padding: 30px; +} + +.intro-approve-form, .intro-form { + float: left; +} +.intro-submit-approve, .intro-submit-ignore { + margin-right: 20px; +} +.intro-top { + width: 500px; + margin-bottom: 30px; +} +.intro-end { + clear: both; + margin-bottom: 30px; +} +#profile-edit-default-desc { + color: #FF0000; + border: 1px solid #FF8888; + background-color: #FFEEEE; + padding: 7px; + + +} + + +#profile-edit-profile-name-label, +#profile-edit-name-label, +#profile-edit-gender-label, +#profile-edit-address-label, +#profile-edit-locality-label, +#profile-edit-region-label, +#profile-edit-postal-code-label, +#profile-edit-country-name-label, +#profile-edit-marital-label, +#profile-edit-homepage-label { + float: left; + width: 175px; +} + +#profile-edit-profile-name, +#profile-edit-name, +#gender-select, +#profile-edit-address, +#profile-edit-locality, +#profile-edit-region, +#profile-edit-postal-code, +#profile-edit-country-name, +#marital-select, +#profile-in-dir-yes, +#profile-in-dir-no { + float: left; + margin-bottom: 20px; +} + +#profile-in-dir-yes-label, #profile-in-dir-no-label { + margin-left: 125px; + float: left; + width: 50px; +} + +#profile-edit-homepage { + float: left; + margin-bottom: 35px; +} + +#profile-edit-profile-name-end, +#profile-edit-name-end, +#profile-edit-gender-end, +#profile-edit-address-end, +#profile-edit-locality-end, +#profile-edit-region-end, +#profile-edit-postal-code-end, +#profile-edit-country-name-end, +#profile-edit-marital-end, +#profile-edit-homepage-end, +#profile-in-dir-break, +#profile-in-dir-end { + clear: both; +} + +#gender-select, #marital-select { + width: 145px; +} + +#profile-edit-profile-name-wrapper .required { + color: #FF0000; + float: left; +} + + +.contact-entry-photo img { + border: none; +} + +.contact-entry-edit-links img { + border: none; + margin-right: 15px; +} + +.wall-item-photo-wrapper { + margin-top: 20px; + width: 100px; + float: left; +} +.wall-item-wrapper { + margin-top: 30px; + float: left; +} + +.wall-item-wrapper-end { + clear: both; +} +.wall-item-name-link { + font-weight: bold; + text-decoration: none; + color: #3172BD; +} +.wall-item-photo { + border: none; +} + +#profile-jot-submit-wrapper { + margin-top: 15px; +} +#profile-jot-end { + margin-bottom: 30px; +} +#about-jot-submit-wrapper { + margin-top: 15px; +} +#about-jot-end { + margin-bottom: 30px; +} +#contacts-main { + margin-bottom: 30px; +} + +#profile-listing-new-link-wrapper { + margin-bottom: 30px; +} + +.profile-listing-edit-buttons-wrapper { +/* float: left;*/ + clear: both; +} +.profile-listing-photo-edit-link { + float: left; + width: 125px; +} +.profile-listing-end { + clear: both; +} +.profile-listing-edit-buttons-wrapper img{ + border: none; + margin-right: 20px; +} +.profile-listing { + margin-top: 25px; +} +.profile-listing-name { + float: left; + margin-top: 10px; +} +.fortune { + margin-top: 50px; + color: #3172BD; + font-weight: bold; + margin-bottom: 20px; +} \ No newline at end of file diff --git a/view/wall_item.tpl b/view/wall_item.tpl new file mode 100644 index 000000000..898aafdaa --- /dev/null +++ b/view/wall_item.tpl @@ -0,0 +1,14 @@ +
+
+ +$name +
+
+$name +$body +
$ago
+
+
+
+
+ -- cgit v1.2.3