MediaWiki:Common.css: відмінності між версіями
Admin (обговорення | внесок) (Кнопка Увійти у мобільному drawer стилізована як CTA) |
(Hide Minervas built-in p-navigation (Home/Random) from drawer) |
||
| Рядок 630: | Рядок 630: | ||
.skin-minerva #p-personal .minerva-icon { | .skin-minerva #p-personal .minerva-icon { | ||
filter: brightness(0) invert(1); | filter: brightness(0) invert(1); | ||
} | |||
/* MinervaNeue — прибрати вбудоване "Домашня"/"Випадкова" з drawer */ | |||
.skin-minerva #p-navigation { | |||
display: none; | |||
} | } | ||
Версія за 00:57, 10 травня 2026
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&display=swap');
/* Жорстка заборона Chrome Android Auto-Dark / Force Dark — сайт лише світлий */
:root { color-scheme: only light; }
html { background-color: #ffffff; color-scheme: only light; }
body { background-color: #ffffff; }
@media (prefers-color-scheme: dark) {
/* Сигнал браузеру: ми НЕ підтримуємо темну тему (та не намагайся її форсити) */
:root { color-scheme: only light !important; }
html, body { background-color: #ffffff !important; }
}
/* Place card — vertical layout (image top, body below) */
.place-card {
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #eef1f6;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 1px 8px rgba(0,0,0,.04);
transition: transform .15s ease, box-shadow .15s ease;
}
.place-card:hover {
transform: translateY(-2px);
box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 6px 18px rgba(0,0,0,.08);
}
.place-card__img {
width: 100%;
aspect-ratio: 16 / 10;
overflow: hidden;
background: #f5f7fb;
}
.place-card__img a, .place-card__img img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.place-card__body { padding: 14px 18px 18px; }
.place-card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; line-height: 1.25; }
.place-card__title a { color: #111827; text-decoration: none; }
.place-card__title a:hover { color: #2a6df4; }
.place-card__meta { font-size: 13px; color: #6b7280; margin: 0 0 10px; line-height: 1.5; }
.place-card__desc { font-size: 14px; line-height: 1.5; color: #374151; }
/* Grid: 2 columns desktop, 1 column mobile */
.places-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
margin: 16px 0;
}
@media (max-width: 640px) {
.places-grid { grid-template-columns: 1fr; }
}
/* Add-place button */
.add-place-btn{ text-align:center; margin:20px 0; }
.add-place-btn a{
display:inline-block; background:#2a6df4; color:#fff !important;
padding:10px 14px; border-radius:8px; text-decoration:none;
font-weight:600; box-shadow:0 1px 2px rgba(0,0,0,.12);
}
.add-place-btn a:hover{ background:#1f57c2; }
/* Banner image — responsive (full width on mobile, native on desktop) */
.banner-wrapper { width: 100%; }
.banner-wrapper img,
.banner-image img { max-width: 100%; height: auto; display: block; }
/* Wikitable — clean style: no borders, cells separated by white gaps over light-gray fill */
.wikitable {
background: transparent;
border: 0;
border-collapse: separate;
border-spacing: 3px;
margin: 1em 0;
color: inherit;
}
.wikitable > * > tr > th,
.wikitable > * > tr > td {
background: #f5f7fb;
border: 0;
padding: 12px 16px;
vertical-align: top;
}
.wikitable > * > tr > th {
background: #e8eef7;
font-weight: 600;
text-align: left;
}
/* PageForms — Place form: card layout, modern inputs */
.pf-place-form { max-width: 720px; margin: 0 auto; }
#pfForm { background: #fff; }
#pfForm .pf-place-form h2 {
font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px;
color: #6b7280; font-weight: 600; margin: 28px 0 12px;
padding-bottom: 6px; border-bottom: 1px solid #e8eef7;
}
#pfForm .pf-place-form h2:first-child { margin-top: 0; }
#pfForm dl { margin: 0 0 16px; }
#pfForm dt { font-size: 13px; color: #374151; font-weight: 600; margin-bottom: 6px; }
#pfForm dt small { font-weight: 400; color: #9ca3af; margin-left: 4px; }
#pfForm dd { margin: 0; }
#pfForm .inputSpan { display: block; }
#pfForm .createboxInput {
width: 100%; max-width: 100%; box-sizing: border-box;
padding: 10px 14px; font-size: 15px; line-height: 1.4;
background: #fafbfd; border: 1px solid #eef1f6; border-radius: 8px;
font-family: inherit; color: #111827;
transition: border-color .15s, background .15s, box-shadow .15s;
}
#pfForm .createboxInput:focus {
outline: none; background: #fff; border-color: #2a6df4;
box-shadow: 0 0 0 3px rgba(42,109,244,0.15);
}
#pfForm .createboxInput::placeholder { color: #9ca3af; }
#pfForm textarea { min-height: 110px; resize: vertical; }
#pfForm .pfUploadable {
display: inline-block; margin-top: 8px; font-size: 13px;
color: #2a6df4; text-decoration: none;
}
#pfForm .pfUploadable:hover { text-decoration: underline; }
/* coords row: keep Lat/Lon inputs side-by-side */
#pfForm .pf-coord-label { font-size: 13px; color: #6b7280; margin-right: 4px; }
#pfForm dd:has(.pf-coord-label) .inputSpan { display: inline-block; width: auto; }
#pfForm dd:has(.pf-coord-label) .createboxInput { width: 140px; display: inline-block; }
#pfForm dd:has(.pf-coord-label) { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
/* Logo wordmark — Manrope font + tagline */
.mw-logo { align-items: center; gap: 7px; overflow: visible !important; }
.mw-logo-icon { height: 43px !important; width: auto !important; flex-shrink: 0; }
.mw-logo-container,
.vector-header-start .mw-logo-container {
display: inline-block;
overflow: visible !important;
max-width: none !important;
width: auto !important;
}
.mw-logo-wordmark {
font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
font-weight: 700 !important;
font-size: 24px !important;
color: #1a2240 !important;
letter-spacing: -0.015em;
line-height: 1.1;
display: block;
white-space: nowrap;
overflow: visible;
}
.mw-logo-container::after {
content: 'вікіпедія для емігрантів';
display: block;
font-family: 'Manrope', system-ui, sans-serif;
font-size: 7px;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: #4b5d8c;
margin-top: 3px;
white-space: nowrap;
}
/* Search input — restrained, encyclopedic */
.vector-search-box .cdx-search-input,
.cdx-typeahead-search .cdx-search-input,
form.cdx-search-input {
border-radius: 999px !important;
background: #f4f6fa !important;
border: 1px solid transparent !important;
box-shadow: none !important;
transition: background 0.2s ease, border-color 0.2s ease;
overflow: hidden;
padding: 0 !important;
}
.vector-search-box .cdx-search-input:hover,
.cdx-typeahead-search .cdx-search-input:hover,
form.cdx-search-input:hover {
background: #eef1f7 !important;
}
.vector-search-box .cdx-search-input:focus-within,
.cdx-typeahead-search .cdx-search-input:focus-within,
form.cdx-search-input:focus-within {
background: #ffffff !important;
border-color: #1a2240 !important;
box-shadow: none !important;
}
.cdx-search-input .cdx-text-input,
.cdx-typeahead-search .cdx-text-input {
border: none !important;
background: transparent !important;
}
.cdx-search-input .cdx-text-input__input,
.cdx-typeahead-search .cdx-text-input__input {
background: transparent !important;
border: none !important;
box-shadow: none !important;
height: 38px !important;
padding: 0 16px 0 36px !important;
font-size: 14px !important;
color: #1a2240 !important;
}
.cdx-search-input .cdx-text-input__input::placeholder,
.cdx-typeahead-search .cdx-text-input__input::placeholder {
color: #8b95ad !important;
font-weight: 400;
}
.cdx-search-input .cdx-text-input__start-icon,
.cdx-typeahead-search .cdx-text-input__start-icon {
left: 12px !important;
top: 50% !important;
opacity: 0.5;
transform: translateY(-50%) scale(0.8) !important;
transform-origin: left center;
}
/* Ghost button — restrained */
.cdx-search-input .cdx-search-input__end-button,
.cdx-typeahead-search .cdx-search-input__end-button {
border-radius: 999px !important;
background: transparent !important;
color: #4b5d8c !important;
border: none !important;
padding: 0 16px !important;
height: 38px !important;
margin: 0 !important;
font-weight: 500 !important;
font-size: 13px !important;
letter-spacing: 0;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease;
}
.cdx-search-input .cdx-search-input__end-button:hover,
.cdx-typeahead-search .cdx-search-input__end-button:hover {
background: #eef1f7 !important;
color: #1a2240 !important;
}
/* Typeahead suggestions dropdown */
.cdx-typeahead-search .cdx-menu {
border-radius: 14px !important;
border: 1px solid #e3e7ef !important;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
margin-top: 6px !important;
overflow: hidden;
}
.cdx-typeahead-search .cdx-menu-item:hover,
.cdx-typeahead-search .cdx-menu-item--highlighted {
background: #f4f6fa !important;
}
/* Hide TOC header "Зміст сховати" in left sidebar */
#mw-panel-toc .vector-toc-pinnable-header { display: none !important; }
/* ============================================================
Page hero — повноширинний блок з заголовком на сторінках країн
============================================================
Hero рендериться як position:absolute всередині .mw-page-container-inner,
щоб не залежати від grid-колонок (mainMenu / pageContent).
.mw-page-container-inner отримує padding-top на висоту hero, щоб
контент починався під ним.
Поки сірий фон. Щоб поставити зображення — заміни значення
--page-hero-bg на url(...) (можна на конкретну країну).
*/
:root {
--page-hero-bg: #e8e8e8;
--page-hero-fg: #1a2240;
--page-hero-height: 500px;
}
/* Country-specific hero backgrounds */
body.page-🇷🇴_Румунія {
--page-hero-bg: url("/resources/assets/hero/romania.png");
--page-hero-fg: #ffffff;
}
body:is(.page-🇷🇴_Румунія) .mw-page-container-inner {
position: relative;
padding-top: calc(var(--page-hero-height) + 56px); /* hero + top offset (24) + bottom gap (32) */
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar {
position: absolute;
top: 24px;
left: 0;
right: 0;
width: auto;
height: var(--page-hero-height);
margin: 0;
padding: 0 32px;
background: var(--page-hero-bg);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 16px;
box-sizing: border-box;
z-index: 1;
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .firstHeading {
text-align: center;
font-size: 40px;
font-weight: 700;
color: var(--page-hero-fg);
margin: 0;
border: none;
padding: 0;
word-wrap: break-word;
line-height: 1.2;
}
/* Mobile: коротший hero */
@media screen and (max-width: 720px) {
body:is(.page-🇷🇴_Румунія) {
--page-hero-height: 220px;
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar {
padding: 0 16px;
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .firstHeading {
font-size: 28px;
}
}
/* Page Tools (Інструменти, правий sidebar) — закріплено назавжди.
Ховаємо кнопки pin/unpin і примусово показуємо sidebar навіть якщо
у юзера збережений unpinned стан в preferences/куках. */
[data-event-name^="pinnable-header.vector-page-tools."] {
display: none !important;
}
/* Сховати tabs "Обговорення" і "Головна" з UI */
#ca-talk, #ca-nstab-main { display: none !important; }
/* Toolbar (Читати / Редагувати / ...) переміщається JS всередину hero
і ставиться на 24px від нижнього краю, по центру */
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .vector-page-toolbar {
position: absolute;
bottom: 24px;
left: 0;
right: 0;
z-index: 2;
margin: 0;
padding: 0 24px;
display: flex;
justify-content: center;
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .vector-page-toolbar-container {
width: auto !important;
display: flex !important;
justify-content: center !important;
gap: 24px;
}
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .vector-page-toolbar a {
color: #ffffff !important;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
/* Прибрати суцільну горизонтальну лінію під toolbar (box-shadow Vector),
лишається лише підкреслення активної вкладки */
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar .vector-page-toolbar-container {
box-shadow: none !important;
}
/* Сховати dropdown "Інструменти" (#p-cactions) у toolbar в hero */
body:is(.page-🇷🇴_Румунія) .vector-page-titlebar #p-cactions {
display: none !important;
}
/* === Service cards (грід для Послуг — клінінг, переклад, доставка тощо) === */
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
margin: 16px 0;
}
@media (max-width: 640px) {
.services-grid { grid-template-columns: 1fr; }
}
.service-card {
box-sizing: border-box;
display: flex;
flex-direction: column;
background: #fff;
border: 1px solid #eef1f6;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 1px 2px rgba(0,0,0,.03), 0 1px 8px rgba(0,0,0,.04);
transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover {
transform: translateY(-2px);
box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 6px 18px rgba(0,0,0,.08);
}
.service-card__body { padding: 16px 20px 18px; }
.service-card__title {
font-size: 17px;
font-weight: 700;
margin: 0 0 8px;
line-height: 1.25;
}
.service-card__title a { color: #111827; text-decoration: none; }
.service-card__title a:hover { color: #2a6df4; }
.service-card__desc {
font-size: 14px;
line-height: 1.5;
color: #374151;
margin-bottom: 12px;
}
.service-card__meta {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 13px;
color: #4b5563;
border-top: 1px solid #f3f4f6;
padding-top: 10px;
}
.service-card__row {
line-height: 1.5;
padding-left: 22px;
background-repeat: no-repeat;
background-position: 0 4px;
background-size: 14px 14px;
}
.service-card__row a { color: #2a6df4; text-decoration: none; }
.service-card__row a:hover { text-decoration: underline; }
/* SVG-іконки (Heroicons solid, fill #4b5563, URL-encoded) */
.service-card__row--phone {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%234b5563%27%3E%3Cpath%20fill-rule%3D%27evenodd%27%20d%3D%27M1.5%204.5a3%203%200%200%201%203-3h1.372c.86%200%201.61.586%201.819%201.42l1.105%204.423a1.875%201.875%200%200%201-.694%201.955l-1.293.97c-.135.101-.164.249-.126.352a11.285%2011.285%200%200%200%206.197%206.197c.103.038.25.009.352-.126l.97-1.293a1.875%201.875%200%200%201%201.955-.694l4.423%201.105c.834.209%201.42.959%201.42%201.82V19.5a3%203%200%200%201-3%203h-2.25C8.552%2022.5%201.5%2015.448%201.5%206.75V4.5z%27%20clip-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E");
}
.service-card__row--telegram {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%234b5563%27%3E%3Cpath%20d%3D%27M3.478%202.405a.75.75%200%200%200-.926.94l2.432%207.905H13.5a.75.75%200%200%201%200%201.5H4.984l-2.432%207.905a.75.75%200%200%200%20.926.94%2060.519%2060.519%200%200%200%2018.445-8.986.75.75%200%200%200%200-1.218A60.517%2060.517%200%200%200%203.478%202.405z%27%2F%3E%3C%2Fsvg%3E");
}
.service-card__row--languages {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%234b5563%27%3E%3Cpath%20fill-rule%3D%27evenodd%27%20d%3D%27M9%202.25a.75.75%200%200%201%20.75.75v1.506a49.38%2049.38%200%200%201%205.343.371.75.75%200%201%201-.186%201.489c-.66-.083-1.323-.151-1.99-.206a18.67%2018.67%200%200%201-2.969%206.323c.317.384.65.753.998%201.107a.75.75%200%201%201-1.07%201.052A18.902%2018.902%200%200%201%209%2013.687a18.823%2018.823%200%200%201-5.656%204.482.75.75%200%201%201-.688-1.333%2017.323%2017.323%200%200%200%205.396-4.353A18.72%2018.72%200%200%201%205.89%208.598a.75.75%200%200%201%201.388-.568A17.21%2017.21%200%200%200%209%2011.224a17.17%2017.17%200%200%200%202.391-5.165%2048.038%2048.038%200%200%200-8.298.307.75.75%200%200%201-.186-1.489%2049.159%2049.159%200%200%201%205.343-.371V3A.75.75%200%200%201%209%202.25zM15.75%209a.75.75%200%200%201%20.68.433l5.25%2011.25a.75.75%200%201%201-1.36.634l-1.198-2.567h-6.744l-1.198%202.567a.75.75%200%200%201-1.36-.634l5.25-11.25A.75.75%200%200%201%2015.75%209zm-2.672%208.25h5.344l-2.672-5.726-2.672%205.726z%27%20clip-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E");
}
.service-card__row--website {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%234b5563%27%3E%3Cpath%20fill-rule%3D%27evenodd%27%20d%3D%27M12%202.25c-5.385%200-9.75%204.365-9.75%209.75s4.365%209.75%209.75%209.75%209.75-4.365%209.75-9.75S17.385%202.25%2012%202.25zM4.575%2015.6a8.25%208.25%200%200%200%209.348%204.425%201.966%201.966%200%200%200-1.84-1.275.983.983%200%200%201-.97-.822l-.073-.437c-.094-.565.25-1.11.8-1.267l.99-.282c.427-.123.783-.418.982-.816l.036-.073a1.453%201.453%200%200%201%202.328-.377L16.5%2015h.628a2.25%202.25%200%200%201%201.983%201.186%208.25%208.25%200%200%200-6.345-12.4c.044.262.18.503.389.676l1.068.89c.442.369.535%201.01.216%201.49l-.51.766a2.25%202.25%200%200%201-1.161.886l-.143.048a1.107%201.107%200%200%200-.57%201.664c.369.555.169%201.307-.427%201.605L9%2013.125l.423%201.059a.956.956%200%200%201-1.652.928l-.679-.906a1.125%201.125%200%200%200-1.906.143l-.476.952a.992.992%200%200%201-.785.572l-.504.054z%27%20clip-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E");
}
/* CTA-картка "Я виконавець, додати себе" — як service-card, але з пунктирною рамкою */
.service-card--cta {
align-items: center;
justify-content: center;
text-align: center;
background: #f8fafc;
border: 2px dashed #cbd5e1;
box-shadow: none;
color: #4b5563;
text-decoration: none;
padding: 16px 20px 18px;
transition: border-color .15s, background .15s, color .15s, transform .15s;
}
.service-card--cta:hover {
border-color: #2a6df4;
background: #f0f6ff;
color: #2a6df4;
transform: translateY(-2px);
box-shadow: none;
text-decoration: none;
}
.service-card--cta__plus {
width: 36px;
height: 36px;
border-radius: 50%;
background: #fff;
border: 1.5px solid currentColor;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
line-height: 1;
margin: 0 auto 10px;
}
.service-card--cta__title {
display: block;
font-weight: 600;
font-size: 15px;
color: inherit;
}
.service-card--cta__hint {
display: block;
font-size: 12px;
color: #6b7280;
margin-top: 4px;
}
.service-card--cta:hover .service-card--cta__hint { color: inherit; opacity: .85; }
/* extlink-обгортка навколо CTA-картки має заповнити висоту cargo-картки */
.services-grid > a {
display: flex;
text-decoration: none;
color: inherit;
}
.services-grid > a:hover { text-decoration: none; }
.services-grid > a > .service-card--cta {
flex: 1;
width: 100%;
display: flex;
flex-direction: column;
}
/* Прибираємо стрілочку external link зі всіх <a> у грідах послуг */
.services-grid > a.external {
background-image: none !important;
padding-right: 0 !important;
}
/* Гарантія однакової висоти CTA-картки і звичайних cargo-карток */
.services-grid { align-items: stretch; }
.services-grid > a { box-sizing: border-box; align-self: stretch; }
.services-grid > a > .service-card--cta { box-sizing: border-box; }
/* Mobile (MinervaNeue) — лого + назва сайту в шапці */
.skin-minerva .branding-box a {
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: inherit;
}
.skin-minerva .branding-box span img {
width: auto;
height: 28px;
display: block;
}
.skin-minerva .branding-box span::after {
content: "Країнопедія";
font-family: "Manrope", sans-serif;
font-weight: 700;
font-size: 17px;
color: #1a2240;
white-space: nowrap;
}
.skin-minerva .branding-box span {
display: inline-flex;
align-items: center;
gap: 8px;
}
/* MinervaNeue — секція "Міста" у бургер-drawer (нашого Common.js) */
.skin-minerva .cities-drawer-section {
border-top: 1px solid #eaecf0;
margin-top: 8px;
}
.skin-minerva .cities-drawer-section__heading {
margin: 0;
padding: 14px 16px 6px;
font-family: inherit;
font-size: 12px;
font-weight: 700;
color: #72777d;
text-transform: uppercase;
letter-spacing: 0.06em;
border: none;
background: transparent;
}
.skin-minerva .cities-drawer-section__list {
margin: 0;
padding: 0;
list-style: none;
}
.skin-minerva .cities-drawer-item .toggle-list-item__anchor {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 16px;
text-decoration: none;
color: #202122;
font-size: 16px;
}
.skin-minerva .cities-drawer-item .toggle-list-item__label {
flex: 1;
}
.skin-minerva .cities-drawer-item__icon {
width: 20px;
height: 20px;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%2354595d%27%3E%3Cpath%20fill-rule%3D%27evenodd%27%20d%3D%27M11.54%2022.351l.07.04.028.016a.76.76%200%2000.723%200l.028-.015.071-.041a16.975%2016.975%200%20001.144-.742%2019.58%2019.58%200%20002.683-2.282c1.944-1.99%203.963-4.98%203.963-8.827a8.25%208.25%200%2000-16.5%200c0%203.846%202.02%206.837%203.963%208.827a19.58%2019.58%200%20002.682%202.282%2016.975%2016.975%200%20001.145.742zM12%2013.5a3%203%200%20100-6%203%203%200%20000%206z%27%20clip-rule%3D%27evenodd%27%2F%3E%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: 18px 18px;
flex-shrink: 0;
}
/* Неіснуюча сторінка міста — приглушений колір + знак + */
.skin-minerva .cities-drawer-item--missing .toggle-list-item__label {
color: #9aa0a6;
}
.skin-minerva .cities-drawer-item--missing .cities-drawer-item__icon {
opacity: 0.45;
}
.skin-minerva .cities-drawer-item--missing .toggle-list-item__anchor::after {
content: "+";
margin-left: auto;
color: #9aa0a6;
font-size: 22px;
line-height: 1;
font-weight: 400;
}
/* MinervaNeue — кнопка "Увійти" виділена як CTA */
.skin-minerva #p-personal { padding: 6px 12px; }
.skin-minerva #p-personal .toggle-list-item {
margin: 0;
}
.skin-minerva #p-personal .toggle-list-item__anchor {
display: flex;
align-items: center;
gap: 12px;
background: #1a2240;
color: #ffffff !important;
border-radius: 10px;
padding: 12px 14px;
font-weight: 600;
transition: background .15s;
}
.skin-minerva #p-personal .toggle-list-item__anchor:hover,
.skin-minerva #p-personal .toggle-list-item__anchor:active {
background: #2a3358;
color: #ffffff !important;
}
.skin-minerva #p-personal .toggle-list-item__label {
color: #ffffff;
}
/* Зробити іконку білою (вона SVG-mask на background-image) */
.skin-minerva #p-personal .minerva-icon {
filter: brightness(0) invert(1);
}
/* MinervaNeue — прибрати вбудоване "Домашня"/"Випадкова" з drawer */
.skin-minerva #p-navigation {
display: none;
}