blob: e7081deb502df3427d2f230da209e323cda4229c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* Move "close issue" and "cancel" buttons on authoring comments to the left */
/* ...in issue comment form */
#issuecomment-new #partial-new-comment-form-actions > .d-flex {
justify-content: space-between !important;
}
/* ...in comment edit form */
div.previewable-edit .previewable-comment-form .form-actions {
margin-left: 10px;
float: none !important;
}
.previewable-edit
.previewable-comment-form
.form-actions
.btn.js-comment-cancel-button {
float: left !important;
}
/* ...in inline comment form */
div.inline-comment-form .form-actions,
.inline-comment-form .form-actions .js-hide-inline-comment-form {
float: none;
}
/* ...in the merge confirmation form */
.commit-form-actions .select-menu {
display: block !important;
}
.commit-form-actions button:not(.js-merge-commit-button) {
float: right;
}
|