Skip to content

Commit 181aa66

Browse files
author
Kristan Kenney
committed
Add style classes for user name and email
1 parent 3992bc7 commit 181aa66

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

web/css/styles.min.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3797,6 +3797,14 @@ form#vstobjects.suspended {
37973797
margin-right: 32px;
37983798
}
37993799

3800+
.userlist-email {
3801+
font-size: 0.75rem;
3802+
}
3803+
3804+
.userlist-username {
3805+
font-size: 1.05em;
3806+
}
3807+
38003808
@media screen and (max-width: 950px) {
38013809
.helper-container {
38023810
display: none;

web/templates/admin/list_user.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@
101101
<div class="clearfix l-unit__stat-col--left super-compact">
102102
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="user[]" value="<?=$key?>">
103103
</div>
104-
<div class="clearfix l-unit__stat-col--left wide-3"><b><a href="/login/?loginas=<?=$key?>&token=<?=$_SESSION['token']?>" title="<?=__('login as')?> <?=$key?>"><?=$key?> <span style="font-weight: normal !important;">(<?=$data[$key]['FNAME']?> <?=$data[$key]['LNAME']?>)</span></b></a>
104+
<div class="clearfix l-unit__stat-col--left wide-3 userlist-username"><b><a href="/login/?loginas=<?=$key?>&token=<?=$_SESSION['token']?>" title="<?=__('login as')?> <?=$key?>"><?=$key?> <span style="font-weight: normal !important;">(<?=$data[$key]['FNAME']?> <?=$data[$key]['LNAME']?>)</span></b></a>
105105
<br />
106-
<span style="font-size: 0.8rem;"><b><?=__('Email')?>:</b> <?=$data[$key]['CONTACT']?></span>
106+
<span class="userlist-email"><b><?=__('Email')?>:</b> <?=$data[$key]['CONTACT']?></span>
107107
</div>
108108
<!-- START QUICK ACTION TOOLBAR AREA -->
109109
<div class="clearfix l-unit__stat-col--left text-right compact-3">

web/templates/user/list_user.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@
9999
<div class="clearfix l-unit__stat-col--left super-compact">
100100
<input id="check<?=$i?>" class="ch-toggle" type="checkbox" name="user[]" value="<?=$key?>">
101101
</div>
102-
<div class="clearfix l-unit__stat-col--left wide-3"><b><a href="/login/?loginas=<?=$key?>&token=<?=$_SESSION['token']?>" title="<?=__('login as')?>"><?=$data[$key]['FNAME']?> <?=$data[$key]['LNAME']?> <span style="font-weight: normal !important;">(<?=$key?>)</span></b></a>
102+
<div class="clearfix l-unit__stat-col--left wide-3 userlist-username"><b><a href="/login/?loginas=<?=$key?>&token=<?=$_SESSION['token']?>" title="<?=__('login as')?>"><?=$data[$key]['FNAME']?> <?=$data[$key]['LNAME']?> <span style="font-weight: normal !important;">(<?=$key?>)</span></b></a>
103103
<br />
104-
<span style="font-size: 0.8rem;"><b><?=__('Email')?>:</b> <?=$data[$key]['CONTACT']?></span>
104+
<span class="userlist-email"><b><?=__('Email')?>:</b> <?=$data[$key]['CONTACT']?></span>
105105
</div>
106106
<!-- START QUICK ACTION TOOLBAR AREA -->
107107
<div class="clearfix l-unit__stat-col--left text-right compact-3">

0 commit comments

Comments
 (0)