diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-14 12:18:48 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-14 12:18:48 +0000 |
commit | ebf372775a143da9f285431f28e6b022639691a8 (patch) | |
tree | 82320c9b85ed142dabf1515c82ce084e43c77f49 /views/default/entities | |
parent | c9f5c056862553d5102d1dfb7d964ea449573d59 (diff) | |
download | elgg-ebf372775a143da9f285431f28e6b022639691a8.tar.gz elgg-ebf372775a143da9f285431f28e6b022639691a8.tar.bz2 |
Refs #2391: Baby steps toward getting a unified css -- haven't landed on a name yet, but listing/icon/info seems to make the most sense. Do we need to be worried about naming collisions, since those names are so simple?
git-svn-id: http://code.elgg.org/elgg/trunk@7314 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/entities')
-rw-r--r-- | views/default/entities/entity_listing.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/entities/entity_listing.php b/views/default/entities/entity_listing.php index e547bbc68..11d1edcda 100644 --- a/views/default/entities/entity_listing.php +++ b/views/default/entities/entity_listing.php @@ -9,11 +9,11 @@ * @uses string $vars['info'] Info about the entity. */ ?> -<div class="entity_listing clearfix"> - <div class="entity_listing_icon"> +<div class="listing entity_listing"> + <div class="icon"> <?php echo $vars['icon']; ?> </div> - <div class="entity_listing_info"> + <div class="info"> <?php echo $vars['info']; ?> </div> </div> |