@@ -204,7 +204,7 @@ export default {
204
204
</button >
205
205
<div class =" menu left transition" id =" diff-commit-selector-menu" :class =" {visible: menuVisible}" v-show =" menuVisible" v-cloak :aria-expanded =" menuVisible ? 'true': 'false'" >
206
206
<div class =" loading-indicator is-loading" v-if =" isLoading" />
207
- <div v-if =" !isLoading" class =" vertical item gt-df gt-fc gt-gap-2 " id =" diff-commit-list-show-all" role =" menuitem" @keydown.enter =" showAllChanges()" @click =" showAllChanges()" >
207
+ <div v-if =" !isLoading" class =" vertical item" id =" diff-commit-list-show-all" role =" menuitem" @keydown.enter =" showAllChanges()" @click =" showAllChanges()" >
208
208
<div class =" gt-ellipsis" >
209
209
{{ locale.show_all_commits }}
210
210
</div >
@@ -215,7 +215,7 @@ export default {
215
215
<!-- only show the show changes since last review if there is a review AND we are commits ahead of the last review -->
216
216
<div
217
217
v-if =" lastReviewCommitSha != null" role =" menuitem"
218
- class =" vertical item gt-df gt-fc gt-gap-2 tw-border-t tw-border-t-secondary "
218
+ class =" vertical item"
219
219
:class =" {disabled: commitsSinceLastReview === 0}"
220
220
@keydown.enter =" changesSinceLastReviewClick()"
221
221
@click =" changesSinceLastReviewClick()"
@@ -227,10 +227,10 @@ export default {
227
227
{{ commitsSinceLastReview }} commits
228
228
</div >
229
229
</div >
230
- <span v-if =" !isLoading" class =" info tw-border-t tw-border-t-secondary text light-2" >{{ locale.select_commit_hold_shift_for_range }}</span >
230
+ <span v-if =" !isLoading" class =" info text light-2" >{{ locale.select_commit_hold_shift_for_range }}</span >
231
231
<template v-for =" commit in commits " :key =" commit .id " >
232
232
<div
233
- class =" vertical item gt-df gt-gap-2 tw-border-t tw-border-t-secondary " role =" menuitem"
233
+ class =" vertical item" role =" menuitem"
234
234
:class =" {selection: commit.selected, hovered: commit.hovered}"
235
235
@keydown.enter.exact =" commitClicked(commit.id)"
236
236
@keydown.enter.shift.exact =" commitClickedShift(commit)"
@@ -285,10 +285,14 @@ export default {
285
285
width : 350px ;
286
286
}
287
287
288
- #diff-commit-selector-menu .item {
288
+ #diff-commit-selector-menu .item ,
289
+ #diff-commit-selector-menu .info {
290
+ display : flex !important ;
289
291
flex-direction : row ;
290
292
line-height : 1.4 ;
291
293
padding : 7px 14px !important ;
294
+ border-top : 1px solid var (--color-secondary ) !important ;
295
+ gap : 0.25em ;
292
296
}
293
297
294
298
#diff-commit-selector-menu .item :focus {
0 commit comments