fix: 지도 호출부별 선택 동작을 분리

메인 지도는 선택 테두리를 숨기고 명령 대상 지도는 터치 첫 탭에 도시와 국가를 선택하도록 분리한다. 현재 도시는 반복 점멸 대신 고정 고대비 이중 링으로 강조한다.
This commit is contained in:
2026-08-21 15:25:14 +00:00
parent c6b916f0c2
commit 1d473cf704
6 changed files with 140 additions and 12 deletions
+7
View File
@@ -481,6 +481,13 @@ test('map keeps desktop hover navigation and lets touch users choose one-tap or
await expect(page.locator('.map-tooltip .tooltip-title')).toHaveText('【하북|특】업');
await desktopCity.click();
await expect(page).toHaveURL(/\/current-city\?cityId=1$/u);
await page.goBack();
await expect(page).toHaveURL(/\/global-info$/u);
const retainedSelection = page.locator('.city-base').first();
await expect(retainedSelection).toHaveClass(/selected/);
expect(
await retainedSelection.locator('.city-icon').evaluate((element) => getComputedStyle(element).boxShadow)
).toContain('255, 235, 150');
const configuredBaseUrl = testInfo.project.use.baseURL;
if (typeof configuredBaseUrl !== 'string') {