mirror of
https://github.com/myvesta/vesta
synced 2025-08-19 13:01:52 -07:00
fix for ip selection ctr+c
This commit is contained in:
parent
ea24113610
commit
d3c98afa61
5 changed files with 10 additions and 8 deletions
8
web/css/styles.min.css
vendored
8
web/css/styles.min.css
vendored
|
@ -553,9 +553,9 @@ th {
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
-webkit-touch-callout: none;
|
/* -webkit-touch-callout: none;
|
||||||
-webkit-text-size-adjust: none;
|
-webkit-text-size-adjust: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none; */
|
||||||
}
|
}
|
||||||
|
|
||||||
html,
|
html,
|
||||||
|
@ -1307,6 +1307,10 @@ div.l-content > div.l-separator:nth-of-type(4) {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
|
.l-unit__ip span {
|
||||||
|
padding-left: 3px;
|
||||||
|
padding-right: 3px;
|
||||||
|
}
|
||||||
.l-unit__stats {
|
.l-unit__stats {
|
||||||
margin-bottom: 53px;
|
margin-bottom: 53px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
<?=$key?> <? if(!empty($data[$key]['SRC'])) echo "<span>⇢ ".$data[$key]['SRC']."</span> "; if($data[$key]['RECORDS']) echo '<span>/ '.$data[$key]['RECORDS'].'</span>';?>
|
<?=$key?> <? if(!empty($data[$key]['SRC'])) echo "<span>⇢ ".$data[$key]['SRC']."</span> "; if($data[$key]['RECORDS']) echo '<span>/ '.$data[$key]['RECORDS'].'</span>';?>
|
||||||
</div>
|
</div>
|
||||||
<div class="l-unit__ip">
|
<div class="l-unit__ip">
|
||||||
<?=str_replace('.', ' . ', $data[$key]['IP'])?>
|
<?=str_replace('.', '<span>.</span>', $data[$key]['IP'])?>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__ip -->
|
<!-- /.l-unit__ip -->
|
||||||
|
|
||||||
|
|
|
@ -41,9 +41,7 @@
|
||||||
</table>
|
</table>
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<? display_error_block() ?>
|
<? display_error_block() ?>
|
||||||
|
|
||||||
<!-- /.l-sort -->
|
<!-- /.l-sort -->
|
||||||
|
@ -169,7 +167,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__name -->
|
<!-- /.l-unit__name -->
|
||||||
<div class="l-unit__ip">
|
<div class="l-unit__ip">
|
||||||
<?=str_replace('.', ' . ', $data[$key]['IP'])?>
|
<?=str_replace('.', '<span>.</span>', $data[$key]['IP'])?>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__ip -->
|
<!-- /.l-unit__ip -->
|
||||||
<div class="l-unit__stats">
|
<div class="l-unit__stats">
|
||||||
|
|
|
@ -110,7 +110,7 @@
|
||||||
<?=$key?> <? if(!empty($data[$key]['SRC'])) echo "<span>⇢ ".$data[$key]['SRC']."</span> "; if($data[$key]['RECORDS']) echo '<span>/ '.$data[$key]['RECORDS'].'</span>';?>
|
<?=$key?> <? if(!empty($data[$key]['SRC'])) echo "<span>⇢ ".$data[$key]['SRC']."</span> "; if($data[$key]['RECORDS']) echo '<span>/ '.$data[$key]['RECORDS'].'</span>';?>
|
||||||
</div>
|
</div>
|
||||||
<div class="l-unit__ip">
|
<div class="l-unit__ip">
|
||||||
<?=str_replace('.', ' . ', $data[$key]['IP'])?>
|
<?=str_replace('.', '<span>.</span>', $data[$key]['IP'])?>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__ip -->
|
<!-- /.l-unit__ip -->
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__name -->
|
<!-- /.l-unit__name -->
|
||||||
<div class="l-unit__ip">
|
<div class="l-unit__ip">
|
||||||
<?=str_replace('.', ' . ', $data[$key]['IP'])?>
|
<?=str_replace('.', '<span>.</span>', $data[$key]['IP'])?>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.l-unit__ip -->
|
<!-- /.l-unit__ip -->
|
||||||
<div class="l-unit__stats">
|
<div class="l-unit__stats">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue