diff --git a/src/UI/System/Update/UpdateItemViewTemplate.hbs b/src/UI/System/Update/UpdateItemViewTemplate.hbs
index 408ec669b..3af52edad 100644
--- a/src/UI/System/Update/UpdateItemViewTemplate.hbs
+++ b/src/UI/System/Update/UpdateItemViewTemplate.hbs
@@ -4,13 +4,17 @@
- {{ShortDate releaseDate}}
- {{#if installed}}
-
- {{/if}}
-
- {{#if isUpgrade}}
- Install
- {{/if}}
+
+ {{#if installed}}
+ Installed
+ {{else}}
+ {{#if isUpgrade}}
+ Install
+ {{else}}
+ Install
+ {{/if}}
+ {{/if}}
+
{{#with changes}}
diff --git a/src/UI/System/Update/update.less b/src/UI/System/Update/update.less
index 6d4e8e944..1db354fd6 100644
--- a/src/UI/System/Update/update.less
+++ b/src/UI/System/Update/update.less
@@ -7,18 +7,23 @@
cursor : default;
margin-bottom : 5px;
line-height : 30px;
+ display : inline-block;
.date {
font-size : 16px;
+ display : inline-block;
+ }
+
+ .status {
+ margin-left : 5px;
+ font-size : 14px;
+ margin-top : -3px;
+ display : inline-block;
+ vertical-align : middle;
}
.install-update {
.clickable();
- margin-left : 10px;
- }
-
- .update-installed {
- margin-left : 10px;
}
}