File size: 1,092 Bytes
6efa67a |
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 43 44 45 46 47 48 49 50 51 52 53 54 55 |
.chatBackupsList {
display: flex;
flex-direction: column;
gap: 5px;
transition: height var(--animation-duration) ease;
max-height: min(25dvh, 250px);
overflow-y: auto;
border-radius: 10px;
border: 1px solid var(--SmartThemeBorderColor);
padding: 5px;
width: 100%;
}
.chatBackupsList:not(.open),
.chatBackupsList:empty {
display: none;
}
.chatBackupsListItem {
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: space-between;
gap: 10px;
width: 100%;
border: 1px solid var(--SmartThemeBorderColor);
border-radius: 5px;
padding: 5px 7px;
font-size: smaller;
background: var(--black30a);
}
.chatBackupsListItemName {
opacity: 0.75;
flex-grow: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.chatBackupsListItemInfo {
opacity: 0.75;
}
.chatBackupsListItemActions {
display: flex;
align-items: center;
gap: 5px;
}
.chatBackupsListItemActions .right_menu_button {
font-size: var(--mainFontSize);
}
|