mirror of
https://github.com/friendica/friendica
synced 2025-01-18 12:10:20 +01:00
quattro: default user image in item
This commit is contained in:
parent
3afa248238
commit
938b2bf438
2 changed files with 21 additions and 2 deletions
|
@ -348,7 +348,13 @@ section {
|
||||||
width: 60px;
|
width: 60px;
|
||||||
|
|
||||||
.wall-item-photo-wrapper { position: relative; }
|
.wall-item-photo-wrapper { position: relative; }
|
||||||
.wall-item-photo { width: 48px; height: 48px; }
|
.wall-item-photo {
|
||||||
|
width: 48px; height: 48px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-indent: -9999px;
|
||||||
|
display: block;
|
||||||
|
background: url(../../../images/icons/48/user.png) no-repeat center center;
|
||||||
|
}
|
||||||
|
|
||||||
.wall-item-photo-menu-button {
|
.wall-item-photo-menu-button {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -400,7 +406,9 @@ section {
|
||||||
|
|
||||||
.wall-item-container.comment {
|
.wall-item-container.comment {
|
||||||
/*margin-top: 50px;*/
|
/*margin-top: 50px;*/
|
||||||
.wall-item-photo { width: 32px; height: 32px; margin-left: 16px;}
|
.wall-item-photo { width: 32px; height: 32px; margin-left: 16px;
|
||||||
|
background: url(../../../images/icons/22/user.png) no-repeat center center;
|
||||||
|
}
|
||||||
.wall-item-photo-menu-button {
|
.wall-item-photo-menu-button {
|
||||||
top: 13px !important;
|
top: 13px !important;
|
||||||
left: 10px !important;
|
left: 10px !important;
|
||||||
|
@ -425,6 +433,9 @@ section {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.wall-item-tags { padding-top: 5px; }
|
||||||
.tag {
|
.tag {
|
||||||
background: url("../../../images/tag_b.png") no-repeat center left;
|
background: url("../../../images/tag_b.png") no-repeat center left;
|
||||||
color: @TagColor;
|
color: @TagColor;
|
||||||
|
|
|
@ -643,6 +643,10 @@ section {
|
||||||
.wall-item-container .wall-item-info .wall-item-photo {
|
.wall-item-container .wall-item-info .wall-item-photo {
|
||||||
width: 48px;
|
width: 48px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-indent: -9999px;
|
||||||
|
display: block;
|
||||||
|
background: url(../../../images/icons/48/user.png) no-repeat center center;
|
||||||
}
|
}
|
||||||
.wall-item-container .wall-item-info .wall-item-photo-menu-button {
|
.wall-item-container .wall-item-info .wall-item-photo-menu-button {
|
||||||
display: none;
|
display: none;
|
||||||
|
@ -722,6 +726,7 @@ section {
|
||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
margin-left: 16px;
|
margin-left: 16px;
|
||||||
|
background: url(../../../images/icons/22/user.png) no-repeat center center;
|
||||||
}
|
}
|
||||||
.wall-item-container.comment .wall-item-photo-menu-button {
|
.wall-item-container.comment .wall-item-photo-menu-button {
|
||||||
top: 13px !important;
|
top: 13px !important;
|
||||||
|
@ -750,6 +755,9 @@ section {
|
||||||
color: #2d2d2d;
|
color: #2d2d2d;
|
||||||
border: 1px solid #2d2d2d;
|
border: 1px solid #2d2d2d;
|
||||||
}
|
}
|
||||||
|
.wall-item-tags {
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
.tag {
|
.tag {
|
||||||
background: url("../../../images/tag_b.png") no-repeat center left;
|
background: url("../../../images/tag_b.png") no-repeat center left;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
|
|
Loading…
Reference in a new issue