mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-22 05:42:46 +01:00
49 lines
802 B
CSS
49 lines
802 B
CSS
#channels {
|
|
width: 15vw;
|
|
min-width: 215px;
|
|
max-width: 300px;
|
|
overflow-y: auto;
|
|
color: #eee;
|
|
background-color: #1c1e22;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#channels > div.loading {
|
|
margin: 0 auto;
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
#channels > div.channel {
|
|
cursor: pointer;
|
|
padding: 10px 12px;
|
|
border-bottom: 1px solid #333333;
|
|
}
|
|
|
|
#channels > div.channel:hover, #channels > div.channel.active {
|
|
background-color: #282b30;
|
|
}
|
|
|
|
#channels .info {
|
|
display: flex;
|
|
height: 16px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
#channels .name {
|
|
flex-grow: 1;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#channels .tag {
|
|
flex-shrink: 1;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 4px;
|
|
margin-left: 4px;
|
|
margin-top: 1px;
|
|
padding: 2px 5px;
|
|
font-size: 11px;
|
|
}
|