diff options
author | Sem <sembrestels@riseup.net> | 2012-01-06 13:25:03 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-01-06 13:25:03 +0100 |
commit | 9895df4280a7be9465fe148a356327edf370f6fa (patch) | |
tree | 18a8ecb3a50fe4da0164a2b5a572ed3274343aa2 /views/default/identica/css.php | |
download | elgg-9895df4280a7be9465fe148a356327edf370f6fa.tar.gz elgg-9895df4280a7be9465fe148a356327edf370f6fa.tar.bz2 |
Initial commit for Elgg 1.8
Diffstat (limited to 'views/default/identica/css.php')
-rw-r--r-- | views/default/identica/css.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/views/default/identica/css.php b/views/default/identica/css.php new file mode 100644 index 000000000..e87d0cf31 --- /dev/null +++ b/views/default/identica/css.php @@ -0,0 +1,63 @@ +<?php +/** + * Elgg Identi.ca CSS + * + * @package ElggIdentica + */ +?> + +#identica_widget { + margin:0 10px 0 10px; +} +#identica_widget ul { + margin:0; + padding:0; +} +#identica_widget li { + list-style-image:none; + list-style-position:outside; + list-style-type:none; + margin:0 0 5px 0; + padding:0; + overflow-x: hidden; + border: 2px solid #dedede; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; +} +#identica_widget li span { + color:#666666; + background:white; + + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + + padding:5px; + display:block; +} +p.visit_identica a { + background:url(<?php echo elgg_get_site_url(); ?>mod/identica/graphics/identica.png) left no-repeat; + padding:0 0 0 20px; + margin:0; +} +p.identica_username .input-text { + width:200px; +} +.visit_identica { + background:white; + + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + + padding:2px; + margin:0 0 5px 0; +} +#identica_widget li > a { + display:block; + margin:0 0 0 4px; +} +#identica_widget li span a { + display:inline !important; +} |