Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Jan 4, 2025
1 parent 082db86 commit 9b1cf7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
6 changes: 4 additions & 2 deletions www/public/resources/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,12 @@ input::placeholder {
display: block;
width: 19px;
height: 19px;
line-height: 18px !important;
line-height: 19px !important;
padding: unset;
text-align: center;
border-radius: 50%;
font-size: 9px;
font-size: 7px;
font-family: 'archivo';
box-shadow: rgb(0 0 0) 0px 10px 13px -12px, rgb(0 0 0 / 15%) 0px 0px 10px 2px;
}
.label-pkg-rpm {
Expand Down
2 changes: 1 addition & 1 deletion www/public/resources/styles/stats-hosts.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
min-width: 20px;
text-align: center;
border-radius: 60px;
padding: 2px 5px;
padding: 0 1px;
}

.host-additionnal-info {
Expand Down
11 changes: 1 addition & 10 deletions www/views/includes/repos-list.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,28 +179,19 @@
$printEmptyLine = true;
}

/**
* Print empty line
*/
// if ($printEmptyLine) {
// echo '<div class="item-empty-line"></div>';
// continue;
// }

/**
* Print double empty line
*/
if ($printDoubleEmptyLine) {
echo '<div class="item-empty-line"></div>';
// echo '<div class="item-empty-line"></div>';
} ?>

<div class="item-repo" name="<?= $name ?>" dist="<?= $dist ?>" section="<?= $section ?>" releasever="<?= $releaseVersion ?>">
<?php
if ($printRepoName) : ?>
<div class="flex align-item-center column-gap-8">
<span class="copy bold wordbreakall"><?= $name ?></span>
<span class="label-pkg-<?= $packageType ?>" title="This repository contains <?= $packageType ?> packages"><?= $packageType ?></span>
<span class="label-pkg-<?= $packageType ?>" title="This repository contains <?= $packageType ?> packages"><?= strtoupper($packageType) ?></span>
</div>
<?php
endif;
Expand Down

0 comments on commit 9b1cf7a

Please sign in to comment.