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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* Created by PhpStorm.
* User: Ovidiu
* Date: 2/9/2018
* Time: 2:48 PM
*/
?>
<label><?php echo __( 'Select Background Effect', 'thrive-cb' ) ?></label>
<div class="drop-panel-control tcb-background-effect-select tve-control"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="opacity"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="grayscale"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="brightness"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="sepia"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="contrast"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="invert"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="saturate"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="blur"></div>
<div class="drop-panel-control tcb-background-effect-slider tve-control" data-key="hue-rotate"></div>

View File

@@ -0,0 +1,43 @@
<div class="image-picker-wrapper"></div>
<div class="control-grid">
<div>
<label><?php echo __( 'Image display', 'thrive-cb' ) ?></label>
<select id="bg-image-prop" class="change" data-fn="prop">
<option value="size:auto"><?php echo __( 'Default', 'thrive-cb' ) ?></option>
<option value="size:cover"><?php echo __( 'Cover', 'thrive-cb' ) ?></option>
<option value="size:contain"><?php echo __( 'Contain', 'thrive-cb' ) ?></option>
<option value="size:percentage"><?php echo __( 'Percentage', 'thrive-cb' ) ?></option>
</select>
</div>
<div class="tve-scale-fit">
<div class="bg-image-position-area tcb-disabled">
<div class="bg-image-control click" data-fn="set_position" data-value="0%:0%" style="position: absolute; top:-3px; left: -3px;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="50%:0%" style="position: absolute; top:-4px; left: 45%;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="100%:0%" style="position: absolute; top:-3px; right: -3px;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="0%:50%" style="position: absolute; top:45%; left: -4px;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="50%:50%" style="position: absolute; top:45%; left: 45%;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="100%:50%" style="position: absolute; top:45%; right: -4px;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="0%:100%" style="position: absolute; bottom: -3px; left: -3px;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="50%:100%" style="position: absolute; bottom: -4px; left: 45%;"></div>
<div class="bg-image-control click" data-fn="set_position" data-value="100%:100%" style="position: absolute; bottom:-3px; right: -3px;"></div>
</div>
</div>
</div>
<div class="control-grid tve-background-image-repeat tcb-hidden">
<div>
<label><?php echo __( 'Repeat', 'thrive-cb' ) ?></label>
<select id="bg-image-repeat-prop" class="change" data-fn="prop">
<option value="repeat:no-repeat"><?php echo __( 'No repeat', 'thrive-cb' ) ?></option>
<option value="repeat:repeat-y"><?php echo __( 'Repeat vertically', 'thrive-cb' ) ?></option>
<option value="repeat:repeat-x"><?php echo __( 'Repeat horizontally', 'thrive-cb' ) ?></option>
<option value="repeat:repeat"><?php echo __( 'Repeat both', 'thrive-cb' ) ?></option>
</select>
</div>
</div>
<div class="tve-image-size-percentages">
<div class="drop-panel-control tve-image-width tve-control"></div>
<div class="drop-panel-control tve-image-height tve-control"></div>
</div>
<div class="control-grid p-0 tve-static-background-image-control">
<label class="tcb-checkbox"><input type="checkbox" class="change" id="bg-static" data-fn="static" value="1"><span><?php echo __( 'Static background image', 'thrive-cb' ) ?></span></label>
</div>

View File

@@ -0,0 +1,16 @@
<div class="tve-drag-image-wrapper">
<div class="tve-drag-image tve-drag-image-overlay"></div>
<div class="tve-drag-image tve-drag-image-handle" data-key="default">
<?php tcb_icon( 'arrows-alt-regular' ) ?>
<span><?php echo __( 'Drag to Reposition', 'thrive-cb' ) ?></span>
</div>
<div class="tve-drag-image tve-drag-image-handle" data-key="height">
<?php tcb_icon( 'arrows-alt-v-regular' ) ?>
<span><?php echo __( 'Move Up or Down to Reposition', 'thrive-cb' ) ?></span>
</div>
<div class="tve-drag-image tve-drag-image-handle" data-key="width">
<?php tcb_icon( 'arrows-alt-h-regular' ) ?>
<span><?php echo __( 'Move Left or Right to Reposition', 'thrive-cb' ) ?></span>
</div>
</div>