Fix: wait time cutoff

This commit is contained in:
Squidly271
2025-10-22 17:18:48 -04:00
parent 8227702a8f
commit 72e5bd4da7
3 changed files with 6 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ require_once "$docroot/plugins/dynamix.docker.manager/include/DockerClient.php";
$width = $themeHelper->isTopNavTheme() ? -58: -44; // $themeHelper set in DefaultPageLayout.php
$top = $themeHelper->isTopNavTheme() ? 40 : 20;
$busy = "<i class='fa fa-spin fa-circle-o-notch'></i> <span style='font-family: clear-sans, sans-serif;'>"._('Please wait')."... "._('starting up containers')."</span>";
$busy = "<i class='fa fa-spin fa-circle-o-notch'></i> <span class='font-sans'>"._('Please wait')."... "._('starting up containers')."</span>";
$cpus = cpu_list();
?>
<link type="text/css" rel="stylesheet" href="<?autov('/webGui/styles/jquery.switchbutton.css')?>">

View File

@@ -24,7 +24,7 @@ th.load {
width: 140px;
}
input.wait {
width: 24px;
width: 2.6rem;
margin: 0 4px;
padding: 0 5px;
border: none;

View File

@@ -1906,6 +1906,10 @@ span#wlan0 {
font-family: bitstream, monospace;
}
.font-sans {
font-family: clear-sans, sans-serif;
}
.text-center {
text-align: center;
}