Custom CSS ⎗ ✓ 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 35 36 37 38 39 40 41 42.flex-container.alignItemsBaseline { display: flex; align-items: baseline; } .name_text, .mes_ghost, .timestamp { vertical-align: baseline; } .name_text { order: 1; } .mes_ghost { order: 2; } .timestamp { order: 3; font-size: 0; display: inline-flex; align-items: baseline; } .name_text, .mes_ghost { margin-right: 5px; } .timestamp { margin-left: 5px; } .timestamp::after { order: 2; font-size: calc(var(--mainFontSize) * 0.8); color: var(--secondary-color); content: attr(title); margin-left: 5px; } .timestamp[title*="undefined - undefined"]::after { content: "Unknown model"; } .timestamp-icon { order: 1; display: inline-flex; align-items: baseline; } .icon-svg { height: 1em; width: auto; } body.no-modelIcons .timestamp-icon { display: none; } body.no-modelIcons .timestamp::after { margin-left: 0; } body.no-timestamps .timestamp { display: inline-flex !important; color: transparent; }