1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00

Readded message icons

This commit is contained in:
max-m 2013-01-27 21:49:10 +01:00
parent 16e55f41e9
commit 9440e1a872

View File

@ -74,20 +74,32 @@
background-size: 16px 16px; background-size: 16px 16px;
} }
.timsChatMessage{$type|concat:'JOIN'|constant} { .timsChatMessage:before {
{*background-image: url({icon}circleArrowRight{/icon});*} font-family: "fontawesome";
margin-right: 5px;
vertical-align: middle;
height: 16px;
width: 16px;
} }
.timsChatMessage{$type|concat:'LEAVE'|constant} { .timsChatMessage{$type|concat:'NORMAL'|constant} {
{*background-image: url({icon}circleArrowLeft{/icon});*} margin-left: 16px;
} }
.timsChatMessage{$type|concat:'INFORMATION'|constant} { .timsChatMessage{$type|concat:'JOIN'|constant}:before {
{*background-image: url({icon}systemInfo{/icon});*} content: "\f090";
} }
.timsChatMessage{$type|concat:'ERROR'|constant} { .timsChatMessage{$type|concat:'LEAVE'|constant}:before {
{*background-image: url({icon}systemError{/icon});*} content: "\f08b";
}
.timsChatMessage{$type|concat:'INFORMATION'|constant}:before {
content: "\f05a";
}
.timsChatMessage{$type|concat:'ERROR'|constant}:before {
content: "\f05e";
} }
</style> </style>
</head> </head>