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 /mod/twitter | |
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 'mod/twitter')
-rw-r--r-- | mod/twitter/views/default/twitter/css.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/mod/twitter/views/default/twitter/css.php b/mod/twitter/views/default/twitter/css.php index 5c7b4eec5..ffabdf98c 100644 --- a/mod/twitter/views/default/twitter/css.php +++ b/mod/twitter/views/default/twitter/css.php @@ -7,7 +7,7 @@ ?> #twitter_widget { - margin:0 10px 0 10px; + margin:0 10px 0 10px; } #twitter_widget ul { margin:0; @@ -25,23 +25,29 @@ #twitter_widget li span { color:#666666; background:white; + -webkit-border-radius: 8px; -moz-border-radius: 8px; + border-radius: 8px; + padding:5px; display:block; } p.visit_twitter a { - background:url(<?php echo elgg_get_site_url(); ?>mod/twitter/graphics/twitter16px.png) left no-repeat; - padding:0 0 0 20px; - margin:0; + background:url(<?php echo elgg_get_site_url(); ?>mod/twitter/graphics/twitter16px.png) left no-repeat; + padding:0 0 0 20px; + margin:0; } p.twitter_username .input-text { width:200px; } .visit_twitter { background:white; + -webkit-border-radius: 8px; -moz-border-radius: 8px; + border-radius: 8px; + padding:2px; margin:0 0 5px 0; } |