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,144 @@
/* State manager styles */
.states-button-container {
position: fixed;
right: 52px;
bottom: 35px;
.tve-right-side & {
right: auto;
left: 35px;
}
button {
box-sizing: content-box;
color: white;
border: 0;
background: #52c578;
border-radius: 100%;
box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
padding: 10px;
height: 20px;
width: 20px;
font-size: 20px;
line-height: 20px;
}
}
.design-states {
width: 180px;
padding: 10px 15px;
display: none;
position: fixed;
right: 52px;
bottom: 35px;
background: white;
border-radius: 3px;
box-shadow: 0 8px 12px rgba(0, 0, 0, .25);
.tve-right-side & {
right: auto;
left: 35px;
}
span.title {
display: block;
padding-top: 8px;
}
.state-close {
position: absolute;
top: 13px;
right: 13px;
}
}
.btn-icon {
border: 0;
background: none;
padding: 0;
}
ul.state-steps {
list-style: none;
padding-bottom: 10px;
> li {
text-transform: uppercase;
display: block;
color: #555555;
background-color: #dadfdf;
position: relative;
padding: 20px 0;
margin: 10px 0 0;
font-size: 14px;
cursor: pointer;
box-shadow: 0 2px 3px rgba(0, 0, 0, .25);
border-radius: 2px;
text-align: center;
&.state-active, &.state-active:hover {
background-color: #3399cc;
.state-name {
color: #fff;
}
.state-clone {
&:before {
color: #fff;
}
&:hover {
border-color: #fff;
}
}
}
&.tl-multistep-open {
.lightbox-step-add-menu {
transition: all .2s ease;
opacity: 1;
visibility: visible;
bottom: 70px;
}
}
&.state-add {
background: none;
box-shadow: none;
border: 1px dashed #cccccc;
cursor: pointer;
color: #8d8d8d;
&:hover {
background: none;
border: 1px dashed darken(#cccccc, 10);
}
}
//Show (duplicate, delete, edit) buttons on list hover
&:hover {
background-color: darken(#dadfdf, 5);
.state-delete,
.state-edit,
.state-clone {
display: block;
}
}
}
.state-delete,
.state-edit,
.state-clone {
font-size: 14px;
cursor: pointer;
top: 7px;
height: 17px;
width: 17px;
position: absolute;
padding: 0;
display: none;
color: #606060;
}
.state-delete {
right: 7px;
color: #f44551;
}
.state-clone {
font-size: 12px;
left: 7px;
}
.state-edit {
font-size: 12px;
top: 30px;
left: 7px;
}
.state-name {
color: #666666;
}
}

View File

@@ -0,0 +1,8 @@
$borderStyles: 'none', 'dotted', 'dashed', 'solid', 'double', 'groove', 'ridge', 'inset', 'outset';
@mixin icon-size($size) {
font-size: $size;
line-height: $size;
width: $size;
height: $size;
}

View File

@@ -0,0 +1,80 @@
@import "variables";
html.tve-html-editor {
overflow: auto;
body {
overflow: auto;
}
}
body {
&:before {
display: none !important;
}
}
.tve-ult-body-ribbon {
#tve_editor {
padding: 0 !important;
}
}
/* ribbon styles */
.tve-ult-bar {
.admin-bar & {
top: 32px;
}
.tve_editor_page & {
&.tvu-footer.tvu-triggered {
bottom: 150px;
}
}
.tve_editor_page.tl-state-collapse & {
&.tvu-footer {
bottom: 0;
}
}
}
/* Widget - editor page */
.tve-ult-widget {
margin: 0 auto;
padding-top: 20px;
max-width: 300px;
.thrv_ult_widget {
outline: 1px dotted #dedede;
&.active_highlight, &.active_delete {
outline: 1px dashed #ff0000;
}
}
}
//edit mode conflict with theme
.tve-html-editor {
.cnt {
background: #fff;
box-shadow: none;
margin: 0;
padding: 0;
article {
margin: 0;
padding: 0;
}
}
}
//
//#tve_cpanel_onpage {
// &.menu_elem_ult_design {
// #tve_submenu_save {
// display: none;
// }
// }
//}
//
//#tve_lightbox_frame {
// .tu-tpl-menu li {
// > span {
// display: block;
// }
// }
//}

View File

@@ -0,0 +1,6 @@
@import "states";
.tve-tab-content {
max-height: 300px;
overflow: auto;
}

View File

@@ -0,0 +1,33 @@
.tve-ult-preload-form {
min-height: var(--tu-placeholder-height-d);
position: relative;
display: block;
background: rgba(153, 162, 165, .1);
overflow: hidden;
@keyframes shimmer {
100% {
transform: translateX(100%);
}
}
&::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
transform: translateX(-100%);
background-image: linear-gradient(90deg, rgba(#fff, 0) 0, rgba(#fff, 0.2) 20%, rgba(#fff, 0.5) 60%, rgba(#fff, 0));
animation: shimmer 2s infinite;
content: '';
}
@media(max-width: 1023px) {
min-height: var(--tu-placeholder-height-t);
}
@media(max-width: 767px) {
min-height: var(--tu-placeholder-height-m);
}
}