fix: Course icons 60px + unset color for inline styles
- Changed from 24px back to 60px (matching projects structure) - Used color: unset !important to reset CSS color override - Allows inline color styles (style='color: #9333EA') to work - Matches the project list icon styling exactly
This commit is contained in:
@@ -88,21 +88,18 @@
|
|||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Course list icons in responsibilities - smaller size with preserved colors */
|
/* Course list icons in responsibilities - match project structure (60px with inline colors) */
|
||||||
.course-item .responsibilities li iconify-icon.default-company-icon {
|
.course-item .responsibilities li iconify-icon.default-company-icon {
|
||||||
width: 24px !important; /* Small but visible */
|
width: 60px !important; /* Match projects structure */
|
||||||
height: 24px !important;
|
height: 60px !important;
|
||||||
min-width: 24px;
|
color: unset !important; /* Reset color to allow inline styles */
|
||||||
min-height: 24px;
|
display: flex !important;
|
||||||
color: inherit !important; /* DO NOT override inline color styles */
|
|
||||||
display: inline-flex !important;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-right: 0.5rem;
|
border-radius: 4px;
|
||||||
flex-shrink: 0;
|
border: 1px solid var(--icon-border);
|
||||||
border: none !important;
|
|
||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
padding: 0 !important;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Inline icons within course descriptions */
|
/* Inline icons within course descriptions */
|
||||||
|
|||||||
Reference in New Issue
Block a user