mirror of
https://github.com/stashapp/stash.git
synced 2026-05-01 03:10:56 +02:00
Fixes package manger head border (#4420)
This commit is contained in:
parent
910c7025dc
commit
b968aa3f31
3 changed files with 18 additions and 0 deletions
|
|
@ -224,6 +224,9 @@ const InstalledPackagesList: React.FC<{
|
|||
</th>
|
||||
) : undefined}
|
||||
</tr>
|
||||
<tr>
|
||||
<th className="border-row" colSpan={100}></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>{renderBody()}</tbody>
|
||||
</Table>
|
||||
|
|
@ -983,6 +986,9 @@ const AvailablePackagesList: React.FC<{
|
|||
<FormattedMessage id="package_manager.description" />
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th className="border-row" colSpan={100}></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>{renderBody()}</tbody>
|
||||
</Table>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,10 @@
|
|||
.package-manager-table-container {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
|
||||
th {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
table thead {
|
||||
|
|
|
|||
|
|
@ -491,6 +491,14 @@ textarea.text-input {
|
|||
}
|
||||
}
|
||||
|
||||
/* stylelint-disable declaration-no-important */
|
||||
.border-row {
|
||||
background-color: #414c53;
|
||||
height: 1px;
|
||||
padding: 0 !important;
|
||||
}
|
||||
/* stylelint-enable declaration-no-important */
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.row.justify-content-center {
|
||||
margin-left: 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue