vagabond-rpg-foundryvtt/styles/scss/_mixins.scss
Cal Corum 8b9daa1f36 Add light/dark theme system with CSS variables, fix ProseMirror editors
Theme System:
- Add _theme-variables.scss with light (parchment) and dark color palettes
- Register theme options in system.json for Foundry v13 color scheme support
- Convert all SCSS color variables to CSS custom properties
- Update base, mixins, components, and sheet styles for theme support
- Add _applyThemeClass() to actor and item sheet classes

ProseMirror Editor Fix (v13 ApplicationV2):
- Replace {{editor}} helper with <prose-mirror> custom element
- Add TextEditor.enrichHTML() for rich text content preparation
- Update all 8 item templates (spell, weapon, armor, equipment, etc.)
- Fix toolbar hiding content by renaming wrapper to .editor-wrapper
- Style prose-mirror with sticky toolbar and proper flex layout

Roll Dialog & Chat Card Styling:
- Complete roll dialog styling with favor/hinder toggles, info panels
- Complete chat card styling with roll results, damage display, animations
- Mark tasks 5.7 and 5.8 complete in roadmap
- Add task 5.11 for deferred resizable editor feature

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:36:16 -06:00

233 lines
4.9 KiB
SCSS

// Vagabond RPG - SCSS Mixins
// ===========================
// Flexbox shortcuts
@mixin flex-center {
display: flex;
align-items: center;
justify-content: center;
}
@mixin flex-between {
display: flex;
align-items: center;
justify-content: space-between;
}
@mixin flex-column {
display: flex;
flex-direction: column;
}
// Grid shortcuts
@mixin grid($columns: 1, $gap: $spacing-4) {
display: grid;
grid-template-columns: repeat($columns, 1fr);
gap: $gap;
}
// Typography
@mixin heading($size: $font-size-xl) {
font-family: $font-family-header;
font-size: $size;
font-weight: $font-weight-bold;
line-height: $line-height-tight;
color: var(--color-text-primary);
}
@mixin body-text($size: $font-size-base) {
font-family: $font-family-body;
font-size: $size;
font-weight: $font-weight-normal;
line-height: $line-height-normal;
color: var(--color-text-primary);
}
// Buttons
@mixin button-base {
display: inline-flex;
align-items: center;
justify-content: center;
padding: $spacing-2 $spacing-4;
font-family: $font-family-body;
font-size: $font-size-sm;
font-weight: $font-weight-medium;
line-height: 1;
text-decoration: none;
border: 1px solid transparent;
border-radius: $radius-md;
cursor: pointer;
transition: all $transition-fast;
&:focus {
outline: 2px solid var(--color-accent-primary);
outline-offset: 2px;
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
}
@mixin button-primary {
@include button-base;
background-color: var(--color-accent-primary);
color: var(--color-text-inverse);
border-color: var(--color-accent-secondary);
&:hover:not(:disabled) {
background-color: var(--color-accent-secondary);
}
}
@mixin button-secondary {
@include button-base;
background-color: transparent;
color: var(--color-text-primary);
border-color: var(--color-border);
&:hover:not(:disabled) {
background-color: var(--color-bg-secondary);
}
}
@mixin button-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
padding: 0;
font-size: $font-size-sm;
color: var(--color-text-secondary);
background-color: transparent;
border: 1px solid transparent;
border-radius: $radius-sm;
cursor: pointer;
transition: all $transition-fast;
&:hover:not(:disabled) {
color: var(--color-text-primary);
background-color: var(--color-bg-secondary);
border-color: var(--color-border);
}
&:focus {
outline: 2px solid var(--color-accent-primary);
outline-offset: 2px;
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
}
}
// Form inputs
@mixin input-base {
padding: $spacing-2 $spacing-3;
font-family: $font-family-body;
font-size: $font-size-base;
color: var(--color-text-primary);
background-color: var(--color-bg-input);
border: 1px solid var(--color-border);
border-radius: $radius-md;
transition: border-color $transition-fast;
&:focus {
outline: none;
border-color: var(--color-accent-primary);
box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.2); // Using fixed color for box-shadow
}
&::placeholder {
color: var(--color-text-muted);
}
&:disabled {
background-color: var(--color-bg-tertiary);
cursor: not-allowed;
}
}
// Cards/Panels
@mixin panel {
background-color: var(--color-bg-primary);
border: 1px solid var(--color-border);
border-radius: $radius-md;
box-shadow: 0 1px 3px var(--shadow-light);
}
@mixin panel-header {
@include flex-between;
padding: $spacing-3 $spacing-4;
background-color: var(--color-bg-secondary);
border-bottom: 1px solid var(--color-border);
border-radius: $radius-md $radius-md 0 0;
}
// Scrollbar styling
@mixin custom-scrollbar {
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-track {
background: var(--color-bg-secondary);
border-radius: $radius-full;
}
&::-webkit-scrollbar-thumb {
background: var(--color-border);
border-radius: $radius-full;
&:hover {
background: var(--color-border-dark);
}
}
}
// Accessibility - focus visible
@mixin focus-visible {
&:focus-visible {
outline: 2px solid var(--color-accent-primary);
outline-offset: 2px;
}
}
// Screen reader only (visually hidden but accessible)
@mixin sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
// Truncate text with ellipsis
@mixin truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
// Stat badge (for the large stat numbers)
@mixin stat-badge($color: var(--color-text-primary)) {
@include flex-center;
width: 3rem;
height: 3rem;
font-family: $font-family-header;
font-size: $font-size-3xl;
font-weight: $font-weight-bold;
color: $color;
background-color: var(--color-bg-input);
border: 2px solid var(--color-border);
border-radius: $radius-md;
}