Add box shadow and radius to avatars

This commit is contained in:
goobertron 2014-03-31 17:50:31 +01:00 committed by Marcelo Briones
parent e99fe86ca0
commit b04a2638a5
3 changed files with 13 additions and 0 deletions

View file

@ -339,6 +339,7 @@ body > header {
left: 8px;
top: 8px;
display: block;
border-radius: 3px;
}
.header-nav {

View file

@ -34,11 +34,19 @@ a { color : $link-blue }
&.micro {
height: 20px;
width: 20px;
box-shadow: 0px 1px 2px 0px #666;
-webkit-box-shadow: 0px 1px 2px 0px #666;
-moz-box-shadow: 0px 1px 2px 0px #666;
border-radius: 3px;
}
&.small {
height: 35px;
width: 35px;
box-shadow: 0px 1px 2px 0px #666;
-webkit-box-shadow: 0px 1px 2px 0px #666;
-moz-box-shadow: 0px 1px 2px 0px #666;
border-radius: 4px;
}
}

View file

@ -78,6 +78,10 @@
.avatar {
width: 35px;
height: 35px;
box-shadow: 0px 1px 2px 0px #666;
-webkit-box-shadow: 0px 1px 2px 0px #666;
-moz-box-shadow: 0px 1px 2px 0px #666;
border-radius: 3px;
}
.unread-toggle {