Windows case-insensitive but Linux case-sensitive. Git was tracking lowercase, causing 404s on server. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
91 lines
1.7 KiB
CSS
91 lines
1.7 KiB
CSS
/**
|
|
* Utility Classes
|
|
*
|
|
* SOLO utilidades que NO están en Bootstrap 5
|
|
* IMPORTANTE: Bootstrap 5 ya provee la mayoría de utilities (display, flex, spacing, etc.)
|
|
* Este archivo solo contiene utilities adicionales no incluidas en Bootstrap
|
|
*
|
|
* @package ROI_Theme
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/* ========================================
|
|
CURSOR UTILITIES
|
|
======================================== */
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer !important;
|
|
}
|
|
|
|
.cursor-default {
|
|
cursor: default !important;
|
|
}
|
|
|
|
.cursor-not-allowed {
|
|
cursor: not-allowed !important;
|
|
}
|
|
|
|
.cursor-auto {
|
|
cursor: auto !important;
|
|
}
|
|
|
|
/* ========================================
|
|
USER SELECT
|
|
======================================== */
|
|
|
|
.user-select-auto {
|
|
user-select: auto !important;
|
|
}
|
|
|
|
.user-select-none {
|
|
user-select: none !important;
|
|
}
|
|
|
|
.user-select-all {
|
|
user-select: all !important;
|
|
}
|
|
|
|
/* ========================================
|
|
POINTER EVENTS
|
|
======================================== */
|
|
|
|
.pointer-events-none {
|
|
pointer-events: none !important;
|
|
}
|
|
|
|
.pointer-events-auto {
|
|
pointer-events: auto !important;
|
|
}
|
|
|
|
/* ========================================
|
|
OBJECT FIT
|
|
======================================== */
|
|
|
|
.object-fit-contain {
|
|
object-fit: contain !important;
|
|
}
|
|
|
|
.object-fit-cover {
|
|
object-fit: cover !important;
|
|
}
|
|
|
|
.object-fit-fill {
|
|
object-fit: fill !important;
|
|
}
|
|
|
|
.object-fit-scale {
|
|
object-fit: scale-down !important;
|
|
}
|
|
|
|
/* ========================================
|
|
TRANSITION
|
|
======================================== */
|
|
|
|
.transition-all {
|
|
transition: all 0.3s ease !important;
|
|
}
|
|
|
|
.transition-none {
|
|
transition: none !important;
|
|
}
|