Files
roi-theme/wp-content/plugins/thrive-ultimatum/tcb/inc/backbone/element-states.phtml
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

26 lines
1.3 KiB
PHTML
Executable File

<div class="state-section">
<a href="javascript:void(0)" class="click state-switch trigger" data-fn="toggle_dropdown">
<span class="label"><?php echo __( 'State:', 'thrive-cb' ); ?></span>
<strong class="state-action">
<span class="current-state"><?php echo __( 'Normal', 'thrive-cb' ); ?></span>
<span class="chevron"><?php tcb_icon( 'chevron-down-regular' ); ?></span>
</strong>
</a>
<button class="click reset-state-button tcb-hidden" data-fn="toggleResetState" data-tooltip="Reset State">
<span><?php tcb_icon( 'reset' ); ?></span>
</button>
<ul class="drop-content tcb-hidden">
<li class="selected" data-state="default">
<a href="javascript:void(0)" class="click" data-state="default" data-fn="done"><?php echo __( 'Normal', 'thrive-cb' ) ?></a>
</li>
<li data-state="hover">
<a href="javascript:void(0)" class="click" data-state="hover" data-fn="state_select"><?php echo __( 'Hover', 'thrive-cb' ) ?></a>
</li>
<li data-state="active" class="tcb-hidden">
<a href="javascript:void(0)" class="click" data-state="active" data-fn="state_select"><?php echo __( 'Active', 'thrive-cb' ) ?></a>
</li>
<li data-state="expanded" class="tcb-hidden">
<a href="javascript:void(0)" class="click" data-state="expanded" data-fn="state_select"><?php echo __( 'Expanded', 'thrive-cb' ) ?></a>
</li>
</ul>
</div>