Skip to content

Commit

Permalink
fixed tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
NisanurBulut committed Apr 9, 2021
1 parent d24615e commit e20e898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion views/layouts/components/HeaderItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private static function getAdminRightMenu(): string
$demandItem = sprintf('<a class="item" href="/demands">
<i class="tasks icon large tooltip" data-content="Talepler"></i>%s</a>', $demandsCount);
return sprintf('<a class="item" href="/dashboard">
<i class="bolt icon large tooltip" data-content="Dashboard"></i></a><a class="item" href="/users">
<i class="bolt icon large tooltip" data-content="Gösterge Paneli"></i></a><a class="item" href="/users">
<i class="users icon large tooltip" data-content="Kullanıcılar"></i>
</a>
<a class="item" href="/apps">
Expand Down
2 changes: 1 addition & 1 deletion views/users/components/userItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function begin($user)
$finalPrint = '<div class="four wide column centerGridItems">
<div class="ui card"><div class="content">';
if ($user->is_admin) {
$finalPrint = $finalPrint . '<i class="right floated star yellow icon tooltip" data-content="Admin kullanıcı"></i>';
$finalPrint = $finalPrint . '<i class="right floated star yellow icon tooltip" data-content="Yönetici"></i>';
}
$finalPrint = $finalPrint . '
<div class="header"> %s </div>
Expand Down

0 comments on commit e20e898

Please sign in to comment.