Goondex/internal/web/static/css/gx/GX_SelectMenu.html
Stu Leak 16fb407a3c v0.1.0-dev4: Add web frontend with UI component library
- Implement full web interface with Go html/template server
- Add GX component library (buttons, dialogs, tables, forms, etc.)
- Create scene/performer/studio/movie detail and listing pages
- Add Adult Empire scraper for additional metadata sources
- Implement movie support with database schema
- Add import and sync services for data management
- Include comprehensive API and frontend documentation
- Add custom color scheme and responsive layout

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 10:47:30 -05:00

17 lines
565 B
HTML

<div class="gx-select" data-select-id="example">
<div class="gx-select-trigger">
<span class="gx-select-value">Choose an option</span>
<span class="arrow"></span>
</div>
<ul class="gx-select-menu">
<li class="gx-select-item" data-value="1">Option One</li>
<li class="gx-select-item" data-value="2">Option Two</li>
<li class="gx-select-item" data-value="3">Option Three</li>
<li class="gx-select-divider"></li>
<li class="gx-select-item" data-value="danger">Danger Zone</li>
</ul>
</div>