diff --git a/editor/public/custom.css b/editor/public/custom.css index 3629310..5566e2f 100644 --- a/editor/public/custom.css +++ b/editor/public/custom.css @@ -315,6 +315,17 @@ textarea.form-control { max-height: 115px !important; } +.textareaFileDetails textarea.textarea-customstyle { + height: 75px !important; +} + +.textareaFileDetails { + margin-top: 6px; + margin-bottom: 6px; + position: relative; + padding-right: 15px; +} + .modal-content .modal-body textarea { height: 52px !important; } @@ -427,14 +438,14 @@ h4 { .icon-example { position: absolute; - z-index: 9999; + z-index: 1; right: 19px; bottom: 3px; } .icon-example:after { content: url(img/maximize-2.svg); position: absolute; - z-index: 9999; + z-index: 1; right: 6px; bottom: 3px; cursor: pointer; diff --git a/editor/src/components/FileDetails.vue b/editor/src/components/FileDetails.vue index 0abadef..770bc68 100644 --- a/editor/src/components/FileDetails.vue +++ b/editor/src/components/FileDetails.vue @@ -21,6 +21,14 @@ Name: + + Notes: + +
+ +
+ + Platform: @@ -36,27 +44,28 @@ diff --git a/editor/src/components/Inputs/ApplicableToCollapse.vue b/editor/src/components/Inputs/ApplicableToCollapse.vue index 15dd978..f5ea966 100644 --- a/editor/src/components/Inputs/ApplicableToCollapse.vue +++ b/editor/src/components/Inputs/ApplicableToCollapse.vue @@ -69,7 +69,13 @@
- +
@@ -171,57 +177,57 @@ export default { defaultKVKeys: Object.keys(this.emptyObject), showHelptextScore: false, currentModal: '', - commentModal: '' + commentModal: '', }; }, mixins: [notificationMixin, pageDetailMixin], props: { title: { type: String, - required: true + required: true, }, applicable_to: { type: Array, - required: true + required: true, }, showLocation: { type: Boolean, required: false, - default: true + default: true, }, helpText: { type: String, - required: true + required: true, }, scores: { type: Array, - required: true + required: true, }, scoresTooltip: { type: Object, - required: true + required: true, }, defaultScore: { type: Number, - required: true + required: true, }, showAutoGenerated: { type: Boolean, required: false, - default: false + default: false, }, emptyScoreEntry: { type: Object, - required: true + required: true, }, helptextScore: { type: String, - required: true + required: true, }, emptyObject: { type: Object, - required: true - } + required: true, + }, }, components: { ListEditor, @@ -230,7 +236,7 @@ export default { ScoreLogbook, ScoreSlider, Icons, - ExtendedTextarea + ExtendedTextarea, }, methods: { escapeKeyListener: function(evt) { @@ -329,8 +335,8 @@ export default { }, editCommentCallback(b) { this.commentModal = b; - } - } + }, + }, }; diff --git a/editor/src/components/Inputs/ExtendedTextarea.vue b/editor/src/components/Inputs/ExtendedTextarea.vue index 755ac40..d108f51 100644 --- a/editor/src/components/Inputs/ExtendedTextarea.vue +++ b/editor/src/components/Inputs/ExtendedTextarea.vue @@ -1,6 +1,12 @@