mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Fix status icons not showing up on mail list
This commit is contained in:
parent
71d079c9f3
commit
cdcb85f4f3
@ -70,7 +70,7 @@ tr.mail.deleted td:first-child{
|
|||||||
text-decoration : line-through;
|
text-decoration : line-through;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.status_img {
|
.status_img {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
@ -78,31 +78,31 @@ span.status_img {
|
|||||||
background-image: url(../default/images/kmmsgread.png);
|
background-image: url(../default/images/kmmsgread.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.deleted span.status_img {
|
tr.deleted .status_img {
|
||||||
background-image: url(../default/images/kmmsgdel.png);
|
background-image: url(../default/images/kmmsgdel.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.unseen span.status_img {
|
tr.unseen .status_img {
|
||||||
background-image: url(../default/images/kmmsgunseen.png);
|
background-image: url(../default/images/kmmsgunseen.png);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.flagged_seen span.status_img {
|
tr.flagged_seen .status_img {
|
||||||
background-image: url(../default/images/read_flagged_small.png) !important;
|
background-image: url(../default/images/read_flagged_small.png) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.flagged_unseen span.status_img {
|
tr.flagged_unseen .status_img {
|
||||||
background-image: url(../default/images/unread_flagged_small.png) !important;
|
background-image: url(../default/images/unread_flagged_small.png) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.recent span.status_img {
|
tr.recent .status_img {
|
||||||
background-image: url(../default/images/kmmsgnew.png) !important;
|
background-image: url(../default/images/kmmsgnew.png) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.replied span.status_img {
|
tr.replied .status_img {
|
||||||
background-image: url(../default/images/kmmsgreplied.png) !important;
|
background-image: url(../default/images/kmmsgreplied.png) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.forwarded span.status_img {
|
tr.forwarded .status_img {
|
||||||
background-image: url(../default/images/kmmsgforwarded.png) !important;
|
background-image: url(../default/images/kmmsgforwarded.png) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,32 +85,32 @@ tr.mail.deleted td:first-child {
|
|||||||
border-left: 6px solid silver;
|
border-left: 6px solid silver;
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
}
|
}
|
||||||
span.status_img {
|
.status_img {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-image: url(../default/images/kmmsgread.png);
|
background-image: url(../default/images/kmmsgread.png);
|
||||||
}
|
}
|
||||||
tr.deleted span.status_img {
|
tr.deleted .status_img {
|
||||||
background-image: url(../default/images/kmmsgdel.png);
|
background-image: url(../default/images/kmmsgdel.png);
|
||||||
}
|
}
|
||||||
tr.unseen span.status_img {
|
tr.unseen .status_img {
|
||||||
background-image: url(../default/images/kmmsgunseen.png);
|
background-image: url(../default/images/kmmsgunseen.png);
|
||||||
}
|
}
|
||||||
tr.flagged_seen span.status_img {
|
tr.flagged_seen .status_img {
|
||||||
background-image: url(../default/images/read_flagged_small.png) !important;
|
background-image: url(../default/images/read_flagged_small.png) !important;
|
||||||
}
|
}
|
||||||
tr.flagged_unseen span.status_img {
|
tr.flagged_unseen .status_img {
|
||||||
background-image: url(../default/images/unread_flagged_small.png) !important;
|
background-image: url(../default/images/unread_flagged_small.png) !important;
|
||||||
}
|
}
|
||||||
tr.recent span.status_img {
|
tr.recent .status_img {
|
||||||
background-image: url(../default/images/kmmsgnew.png) !important;
|
background-image: url(../default/images/kmmsgnew.png) !important;
|
||||||
}
|
}
|
||||||
tr.replied span.status_img {
|
tr.replied .status_img {
|
||||||
background-image: url(../default/images/kmmsgreplied.png) !important;
|
background-image: url(../default/images/kmmsgreplied.png) !important;
|
||||||
}
|
}
|
||||||
tr.forwarded span.status_img {
|
tr.forwarded .status_img {
|
||||||
background-image: url(../default/images/kmmsgforwarded.png) !important;
|
background-image: url(../default/images/kmmsgforwarded.png) !important;
|
||||||
}
|
}
|
||||||
.subjectBold {
|
.subjectBold {
|
||||||
@ -1651,7 +1651,7 @@ tr.mail.deleted td:first-child {
|
|||||||
border-left: 6px solid silver;
|
border-left: 6px solid silver;
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
}
|
}
|
||||||
span.status_img {
|
.status_img {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
@ -1659,25 +1659,25 @@ span.status_img {
|
|||||||
background-image: url(../pixelegg/images/kmmsgread.svg);
|
background-image: url(../pixelegg/images/kmmsgread.svg);
|
||||||
background-size: 16px 16px;
|
background-size: 16px 16px;
|
||||||
}
|
}
|
||||||
tr.deleted span.status_img {
|
tr.deleted .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgdel.svg);
|
background-image: url(../pixelegg/images/kmmsgdel.svg);
|
||||||
}
|
}
|
||||||
tr.unseen span.status_img {
|
tr.unseen .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgunseen.svg);
|
background-image: url(../pixelegg/images/kmmsgunseen.svg);
|
||||||
}
|
}
|
||||||
tr.flagged_seen span.status_img {
|
tr.flagged_seen .status_img {
|
||||||
background-image: url(../pixelegg/images/read_flagged_small.svg) !important;
|
background-image: url(../pixelegg/images/read_flagged_small.svg) !important;
|
||||||
}
|
}
|
||||||
tr.flagged_unseen span.status_img {
|
tr.flagged_unseen .status_img {
|
||||||
background-image: url(../pixelegg/images/unread_flagged_small.svg) !important;
|
background-image: url(../pixelegg/images/unread_flagged_small.svg) !important;
|
||||||
}
|
}
|
||||||
tr.recent span.status_img {
|
tr.recent .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgnew.svg) !important;
|
background-image: url(../pixelegg/images/kmmsgnew.svg) !important;
|
||||||
}
|
}
|
||||||
tr.replied span.status_img {
|
tr.replied .status_img {
|
||||||
background-image: url(../pixelegg/images/mail_reply.svg) !important;
|
background-image: url(../pixelegg/images/mail_reply.svg) !important;
|
||||||
}
|
}
|
||||||
tr.forwarded span.status_img {
|
tr.forwarded .status_img {
|
||||||
background-image: url(../pixelegg/images/mail_forward.svg) !important;
|
background-image: url(../pixelegg/images/mail_forward.svg) !important;
|
||||||
}
|
}
|
||||||
.subjectBold {
|
.subjectBold {
|
||||||
|
@ -737,7 +737,7 @@ tr.mail.deleted td:first-child {
|
|||||||
text-decoration : line-through;
|
text-decoration : line-through;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.status_img {
|
.status_img {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
@ -746,31 +746,31 @@ span.status_img {
|
|||||||
background-size: 16px 16px;
|
background-size: 16px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.deleted span.status_img {
|
tr.deleted .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgdel.svg);
|
background-image: url(../pixelegg/images/kmmsgdel.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.unseen span.status_img {
|
tr.unseen .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgunseen.svg);
|
background-image: url(../pixelegg/images/kmmsgunseen.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.flagged_seen span.status_img {
|
tr.flagged_seen .status_img {
|
||||||
background-image: url(../pixelegg/images/read_flagged_small.svg) !important;
|
background-image: url(../pixelegg/images/read_flagged_small.svg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.flagged_unseen span.status_img {
|
tr.flagged_unseen .status_img {
|
||||||
background-image: url(../pixelegg/images/unread_flagged_small.svg) !important;
|
background-image: url(../pixelegg/images/unread_flagged_small.svg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.recent span.status_img {
|
tr.recent .status_img {
|
||||||
background-image: url(../pixelegg/images/kmmsgnew.svg) !important;
|
background-image: url(../pixelegg/images/kmmsgnew.svg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.replied span.status_img {
|
tr.replied .status_img {
|
||||||
background-image: url(../pixelegg/images/mail_reply.svg) !important;
|
background-image: url(../pixelegg/images/mail_reply.svg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr.forwarded span.status_img {
|
tr.forwarded .status_img {
|
||||||
background-image: url(../pixelegg/images/mail_forward.svg) !important;
|
background-image: url(../pixelegg/images/mail_forward.svg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user