UI chrome via react-i18next, catalog text in entity_translations with ru.wikipedia seeding, locale-aware search, and Translations page for publish workflow. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
461 B
CSS
27 lines
461 B
CSS
.locale-switcher {
|
|
display: inline-flex;
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.locale-switcher-btn {
|
|
background: transparent;
|
|
color: inherit;
|
|
border: none;
|
|
padding: 0.25rem 0.55rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.locale-switcher-btn-active {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
opacity: 1;
|
|
}
|
|
|
|
.locale-switcher-btn:hover {
|
|
opacity: 1;
|
|
}
|