Skip to content

Commit 7c62fe3

Browse files
authored
Merge pull request unraid#2432 from Squidly271/patch-11
Fix: Font style when starting up containers
2 parents 7559d75 + be16426 commit 7c62fe3

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

emhttp/plugins/dynamix.docker.manager/DockerContainers.page

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require_once "$docroot/plugins/dynamix.docker.manager/include/DockerClient.php";
2424

2525
$width = $themeHelper->isTopNavTheme() ? -58: -44; // $themeHelper set in DefaultPageLayout.php
2626
$top = $themeHelper->isTopNavTheme() ? 40 : 20;
27-
$busy = "<i class='fa fa-spin fa-circle-o-notch'></i> "._('Please wait')."... "._('starting up containers');
27+
$busy = "<i class='fa fa-spin fa-circle-o-notch'></i> <span class='font-sans'>"._('Please wait')."... "._('starting up containers')."</span>";
2828
$cpus = cpu_list();
2929
?>
3030
<link type="text/css" rel="stylesheet" href="<?autov('/webGui/styles/jquery.switchbutton.css')?>">

emhttp/plugins/dynamix.docker.manager/sheets/DockerContainers.css

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ th.load {
2424
width: 140px;
2525
}
2626
input.wait {
27-
width: 24px;
27+
width: 2.6rem;
2828
margin: 0 4px;
2929
padding: 0 5px;
3030
border: none;

emhttp/plugins/dynamix/styles/default-base.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1906,6 +1906,10 @@ span#wlan0 {
19061906
font-family: bitstream, monospace;
19071907
}
19081908

1909+
.font-sans {
1910+
font-family: clear-sans, sans-serif;
1911+
}
1912+
19091913
.text-center {
19101914
text-align: center;
19111915
}

0 commit comments

Comments
 (0)