summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoockinho <foockinho@lorea.org>2012-08-21 22:00:05 +0200
committerfoockinho <foockinho@lorea.org>2012-08-21 22:00:05 +0200
commit1520c648cb379f3c777f3172da383206244d004d (patch)
tree7da4390ee9152a2c51e2f3a6159b2b7e4f116ad0
parentf9e27fbd1cd4df89b66e575dee42bc18d1e661d1 (diff)
downloadsaravea_theme-1520c648cb379f3c777f3172da383206244d004d.tar.gz
saravea_theme-1520c648cb379f3c777f3172da383206244d004d.tar.bz2
removed white background to ajax loader and decreased border radius on avatar icons
-rw-r--r--views/default/css/elements/icons.php22
1 files changed, 15 insertions, 7 deletions
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php
index c9d0c3d..57de34a 100644
--- a/views/default/css/elements/icons.php
+++ b/views/default/css/elements/icons.php
@@ -291,7 +291,7 @@
}
.elgg-ajax-loader {
- background: white url(<?php echo elgg_get_site_url(); ?>_graphics/ajax_loader_bw.gif) no-repeat center center;
+ background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/ajax_loader_bw.gif) no-repeat center center;
min-height: 31px;
min-width: 31px;
}
@@ -311,9 +311,9 @@
height: 25px;
/* remove the border-radius if you don't want rounded avatars in supported browsers */
- -webkit-border-radius: 13px;
- -moz-border-radius: 13px;
- border-radius: 13px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
-moz-background-clip: border;
background-clip: border;
@@ -329,9 +329,9 @@
height: 40px;
/* remove the border-radius if you don't want rounded avatars in supported browsers */
- -webkit-border-radius: 20px;
- -moz-border-radius: 20px;
- border-radius: 20px;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
-moz-background-clip: border;
background-clip: border;
@@ -345,8 +345,16 @@
.elgg-avatar-medium > a > img {
width: 100px;
height: 100px;
+
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
}
.elgg-avatar-large > a > img {
width: 200px;
height: 200px;
+
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
}