mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Style + layout tweaks
This commit is contained in:
parent
8b6e3e5edb
commit
b20a4f012d
@ -152,6 +152,10 @@ canvas#divDBChartBandwidthhourly {
|
|||||||
color: #ff4500;
|
color: #ff4500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.btn.btn-light.js-toggle-password {
|
||||||
|
border: 1px solid lightgrey;
|
||||||
|
}
|
||||||
|
|
||||||
.signal-icon {
|
.signal-icon {
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
|
@ -349,6 +349,11 @@ pre {
|
|||||||
border: #202020;
|
border: #202020;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.btn.btn-light.js-toggle-password {
|
||||||
|
border: 1px solid #343434;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.signal-icon .signal-bar {
|
.signal-icon .signal-bar {
|
||||||
background: #2b8080;
|
background: #2b8080;
|
||||||
}
|
}
|
||||||
|
@ -49,14 +49,14 @@
|
|||||||
<div><?php echo empty($network['protocol']) ? "-" : $network['protocol'] ?></div>
|
<div><?php echo empty($network['protocol']) ? "-" : $network['protocol'] ?></div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="info-item-wifi"><?php echo _("Passphrase"); ?></div>
|
<div class="info-item-wifi mb-2"><?php echo _("Passphrase"); ?></div>
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<?php if ($network['protocol'] === 'Open') { ?>
|
<?php if ($network['protocol'] === 'Open') { ?>
|
||||||
<input type="password" disabled class="form-control" aria-describedby="passphrase" name="passphrase<?php echo $index ?>" value="" />
|
<input type="password" disabled class="form-control" aria-describedby="passphrase" name="passphrase<?php echo $index ?>" value="" />
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<input type="password" class="form-control" aria-describedby="passphrase" name="passphrase<?php echo $index ?>" value="<?php echo $network['passphrase'] ?>" data-target="#update<?php echo $index ?>" data-colors="#ffd0d0,#d0ffd0">
|
<input type="password" class="form-control" aria-describedby="passphrase" name="passphrase<?php echo $index ?>" value="<?php echo $network['passphrase'] ?>" data-target="#update<?php echo $index ?>" data-colors="#ffd0d0,#d0ffd0">
|
||||||
<div class="input-group-append">
|
<div class="input-group-append">
|
||||||
<button class="btn btn-outline-secondary js-toggle-password" type="button" data-target="[name=passphrase<?php echo $index ?>]" data-toggle-with="fas fa-eye-slash"><i class="fas fa-eye mx-2"></i></button>
|
<button class="btn btn-light js-toggle-password" type="button" data-target="[name=passphrase<?php echo $index ?>]" data-toggle-with="fas fa-eye-slash"><i class="fas fa-eye mx-2"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user