diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 21:50:34 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 21:50:34 +0000 |
commit | d3b5a8a53771dee9788608d1a30135ca0fa7c6aa (patch) | |
tree | 3c6202684991301a68802d307bec9eb4308dcd88 /views/default/css/elements/icons.php | |
parent | d27572e839f8f5d035471ce79aa2c2797b9bd086 (diff) | |
download | elgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.gz elgg-d3b5a8a53771dee9788608d1a30135ca0fa7c6aa.tar.bz2 |
Fixes #3109: added non-vendor-prefixed css property declarations where applicable. Cleaned up various other aspects of the css
git-svn-id: http://code.elgg.org/elgg/trunk@8703 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/icons.php')
-rw-r--r-- | views/default/css/elements/icons.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php index 64a1d78ca..343da430e 100644 --- a/views/default/css/elements/icons.php +++ b/views/default/css/elements/icons.php @@ -109,28 +109,38 @@ .elgg-avatar-tiny > a > img { width: 25px; height: 25px; + /* remove the border-radius if you don't want rounded avatars in supported browsers */ -webkit-border-radius: 3px; -moz-border-radius: 3px; + border-radius: 3px; + -moz-background-clip: border; + background-clip: border; - -o-background-size: 25px; -webkit-background-size: 25px; -khtml-background-size: 25px; -moz-background-size: 25px; + -o-background-size: 25px; + background-size: 25px; } .elgg-avatar-small > a > img { width: 40px; height: 40px; + /* remove the border-radius if you don't want rounded avatars in supported browsers */ -webkit-border-radius: 5px; -moz-border-radius: 5px; + border-radius: 5px; + -moz-background-clip: border; + background-clip: border; - -o-background-size: 40px; -webkit-background-size: 40px; -khtml-background-size: 40px; -moz-background-size: 40px; + -o-background-size: 40px; + background-size: 40px; } .elgg-avatar-medium > a > img { width: 100px; |