summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/modules/user/views/scripts/group/showall.phtml2
-rw-r--r--application/modules/user/views/scripts/person/index.phtml2
-rw-r--r--public/media/css/user.css5
3 files changed, 7 insertions, 2 deletions
diff --git a/application/modules/user/views/scripts/group/showall.phtml b/application/modules/user/views/scripts/group/showall.phtml
index 9afedbb..2ed777a 100644
--- a/application/modules/user/views/scripts/group/showall.phtml
+++ b/application/modules/user/views/scripts/group/showall.phtml
@@ -20,7 +20,7 @@
<?php
$class='';
if($group->getID() == $this->userIDsNamespace['groupID'])
- $class= 'highlight';
+ $class= 'highlight checked';
?>
<div class='element<?php echo " $class";?>'>
<div class='content'>
diff --git a/application/modules/user/views/scripts/person/index.phtml b/application/modules/user/views/scripts/person/index.phtml
index 7505954..a4d3a3d 100644
--- a/application/modules/user/views/scripts/person/index.phtml
+++ b/application/modules/user/views/scripts/person/index.phtml
@@ -30,7 +30,7 @@ if(isset($this->groups)) {
<?php
$class='';
if($group['membershipID'] == $this->userIDsNamespace['membershipID'])
- $class= 'highlight';
+ $class= 'highlight checked';
?>
<div class='element<?php echo " $class";?>'>
<div class='content'>
diff --git a/public/media/css/user.css b/public/media/css/user.css
index 602b4a9..5192cd2 100644
--- a/public/media/css/user.css
+++ b/public/media/css/user.css
@@ -131,6 +131,11 @@ tr.selectedEntry td {
}
.listelement .highlight {
background-color:#FFF5CC;
+}
+.listelement .checked {
+ background-image:url('/media/img/checked.png');
+ background-repeat:no-repeat;
+ background-position: 15px center;
}
.searchvars{
border:1px solid #000;