blob: eee1936753215c9a28a893491e963316bf0887dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Place conversation number before the title */
.js-notifications-group [id^='notification'] {
flex-direction: row !important;
}
/* Hide duplicate repository URL */
.js-notifications-group [id^='notification'] > .d-flex > .f6 {
font-size: 0 !important;
}
/* Size and position the conversation number */
.js-notifications-group [id^='notification'] > .d-flex > .f6 > span {
display: block;
font-size: 12px;
font-variant-numeric: tabular-nums;
margin-top: 2px; /* Align baseline with conversation title */
margin-right: 8px;
word-break: keep-all;
}
|