Minor css updates

This commit is contained in:
perploug
2013-09-26 15:35:44 +02:00
parent 0c350e9cc1
commit f2e7cff048
4 changed files with 13 additions and 23 deletions

View File

@@ -22,6 +22,11 @@ label.control-label {
padding-top: 8px !important;
}
.umb-status-label{
color: @gray !important;
}
.controls-row label{padding: 0px 10px 0px 10px; vertical-align: center}

View File

@@ -63,16 +63,7 @@ h1.headline{height: 40px; padding: 30px 0 0 20px;}
margin: -2px 0 0 0;
}
.umb-headline-editor-wrapper input{
display: none;
font-size: @fontSizeMedium
}
.umb-headline-editor-wrapper h1.umb-headline-editor:hover, .umb-headline-editor-wrapper input {
border-bottom: 1px dashed @grayLight;
}
.umb-headline-editor-wrapper input:focus {
.umb-headline-editor-wrapper input {
background: none;
border: none;
width: auto;

View File

@@ -42,7 +42,7 @@ data-file-upload="options" data-file-upload-progress="" data-ng-class="{'fileupl
ng-show="showFolderInput"
ng-model="newFolderName"
ng-keyup="submitFolder($event)"
ng-blur="showFolderInput = false">
on-blur="showFolderInput = false">
</li>
</ul>
</div>

View File

@@ -16,19 +16,13 @@ function startUpVideosDashboardController($scope, xmlhelper, $log, $http) {
}
angular.module("umbraco").controller("Umbraco.Dashboard.StartupVideosController", startUpVideosDashboardController);
function startupLatestEditsController($scope) {
}
angular.module("umbraco").controller("Umbraco.Dashboard.StartupLatestEditsController", startupLatestEditsController);
function MediaFolderBrowserDashboardController($scope, xmlhelper, $log, userResource) {
//this is the model we will pass to the service
$scope.profile = {};
$scope.changePassword = function (p) {
userResource.changePassword(p.oldPassword, p.newPassword).then(function () {
$scope.passwordForm.$setValidity(true);
}, function () {
//this only happens if there is a wrong oldPassword sent along
$scope.passwordForm.oldpass.$setValidity("oldPassword", false);
});
}
function MediaFolderBrowserDashboardController($scope) {
}
angular.module("umbraco").controller("Umbraco.Dashboard.MediaFolderBrowserDashboardController", MediaFolderBrowserDashboardController);