diff --git a/mod/network.php b/mod/network.php
index 6f9e84b708..32c7216d44 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -255,8 +255,8 @@ function network_content(&$a, $update = 0) {
}
}
- $location = (($item['location']) ? '' . $item['location'] . '' : '');
- $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
+ $location = (($item['location']) ? '' . $item['location'] . '' : '');
+ $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
if($coord) {
if($location)
$location .= '
(' . $coord . ')';
@@ -412,8 +412,8 @@ function network_content(&$a, $update = 0) {
$like = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
$dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
- $location = (($item['location']) ? '' . $item['location'] . '' : '');
- $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
+ $location = (($item['location']) ? '' . $item['location'] . '' : '');
+ $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
if($coord) {
if($location)
$location .= '
(' . $coord . ')';
diff --git a/mod/profile.php b/mod/profile.php
index 9375b670bc..5615573b95 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -363,8 +363,8 @@ function profile_content(&$a, $update = 0) {
$like = ((isset($alike[$item['id']])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
$dislike = ((isset($dlike[$item['id']])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
- $location = (($item['location']) ? '' . $item['location'] . '' : '');
- $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
+ $location = (($item['location']) ? '' . $item['location'] . '' : '');
+ $coord = (($item['coord']) ? '' . $item['coord'] . '' : '');
if($coord) {
if($location)
$location .= '
(' . $coord . ')';
diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css
index bfe524b019..bc6e63edb9 100644
--- a/view/theme/duepuntozero/style.css
+++ b/view/theme/duepuntozero/style.css
@@ -833,31 +833,40 @@ input#dfrn-url {
.wall-item-info {
display: block;
float: left;
- width:150px;
+ width:110px;
+ margin-right:10px;
}
-.wallwall .wall-item-info {
- width: 300px;
+.comment .wall-item-info {
+ width: 70px;
}
-
.wall-item-photo-wrapper {
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
width: 100px;
}
-.wallwall .wall-item-photo-wrapper {
- float: left;
-}
+.wallwall .wwto {
+ left: 50px;
+ margin: 0;
+ position: absolute;
+ top: 70px;
+ width: 30px
+}
+.wallwall .wwto img {
+ width: 30px;
+ height: 30px;
+}
.wallwall .wall-item-photo-end {
clear: both;
}
.wall-item-arrowphoto-wrapper {
- margin-top: 40px;
- margin-right: 20px;
- float: left;
+ position: absolute;
+ left: 75px;
+ top: 70px;
+ z-index: 100;
}
.wall-item-wrapper {
/*float: left;
@@ -868,16 +877,38 @@ input#dfrn-url {
.wall-item-lock {
/*height: 20px;*/
/*margin-top: 10px;*/
- left: 135px;
+ left: 105px;
position: absolute;
top: 1px;
}
+.comment .wall-item-lock {
+ left: 65px;
+}
.wall-item-ago {
color: #888888;
font-size: 0.8em;
}
+.wall-item-location {
+ overflow: hidden;
+ /* add ellipsis on text overflow */
+ /* this work on safari, opera, ie, chrome. */
+ /* firefox users have to wait support or we */
+ /* can use a jquery plugin http://bit.ly/zJskg */
+ text-overflow: ellipsis;
+ -o-text-overflow: ellipsis;
+ width: 100%;
+}
+
+.wall-item-like-buttons {
+ float: left;
+ margin-right: 10px;
+ padding-right: 10px;
+ border-right: 2px solid #fff;
+}
+
+
.wall-item-like-buttons img {
cursor: pointer;
}
diff --git a/view/wall_item.tpl b/view/wall_item.tpl
index 1cad411182..5cae6b1424 100644
--- a/view/wall_item.tpl
+++ b/view/wall_item.tpl
@@ -8,18 +8,21 @@