Skip to content

Commit 214b281

Browse files
author
Kristan Kenney
committed
Merge branch 'fix/disable-web-update' into main
2 parents 4f6d96e + 2d6ec53 commit 214b281

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

install/deb/themes/dark.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ div.l-content > div.l-separator:nth-of-type(4) {
502502

503503
.units .l-unit.l-unit--outdated {
504504
color: #d4d4d4;
505-
background-color: #760000;
505+
background-color: #981111;
506506
}
507507

508508
.l-unit--outdated.selected {

web/css/src/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,6 +1710,10 @@ div.l-content > div.l-separator:nth-of-type(4) {
17101710
color: #4b4b4b;
17111711
}
17121712

1713+
.body-updates .units .l-unit.l-unit--outdated .fas.fa-box-open {
1714+
color: #da1010;
1715+
}
1716+
17131717
.l-unit--suspended .l-unit__name,
17141718
.l-unit--suspended b,
17151719
.l-unit--outdated .l-unit__name,

web/css/styles.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/templates/admin/list_updates.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
} ?>
1010
</div>
1111
<div class="l-sort-toolbar clearfix">
12+
<!-- Disable option to perform package updates via web due to timeout issues with current implementation
1213
<table>
1314
<tr>
1415
<td>
@@ -24,6 +25,7 @@
2425
</td>
2526
</tr>
2627
</table>
28+
-->
2729
</div>
2830
</div>
2931
</div>
@@ -34,8 +36,9 @@
3436
<div class="header table-header">
3537
<div class="l-unit__col l-unit__col--right">
3638
<div>
37-
<div class="clearfix l-unit__stat-col--left super-compact">
38-
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
39+
<div class="clearfix l-unit__stat-col--left super-compact center">
40+
&nbsp;
41+
<!-- <input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');"> -->
3942
</div>
4043
<div class="clearfix l-unit__stat-col--left wide"><b><?php print _('Package');?></b></div>
4144
<div class="clearfix l-unit__stat-col--left wide-5"><b><?php print _('Description');?></b></div>
@@ -65,8 +68,9 @@
6568

6669
<div class="l-unit__col l-unit__col--right">
6770
<div>
68-
<div class="clearfix l-unit__stat-col--left super-compact">
69-
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="pkg[]" value="<?php echo $key ?>">
71+
<div class="clearfix l-unit__stat-col--left super-compact center">
72+
<i class="fas fa-box-open status-icon dim"></i>
73+
<!-- <input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="pkg[]" value="<?php echo $key ?>"> -->
7074
</div>
7175
<div class="clearfix l-unit__stat-col--left wide"><b><?=$key?></b></div>
7276
<div class="clearfix l-unit__stat-col--left wide-5"><?=_($data[$key]['DESCR'])?></div>

0 commit comments

Comments
 (0)