fix unread_msg variable in chat

This commit is contained in:
2014-09-16 20:42:52 +02:00
parent 4bd94abf96
commit 18ce551602
3 changed files with 28 additions and 16 deletions

View File

@@ -6,6 +6,7 @@
SAP Orange: #EFAB00
SAP Bright blue: #D9E5F2
Bright blue 2: #DCF2FB
Bright Orange: #F2E1B5
*/
/* General */
@@ -1436,7 +1437,7 @@ vertical-align 0% -5% -10% -15% -20% -25% -30%
padding:2px 5px;
font-weight:bold;
border:1px solid #04357B;
cursor:pointer;
background: #FFFFFF;
background: -moz-linear-gradient(top, #FFFFFF 15%, #D9E5F2 85%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%,#FFFFFF), color-stop(85%,#D9E5F2));
@@ -1446,6 +1447,17 @@ vertical-align 0% -5% -10% -15% -20% -25% -30%
background: linear-gradient(to bottom, #FFFFFF 15%,#D9E5F2 85%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#D9E5F2',GradientType=0 );
}
#welcome span.milestone:hover {
color:#EFAB00;
border-color:#EFAB00;
background: -moz-linear-gradient(top, #FFFFFF 15%, #F2E1B5 85%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(15%,#FFFFFF), color-stop(85%,#F2E1B5));
background: -webkit-linear-gradient(top, #FFFFFF 15%,#F2E1B5 85%);
background: -o-linear-gradient(top, #FFFFFF 15%,#F2E1B5 85%);
background: -ms-linear-gradient(top, #FFFFFF 15%,#F2E1B5 85%);
background: linear-gradient(to bottom, #FFFFFF 15%,#F2E1B5 85%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F2E1B5',GradientType=0 );
}
#welcome span.milestone .fa {
margin-right:5px;
}