Selection text color

This commit is contained in:
Ibnu Maksum
2023-06-16 09:09:49 +07:00
parent 8ec7b6f080
commit 7d98844690
5 changed files with 50 additions and 6 deletions

View File

@ -53,7 +53,7 @@
<label class="col-md-2 control-label">APP URL</label>
<div class="col-md-6">
<input type="text" readonly class="form-control" value="{$app_url}">
<p class="help-block">system/config.php</p>
<p class="help-block">edit at config.php</p>
</div>
</div>
</div>

View File

@ -16,6 +16,18 @@
<link rel="stylesheet" href="ui/ui/styles/adminlte.min.css">
<link rel="stylesheet" href="ui/ui/styles/skin-blue.min.css">
<style>
::-moz-selection {
/* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
</style>
{if isset($xheader)}
{$xheader}

View File

@ -16,6 +16,18 @@
<link rel="stylesheet" href="ui/ui/styles/adminlte.min.css">
<link rel="stylesheet" href="ui/ui/styles/skin-blue.min.css">
<style>
::-moz-selection {
/* Code for Firefox */
color: red;
background: yellow;
}
::selection {
color: red;
background: yellow;
}
</style>
{if isset($xheader)}
{$xheader}
@ -50,7 +62,7 @@
class="img-circle" alt="User Image">
<p>
{$_user['fullname']}
{$_user['fullname']}
<small>Member since Nov. 2012</small>
</p>
</li>
@ -68,7 +80,8 @@
</li>
<li class="user-footer">
<div class="pull-right">
<a href="{$_url}logout" class="btn btn-default btn-flat"><i class="ion ion-power"></i> {$_L['Logout']}</a>
<a href="{$_url}logout" class="btn btn-default btn-flat"><i
class="ion ion-power"></i> {$_L['Logout']}</a>
</div>
</li>
</ul>
@ -127,4 +140,4 @@
</h1>
</section>
<section class="content">
{if isset($notify)}{$notify}{/if}
{if isset($notify)}{$notify}{/if}

View File

@ -54,14 +54,15 @@
<td>{$ds['type']}</td>
<td>{$ds['routers']}</td>
<td>{$ds['name_plan']}</td>
<td>{$ds['code']}</td>
<td><span style="background-color: black; color:black;">{$ds['code']}</span></td>
<td align="center">{if $ds['status'] eq '0'} <label class="btn-tag btn-tag-success">Not
Use</label> {else} <label class="btn-tag btn-tag-danger">Used</label>
{/if}</td>
<td align="center">{if $ds['user'] eq '0'} - {else} {$ds['user']} {/if}</td>
<td>
<a href="{$_url}prepaid/voucher-delete/{$ds['id']}" id="{$ds['id']}"
class="btn btn-danger btn-sm" onclick="return confirm('{$_L['Delete']}?')">{$_L['Delete']}</a>
class="btn btn-danger btn-xs"
onclick="return confirm('{$_L['Delete']}?')">{$_L['Delete']}</a>
</td>
</tr>
{/foreach}