diff --git a/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js b/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js index 6018533a36..5ac118e1f4 100644 --- a/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js +++ b/src/Umbraco.Web.UI.Client/src/installer/steps/database.controller.js @@ -2,10 +2,10 @@ angular.module("umbraco.install").controller("Umbraco.Installer.DataBaseControll $scope.checking = false; $scope.dbs = [ - {name: 'Embedded database SQL', id: 0}, - {name: 'Microsft SQL Server', id: 1}, + {name: 'Microsoft SQL Server Compact (SQL CE)', id: 0}, + {name: 'Microsoft SQL Server', id: 1}, {name: 'MySQL', id: 2}, - {name: 'Custom connection-string', id: -1}]; + {name: 'Custom connection string', id: -1}]; if(installerService.status.current.model.dbType === undefined){ installerService.status.current.model.dbType = 0; diff --git a/src/Umbraco.Web.UI.Client/src/less/installer.less b/src/Umbraco.Web.UI.Client/src/less/installer.less index 1e306419c4..45679589c3 100644 --- a/src/Umbraco.Web.UI.Client/src/less/installer.less +++ b/src/Umbraco.Web.UI.Client/src/less/installer.less @@ -277,4 +277,8 @@ height: 5px; overflow:auto; height:280px; display:block; +} + +select { + width:320px; } \ No newline at end of file