33 lines
580 B
CSS
33 lines
580 B
CSS
/**
|
|
* ident_switch - Account switcher styles.
|
|
*
|
|
* Copyright (C) 2026 Gecka
|
|
*
|
|
* Licensed under AGPL-3.0+.
|
|
*
|
|
* @url https://github.com/Gecka-apps/ident_switch
|
|
*/
|
|
|
|
/* Wrapper around <select> + badge */
|
|
.ident-switch-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Unread badge */
|
|
.ident-switch-badge {
|
|
flex-shrink: 0;
|
|
min-width: 1.4em;
|
|
padding: 0.2em 0.5em;
|
|
font-size: 0.7em;
|
|
font-weight: bold;
|
|
line-height: 1.3;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
color: #fff;
|
|
background-color: #e74c3c;
|
|
border-radius: 1em;
|
|
margin-left: 0.3em;
|
|
}
|