diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-12-11 06:38:23 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-12-11 06:38:23 -0500 |
commit | d9bf22a0e29c2a70049443a0ae8521a2c0492c8b (patch) | |
tree | c7599a9169d5def7df56c480ad6d67f312443d6f /views/default/openid_client/css.php | |
download | elgg-d9bf22a0e29c2a70049443a0ae8521a2c0492c8b.tar.gz elgg-d9bf22a0e29c2a70049443a0ae8521a2c0492c8b.tar.bz2 |
initial commit for git repository
Diffstat (limited to 'views/default/openid_client/css.php')
-rw-r--r-- | views/default/openid_client/css.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/views/default/openid_client/css.php b/views/default/openid_client/css.php new file mode 100644 index 000000000..b61865bf0 --- /dev/null +++ b/views/default/openid_client/css.php @@ -0,0 +1,46 @@ +<?php
+
+ /**
+ * Elgg OpenID login form css
+ *
+ * @package Elgg
+ * @subpackage openid_client
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Kevin Jardine, Radagast Solutions
+ * @copyright Curverider Ltd 2008-2009
+ * @link http://elgg.org/
+ */
+
+?>
+
+
+
+.river_user_openid_friend {
+ background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_friends.gif) no-repeat left -1px;
+}
+.river_user_openid_update {
+ background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_profile.gif) no-repeat left -1px;
+}
+.river_user_openid_messageboard {
+ background: url(<?php echo $vars['url']; ?>_graphics/river_icons/river_icon_comment.gif) no-repeat left -1px;
+}
+
+#openid_login #login-box h2 {
+ margin:0;
+ padding:5px 0 10px 0;
+}
+#openid_login #login-box-openid form {
+ background-color: none;
+ margin:0;
+ padding:0;
+}
+input.openid_login {
+ background: url(<?php echo $vars['url']; ?>mod/openid_client/graphics/login-bg.gif) no-repeat;
+ background-color: #fff;
+ background-position: 0 50%;
+ color: #000;
+ width: 160px;
+}
+#openid_show {
+ cursor:pointer;
+}
|