aboutsummaryrefslogtreecommitdiff
path: root/mod/custom_index
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 21:50:34 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 21:50:34 +0000
commitd3b5a8a53771dee9788608d1a30135ca0fa7c6aa (patch)
tree3c6202684991301a68802d307bec9eb4308dcd88 /mod/custom_index
parentd27572e839f8f5d035471ce79aa2c2797b9bd086 (diff)
downloadelgg-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 'mod/custom_index')
-rw-r--r--mod/custom_index/views/default/custom_index/css.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/custom_index/views/default/custom_index/css.php b/mod/custom_index/views/default/custom_index/css.php
index 0cac0b170..ef7b0a39c 100644
--- a/mod/custom_index/views/default/custom_index/css.php
+++ b/mod/custom_index/views/default/custom_index/css.php
@@ -12,12 +12,12 @@
padding: 10px 0;
}
.custom-index .elgg-module-featured {
- box-shadow: 1px 1px 5px #CCC;
- -moz-box-shadow: 1px 1px 5px #CCC;
-webkit-box-shadow: 1px 1px 5px #CCC;
+ -moz-box-shadow: 1px 1px 5px #CCC;
+ box-shadow: 1px 1px 5px #CCC;
}
.custom-index .elgg-module-featured:hover {
- box-shadow: 1px 1px 6px #AAA;
- -moz-box-shadow: 1px 1px 6px #AAA;
-webkit-box-shadow: 1px 1px 6px #AAA;
+ -moz-box-shadow: 1px 1px 6px #AAA;
+ box-shadow: 1px 1px 6px #AAA;
}