diff --git a/src/app/components/ShipSummaryTable.jsx b/src/app/components/ShipSummaryTable.jsx index e30baca6..80d93f23 100644 --- a/src/app/components/ShipSummaryTable.jsx +++ b/src/app/components/ShipSummaryTable.jsx @@ -100,16 +100,16 @@ export default class ShipSummaryTable extends TranslatedComponent {
| {translate('explres')} | {translate('kinres')} | {translate('thermres')} | -{translate('damage from ') + ' ' + translate('absolute')} | -{translate('damage from ') + ' ' + translate('explosive')} | -{translate('damage from ') + ' ' + translate('kinetic')} | -{translate('damage from ') + ' ' + translate('thermal')} | +{translate('absolute') + ' ' + translate('HP')} | +{translate('explosive') + ' ' + translate('HP')} | +{translate('kinetic') + ' ' + translate('HP')} | +{translate('thermal') + ' ' + translate('HP')} | {translate('recovery')} | {translate('recharge')} | {translate('kinres')} | {translate('thermres')} | -{translate('damage from ') + ' ' + translate('absolute')} | -{translate('damage from ') + ' ' + translate('explosive')} | -{translate('damage from ') + ' ' + translate('kinetic')} | -{translate('damage from ') + ' ' + translate('thermal')} | +{translate('absolute') + ' ' + translate('HP')} | +{translate('explosive') + ' ' + translate('HP')} | +{translate('kinetic') + ' ' + translate('HP')} | +{translate('thermal') + ' ' + translate('HP')} | {translate('raw module armour')} | {translate('internal protection')} | diff --git a/src/less/outfit.less b/src/less/outfit.less index 521f5c2c..33dc7196 100755 --- a/src/less/outfit.less +++ b/src/less/outfit.less @@ -74,6 +74,12 @@ .user-select-none(); width: 100%; border-collapse: collapse; + + & > thead.blue { + background-color: @secondary; + border-left: 1px solid @primary-bg; + color: @primary-bg; + } } }
|---|