Skip to content

Commit

Permalink
feat: documentation link in dialog footer is always visible (CASUP-110)
Browse files Browse the repository at this point in the history
  • Loading branch information
codescape committed Jun 8, 2024
1 parent 5338cca commit 6dc6e20
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ category: Administration

* fix: always open documentation in subtasks dialog in new window
* feat: ensure compatibility with Jira 9.15.0, 9.12.5, 9.4.18
* feat: documentation link in dialog footer is always visible (CASUP-110)

### [24.01.0] - 2024-01-27

Expand Down
17 changes: 9 additions & 8 deletions src/main/resources/css/multiple-subtasks.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
/* column widths on template pages */
.subtask-templates .template-counter {
min-width: 25px;
}
min-width: 25px; }

.subtask-templates .template-name {
min-width: 200px;
}
min-width: 200px; }

.subtask-templates .template-code pre {
white-space: pre-wrap;
}
white-space: pre-wrap; }

.subtask-templates .template-actions {
min-width: 100px;
}
min-width: 100px; }

/* text in dialog footer is always visible (CASUP-110) */
#multiple-subtasks-open-dialog-dialog #subtaskForm .aui-dialog2-footer-hint {
overflow: visible !important; }
4 changes: 2 additions & 2 deletions src/main/resources/templates/dialog.vm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</tbody>
</table>
</div>
<footer class="aui-dialog2-footer">
<footer class="aui-dialog2-footer">
<div class="aui-dialog2-footer-actions">
<input id="subtaskAction" type="hidden" name="action" value="reset">
<input class="aui-button" type="submit" value="$i18n.getText('multiplesubtasks.dialog.buttons.reset')" />
Expand Down Expand Up @@ -94,7 +94,7 @@
<textarea id="subtaskInputString" name="inputString" class="textarea long-field" rows="12" required="required" placeholder="$i18n.getText('multiplesubtasks.dialog.input.placeholder')">${inputString}</textarea>
</div>
</div>
<footer class="aui-dialog2-footer">
<footer class="aui-dialog2-footer">
<div class="aui-dialog2-footer-actions">
<input id="subtaskAction" type="hidden" name="action" value="create">
<input class="aui-button aui-button-primary" type="submit" value="$i18n.getText('multiplesubtasks.dialog.buttons.submit')" />
Expand Down

0 comments on commit 6dc6e20

Please sign in to comment.