SHA256
29 lines
672 B
CSS
29 lines
672 B
CSS
/* Shared overflow-dots trigger. */
|
|
|
|
/* ===== UI cleanup: main tabs, shared overflow menu and DM list (2026-08-22) ===== */
|
|
/* Единое вертикальное троеточие для всех overflow/menu-кнопок. */
|
|
.app-overflow-dots {
|
|
width: 8px;
|
|
height: 24px;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 3.5px;
|
|
color: inherit;
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
.app-overflow-dots i {
|
|
display: block;
|
|
width: 4px;
|
|
height: 4px;
|
|
flex: 0 0 4px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
box-shadow:
|
|
0 0 5px rgba(92, 190, 255, 0.72),
|
|
0 0 10px rgba(72, 145, 255, 0.34);
|
|
}
|