리브랜딩 - 서비스명 "종량제 시스템" → "GBLS", 헤더 로고에 풀네임(Garbage Bag Logistics System) 병기 (gov-portal·공통 브랜드·로그인/welcome 셸·타이틀·푸터 전반) 매뉴얼 - 신규 페이지 [로그인·회원가입·계정](01_account.md): 가입 항목·관리자 승인·2차 인증 흐름 - [화면 구성·워크스페이스·단축키]에 계정 전환 시 탭 초기화 안내 추가 워크스페이스(탭) - 탭 전환 시 좌측 사이드바 강조 동기화(메뉴 없는 화면은 강조 해제, 경로 폴백 매칭) - 소메뉴 좌측 아이콘(▸/·) 전부 제거 — 활성 메뉴는 배경 강조로만 구분 - 탭을 사용자(mb_idx)별로 격리: 다른 아이디 로그인 시 이전 탭 복원 안 함 - 사이드바 FAQ 링크 제거(자주 묻는 질문은 매뉴얼에 통합) 기본 코드관리 화면 - 업무현황 카드 스타일로 재디자인(가벼운 표·상태/범위 pill·단일 구분선) - render()에 $bare 옵션 추가 → 이미 카드형인 화면은 바깥 래퍼 생략 기타 - .claude/settings.local.json(개인 권한 설정) .gitignore 추가 - e2e: 워크스페이스(동기화·계정격리) + 매뉴얼(계정·단축키·검색) 케이스 보강 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
36 lines
1.6 KiB
PHP
36 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* GBLS — 미니멀 에코 마크 (링 + 잎)
|
|
*
|
|
* @var string $svgClass Tailwind classes for the SVG root
|
|
*/
|
|
$svgClass = $svgClass ?? 'h-6 w-6 shrink-0';
|
|
$gid = 'jrMark_' . bin2hex(random_bytes(4));
|
|
?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="<?= esc($svgClass, 'attr') ?>" aria-hidden="true" focusable="false">
|
|
<defs>
|
|
<linearGradient id="<?= esc($gid, 'attr') ?>_ring" x1="5" y1="5" x2="19" y2="19" gradientUnits="userSpaceOnUse">
|
|
<stop offset="0" stop-color="#10b981"/>
|
|
<stop offset="1" stop-color="#047857"/>
|
|
</linearGradient>
|
|
<linearGradient id="<?= esc($gid, 'attr') ?>_leaf" x1="12" y1="6" x2="12" y2="18.5" gradientUnits="userSpaceOnUse">
|
|
<stop offset="0" stop-color="#6ee7b7"/>
|
|
<stop offset="1" stop-color="#059669"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="12" cy="12" r="10.5" fill="#f7fefb"/>
|
|
<!-- 외곽 링: 우상단을 비우고 화살표로 순환감을 최소 요소로 표현 -->
|
|
<path fill="none"
|
|
stroke="url(#<?= esc($gid, 'attr') ?>_ring)"
|
|
stroke-width="1.8"
|
|
stroke-linecap="round"
|
|
d="M8.1 5.5a7.8 7.8 0 107.9 1.7"/>
|
|
<path d="M18.5 4.95l1.7 1.45-2.22.62z" fill="#059669"/>
|
|
<!-- 중앙 잎 -->
|
|
<path fill="url(#<?= esc($gid, 'attr') ?>_leaf)"
|
|
d="M12 5.7C9.55 7.35 8.75 10.25 10.95 14.95C11.35 15.8 11.7 16.45 12 16.95C12.3 16.45 12.65 15.8 13.05 14.95C15.25 10.25 14.45 7.35 12 5.7z"/>
|
|
<path stroke="#ecfdf5" stroke-width="0.65" stroke-linecap="round" fill="none" d="M11.95 7.55C11.85 10.2 11.95 12.45 12.05 15.35"/>
|
|
</svg>
|