aboutsummaryrefslogtreecommitdiff
path: root/views/default/css/elements/icons.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-19 20:28:09 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-19 20:28:09 +0000
commitd0002284b71ffa629c26c70c9454b8e0e2dd03ac (patch)
treec5c573f5645f8e40833d03bd9e74ad05cad3dabb /views/default/css/elements/icons.php
parentc9ff8889428f39fbde989baa6943a15b9f895a72 (diff)
downloadelgg-d0002284b71ffa629c26c70c9454b8e0e2dd03ac.tar.gz
elgg-d0002284b71ffa629c26c70c9454b8e0e2dd03ac.tar.bz2
Refs #2961: Restoring old icon CSS for sprites and hover menu.
git-svn-id: http://code.elgg.org/elgg/trunk@8346 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/icons.php')
-rw-r--r--views/default/css/elements/icons.php60
1 files changed, 28 insertions, 32 deletions
diff --git a/views/default/css/elements/icons.php b/views/default/css/elements/icons.php
index 781979826..b52503b57 100644
--- a/views/default/css/elements/icons.php
+++ b/views/default/css/elements/icons.php
@@ -11,18 +11,21 @@
/* ***************************************
ICONS
*************************************** */
+
.elgg-icon {
- background: transparent url(<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png) no-repeat;
- padding-left: 16px;
- margin-left: 2px;
- margin-right: 2px;
+ 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;
- padding-left: 36px;
+ width: 36px;
}
.elgg-icon-friends:hover {
background-position: 0 -340px;
@@ -31,13 +34,10 @@
background-position: -302px -136px;
}
.elgg-icon-delete {
- background-position: -199px 0px;
+ background-position: -199px 1px;
}
.elgg-icon-delete:hover {
- background-position: -199px -16px;
-}
-.elgg-icon-tag {
- background-position: 2px -198px;
+ background-position: -199px -15px;
}
.elgg-icon-likes {
background-position: 0px -101px;
@@ -60,7 +60,7 @@
}
.elgg-icon-following {
background-position: -35px -100px;
- padding-left: 22px;
+ width: 22px;
height: 20px;
}
.elgg-icon-rss {
@@ -77,6 +77,23 @@
width: 21px;
height: 21px;
}
+.elgg-avatar > .elgg-icon-hover-menu {
+ display: none;
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ margin: 0;
+ cursor: pointer;
+}
+
+.elgg-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;
+}
/* ***************************************
AVATAR ICONS
@@ -121,24 +138,3 @@
width: 200px;
height: 200px;
}
-
-/* ***************************************
- MISC ICONS
-*************************************** */
-.elgg-avatar > .elgg-icon-hover-menu {
- display: none;
- position: absolute;
- right: 0;
- bottom: 0;
- margin: 0;
- cursor: pointer;
-}
-
-.elgg-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;
-}