fix: Rename Assets/css to Assets/Css, Assets/js to Assets/Js in git
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>
This commit is contained in:
90
Assets/Css/css-global-utilities.css
Normal file
90
Assets/Css/css-global-utilities.css
Normal file
@@ -0,0 +1,90 @@
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user