Add box shadow and radius to avatars
This commit is contained in:
parent
e99fe86ca0
commit
b04a2638a5
3 changed files with 13 additions and 0 deletions
|
|
@ -339,6 +339,7 @@ body > header {
|
|||
left: 8px;
|
||||
top: 8px;
|
||||
display: block;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.header-nav {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue