aboutsummaryrefslogtreecommitdiff
path: root/views/default/css/elements/icons.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-01 19:45:25 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-01-01 19:45:25 +0000
commit0fc7a5edbc518abd92c4fc8c34b31ca05836132f (patch)
tree29c0bfcc89e51a4c46eebebf5f4c8cb44465fc4c /views/default/css/elements/icons.php
parent47e81498d87703035a9d3a78215e80d7f3e02448 (diff)
downloadelgg-0fc7a5edbc518abd92c4fc8c34b31ca05836132f.tar.gz
elgg-0fc7a5edbc518abd92c4fc8c34b31ca05836132f.tar.bz2
Refs #2317 dividing css element views into skin views and base views. The expectation is that the base views would not be overridden in a theme so the admin css can depend on them.
git-svn-id: http://code.elgg.org/elgg/trunk@7807 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/icons.php')
-rw-r--r--views/default/css/elements/icons.php78
1 files changed, 78 insertions, 0 deletions
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php
new file mode 100644
index 000000000..39c3ab148
--- /dev/null
+++ b/views/default/css/elements/icons.php
@@ -0,0 +1,78 @@
+<?php
+/**
+ *
+ */
+
+?>
+
+/* ***************************************
+ ICONS
+*************************************** */
+
+.elgg-icon {
+ background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat left;
+ width: 16px;
+ height: 16px;
+ display: block;
+ float: left;
+ margin: 0 2px;
+}
+.elgg-icon-settings {
+ background-position: -302px -44px;
+}
+.elgg-icon-friends {
+ background-position: 0 -300px;
+ width: 36px;
+}
+.elgg-icon-friends:hover {
+ background-position: 0 -340px;
+}
+.elgg-icon-help {
+ background-position: -302px -136px;
+}
+.elgg-icon-delete {
+ background-position: -199px 1px;
+}
+.elgg-icon-delete:hover {
+ background-position: -199px -15px;
+}
+.elgg-icon-likes {
+ background-position: 0px -101px;
+ width: 20px;
+ height: 20px;
+}
+.elgg-icon-likes:hover {
+ background-position: 0px -131px;
+}
+.elgg-icon-liked {
+ background-position: 0px -131px;
+ width: 20px;
+ height: 20px;
+}
+.elgg-icon-arrow-s {
+ background-position: -146px -56px;
+}
+.elgg-icon-arrow-s:hover {
+ background-position: -146px -76px;
+}
+.elgg-icon-following {
+ background-position: -35px -100px;
+ width: 22px;
+ height: 20px;
+}
+.elgg-icon-rss {
+ background-position: -249px 1px;
+}
+
+.ajax-loader {
+ background-color: white;
+ background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/ajax_loader_bw.gif);
+ background-repeat: no-repeat;
+ background-position: center center;
+ min-height:33px;
+ min-width:33px;
+}
+.ajax-loader.left {
+ background-position: left center;
+}
+