Currently, I use a custom theme to achieve the following two goals:
- Hide the account list, which makes the interface visually cleaner.
- Since Chinese characters are short, the chat list appears a bit too wide, so I also reduce the minimum width of the chat list through the custom theme.
However, there is an issue with this approach — as new versions are released, the names of component styles often change. This means I have to update my theme configuration accordingly whenever DC releases a new version.
Therefore, I sincerely hope that the official version could provide built-in support for both an account list hiding option and the ability to customize the minimum width of the chat list. Thank you very much!
This is the custom theme code I used in version v1.59.1. In this version, the names of the style blocks changed to “o” and “z”.
@media (max-width: 1500px) {
.o {
display: none;
background-color: transparent;
}
}
.z {
flex-grow: 1;
min-width: 260px;
}
As shown in the image, in my opinion, it looks visually cleaner for Chinese users or cases where contact nicknames are relatively short.