diff --git a/app/assets/stylesheets/content/work_packages/_work_packages_show_view_overwrite.scss b/app/assets/stylesheets/content/work_packages/_work_packages_show_view_overwrite.scss index 3ec9e98511..2446f73107 100644 --- a/app/assets/stylesheets/content/work_packages/_work_packages_show_view_overwrite.scss +++ b/app/assets/stylesheets/content/work_packages/_work_packages_show_view_overwrite.scss @@ -241,15 +241,18 @@ body.controller-work_packages.action-show { padding-bottom: 0; } - .work-packages--details--subject, - .work-packages--type-selector, + .work-packages--subject-element, .work-packages--details--subject .wp-inline-edit--field { font-size: 1.5rem; font-weight: bold; line-height: 34px; } - .work-packages--details--subject .wp-inline-edit--field { + .work-packages--type-selector .wp-inline-edit--field { + line-height: 34px; + } + + .work-packages--subject-element .wp-inline-edit--field { height: auto; padding: 0; } @@ -257,15 +260,13 @@ body.controller-work_packages.action-show { } .work-packages--split-view { - .work-packages--details--subject, - .work-packages--type-selector, + .work-packages--subject-element, .work-packages--details--subject .wp-inline-edit--field { font-size: 1.125rem; font-weight: bold; } - .work-packages--details--subject, - .work-packages--type-selector { + .work-packages--subject-element { line-height: 24px; .wp-inline-edit--field { diff --git a/frontend/app/components/work-packages/wp-subject/wp-subject.directive.html b/frontend/app/components/work-packages/wp-subject/wp-subject.directive.html index 8fa0512c1d..c97e4448bc 100644 --- a/frontend/app/components/work-packages/wp-subject/wp-subject.directive.html +++ b/frontend/app/components/work-packages/wp-subject/wp-subject.directive.html @@ -1,12 +1,12 @@
-
+ class="work-packages--details--subject work-packages--subject-element">
diff --git a/frontend/app/components/wp-edit/field-types/wp-edit-select-field.directive.html b/frontend/app/components/wp-edit/field-types/wp-edit-select-field.directive.html index eecf9885b8..db4095ea33 100644 --- a/frontend/app/components/wp-edit/field-types/wp-edit-select-field.directive.html +++ b/frontend/app/components/wp-edit/field-types/wp-edit-select-field.directive.html @@ -5,7 +5,6 @@ ng-change="vm.handleUserSubmit()" ng-required="vm.field.required" ng-focus="vm.handleUserFocus()" - ng-blur="vm.handleUserBlur()" ng-disabled="vm.workPackage.inFlight" focus="vm.shouldFocus()" focus-priority="vm.shouldFocus()" diff --git a/frontend/app/components/wp-edit/field-types/wp-edit-text-field.directive.html b/frontend/app/components/wp-edit/field-types/wp-edit-text-field.directive.html index a4adcc6da3..f1f6aaab60 100644 --- a/frontend/app/components/wp-edit/field-types/wp-edit-text-field.directive.html +++ b/frontend/app/components/wp-edit/field-types/wp-edit-text-field.directive.html @@ -4,7 +4,6 @@ ng-model="vm.workPackage[vm.fieldName]" ng-required="vm.field.required" ng-focus="vm.handleUserFocus()" - ng-blur="vm.handleUserBlur()" ng-disabled="vm.workPackage.inFlight" ng-keydown="vm.handleUserSubmitOnEnter($event)" focus="vm.shouldFocus()"