Reorganize source structure for better maintainability
- Move from 3-file structure to organized 5-file structure
- Create css/ and js/ subdirectories for better organization
- Split styles into main.css and themes.css for clarity
- Extract configuration constants to separate config.js file
- Rename template.html to index.html for clarity
- Update build.js to handle new organized structure
- Replace magic numbers with CALCULATOR_CONFIG constants
New structure:
src/
├── index.html (HTML template)
├── css/
│ ├── main.css (Core styles)
│ └── themes.css (Theme variations)
└── js/
├── config.js (Configuration constants)
└── calculator.js (Main logic)
This provides a good balance between organization and simplicity,
making the codebase easier to maintain without over-modularization.
This commit is contained in:
parent
ba3e0a6a6a
commit
73793f43a1
80
build.js
80
build.js
@ -1,15 +1,17 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dog Calculator Build System - MODULAR VERSION
|
* Dog Calculator Build System - ORGANIZED VERSION
|
||||||
*
|
*
|
||||||
* This build script generates iframe.html and sundog-dog-food-calculator.js
|
* This build script generates iframe.html and sundog-dog-food-calculator.js
|
||||||
* from modular source files in the src/ directory.
|
* from organized source files in the src/ directory.
|
||||||
*
|
*
|
||||||
* Source files:
|
* Source structure:
|
||||||
* - src/styles.css - All CSS styles
|
* - src/index.html - HTML template
|
||||||
* - src/template.html - HTML structure
|
* - src/css/main.css - Main styles
|
||||||
* - src/calculator.js - JavaScript functionality
|
* - src/css/themes.css - Theme-specific styles
|
||||||
|
* - src/js/config.js - Configuration constants
|
||||||
|
* - src/js/calculator.js - JavaScript functionality
|
||||||
*
|
*
|
||||||
* Output files:
|
* Output files:
|
||||||
* - iframe.html - Standalone calculator page
|
* - iframe.html - Standalone calculator page
|
||||||
@ -21,40 +23,52 @@
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
console.log('🎯 Dog Calculator Build System - MODULAR VERSION');
|
console.log('🎯 Dog Calculator Build System - ORGANIZED VERSION');
|
||||||
console.log('');
|
console.log('');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Read modular components from src directory
|
* Read organized components from src directory
|
||||||
*/
|
*/
|
||||||
function readSourceComponents() {
|
function readSourceComponents() {
|
||||||
const srcDir = 'src';
|
const srcDir = 'src';
|
||||||
|
|
||||||
// Check if src directory exists
|
// Check if src directory exists
|
||||||
if (!fs.existsSync(srcDir)) {
|
if (!fs.existsSync(srcDir)) {
|
||||||
throw new Error('src directory not found - please ensure modular files exist');
|
throw new Error('src directory not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read CSS
|
// Read CSS files
|
||||||
const cssPath = path.join(srcDir, 'styles.css');
|
const mainCssPath = path.join(srcDir, 'css', 'main.css');
|
||||||
if (!fs.existsSync(cssPath)) {
|
const themesCssPath = path.join(srcDir, 'css', 'themes.css');
|
||||||
throw new Error('src/styles.css not found');
|
if (!fs.existsSync(mainCssPath)) {
|
||||||
|
throw new Error('src/css/main.css not found');
|
||||||
}
|
}
|
||||||
const css = fs.readFileSync(cssPath, 'utf8').trim();
|
if (!fs.existsSync(themesCssPath)) {
|
||||||
|
throw new Error('src/css/themes.css not found');
|
||||||
|
}
|
||||||
|
const mainCss = fs.readFileSync(mainCssPath, 'utf8').trim();
|
||||||
|
const themesCss = fs.readFileSync(themesCssPath, 'utf8').trim();
|
||||||
|
const css = mainCss + '\n\n' + themesCss;
|
||||||
|
|
||||||
// Read HTML template
|
// Read HTML template
|
||||||
const htmlPath = path.join(srcDir, 'template.html');
|
const htmlPath = path.join(srcDir, 'index.html');
|
||||||
if (!fs.existsSync(htmlPath)) {
|
if (!fs.existsSync(htmlPath)) {
|
||||||
throw new Error('src/template.html not found');
|
throw new Error('src/index.html not found');
|
||||||
}
|
}
|
||||||
const html = fs.readFileSync(htmlPath, 'utf8').trim();
|
const html = fs.readFileSync(htmlPath, 'utf8').trim();
|
||||||
|
|
||||||
// Read JavaScript
|
// Read JavaScript files
|
||||||
const jsPath = path.join(srcDir, 'calculator.js');
|
const configPath = path.join(srcDir, 'js', 'config.js');
|
||||||
if (!fs.existsSync(jsPath)) {
|
const calculatorPath = path.join(srcDir, 'js', 'calculator.js');
|
||||||
throw new Error('src/calculator.js not found');
|
if (!fs.existsSync(configPath)) {
|
||||||
|
throw new Error('src/js/config.js not found');
|
||||||
}
|
}
|
||||||
const js = fs.readFileSync(jsPath, 'utf8').trim();
|
if (!fs.existsSync(calculatorPath)) {
|
||||||
|
throw new Error('src/js/calculator.js not found');
|
||||||
|
}
|
||||||
|
const config = fs.readFileSync(configPath, 'utf8').trim();
|
||||||
|
const calculator = fs.readFileSync(calculatorPath, 'utf8').trim();
|
||||||
|
const js = config + '\n\n' + calculator;
|
||||||
|
|
||||||
return { css, html, js };
|
return { css, html, js };
|
||||||
}
|
}
|
||||||
@ -259,11 +273,11 @@ function createWidgetJS(css, html, js) {
|
|||||||
*/
|
*/
|
||||||
function build() {
|
function build() {
|
||||||
try {
|
try {
|
||||||
console.log('📖 Reading modular components from src/ directory...');
|
console.log('📖 Reading organized components from src/ directory...');
|
||||||
const { css, html, js } = readSourceComponents();
|
const { css, html, js } = readSourceComponents();
|
||||||
console.log(' ✅ src/styles.css (' + css.split('\n').length + ' lines)');
|
console.log(' ✅ src/index.html (' + html.split('\n').length + ' lines)');
|
||||||
console.log(' ✅ src/template.html (' + html.split('\n').length + ' lines)');
|
console.log(' ✅ src/css/main.css + themes.css (' + css.split('\n').length + ' lines)');
|
||||||
console.log(' ✅ src/calculator.js (' + js.split('\n').length + ' lines)');
|
console.log(' ✅ src/js/config.js + calculator.js (' + js.split('\n').length + ' lines)');
|
||||||
|
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('📦 Backing up existing files...');
|
console.log('📦 Backing up existing files...');
|
||||||
@ -286,21 +300,23 @@ function build() {
|
|||||||
console.log('🎉 Build completed successfully!');
|
console.log('🎉 Build completed successfully!');
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('📋 Summary:');
|
console.log('📋 Summary:');
|
||||||
console.log(' Source files (easy to edit):');
|
console.log(' Source structure:');
|
||||||
console.log(' • src/styles.css - All styles and theming');
|
console.log(' • src/index.html - HTML structure');
|
||||||
console.log(' • src/template.html - HTML structure');
|
console.log(' • src/css/main.css - Core styles');
|
||||||
console.log(' • src/calculator.js - JavaScript logic');
|
console.log(' • src/css/themes.css - Theme variations');
|
||||||
|
console.log(' • src/js/config.js - Configuration');
|
||||||
|
console.log(' • src/js/calculator.js - Main logic');
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log(' Generated files:');
|
console.log(' Generated files:');
|
||||||
console.log(' • iframe.html - Standalone calculator');
|
console.log(' • iframe.html - Standalone calculator');
|
||||||
console.log(' • sundog-dog-food-calculator.js - Embeddable widget');
|
console.log(' • sundog-dog-food-calculator.js - Embeddable widget');
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('🔄 Your new workflow:');
|
console.log('🔄 Your workflow:');
|
||||||
console.log(' 1. Edit files in src/ directory');
|
console.log(' 1. Edit organized files in src/');
|
||||||
console.log(' 2. Run: node build.js');
|
console.log(' 2. Run: node build.js');
|
||||||
console.log(' 3. Both output files are regenerated!');
|
console.log(' 3. Both output files are regenerated!');
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('💡 Now you can easily read and edit each part separately!');
|
console.log('💡 Clean, organized structure - easy to maintain!');
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('❌ Build failed:', error.message);
|
console.error('❌ Build failed:', error.message);
|
||||||
|
|||||||
27
iframe.html
27
iframe.html
@ -448,7 +448,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Dark theme - manual override */
|
/* Dark theme - manual override */
|
||||||
.dog-calculator-container.theme-dark {
|
|
||||||
|
.dog-calculator-container.theme-dark {
|
||||||
--bg-primary: #24202d;
|
--bg-primary: #24202d;
|
||||||
--bg-secondary: #312b3b;
|
--bg-secondary: #312b3b;
|
||||||
--border-color: #433c4f;
|
--border-color: #433c4f;
|
||||||
@ -2024,6 +2025,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
/**
|
/**
|
||||||
|
* Configuration constants for Dog Calorie Calculator
|
||||||
|
*/
|
||||||
|
|
||||||
|
const CALCULATOR_CONFIG = {
|
||||||
|
defaultTheme: 'system',
|
||||||
|
defaultScale: 1.0,
|
||||||
|
maxFoodSources: 5,
|
||||||
|
minScale: 0.5,
|
||||||
|
maxScale: 2.0
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
* Dog Calorie Calculator - iframe version
|
* Dog Calorie Calculator - iframe version
|
||||||
* by Canine Nutrition and Wellness
|
* by Canine Nutrition and Wellness
|
||||||
*/
|
*/
|
||||||
@ -2032,10 +2045,10 @@
|
|||||||
constructor() {
|
constructor() {
|
||||||
this.currentMER = 0;
|
this.currentMER = 0;
|
||||||
this.isImperial = false;
|
this.isImperial = false;
|
||||||
this.theme = this.getThemeFromURL() || 'system';
|
this.theme = this.getThemeFromURL() || CALCULATOR_CONFIG.defaultTheme;
|
||||||
this.scale = this.getScaleFromURL() || 1.0;
|
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||||
this.foodSources = [];
|
this.foodSources = [];
|
||||||
this.maxFoodSources = 5;
|
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2061,7 +2074,7 @@
|
|||||||
getScaleFromURL() {
|
getScaleFromURL() {
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
const scale = parseFloat(urlParams.get('scale'));
|
const scale = parseFloat(urlParams.get('scale'));
|
||||||
return (!isNaN(scale) && scale >= 0.5 && scale <= 2.0) ? scale : null;
|
return (!isNaN(scale) && scale >= CALCULATOR_CONFIG.minScale && scale <= CALCULATOR_CONFIG.maxScale) ? scale : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
applyTheme() {
|
applyTheme() {
|
||||||
@ -2074,8 +2087,8 @@
|
|||||||
const container = document.getElementById('dogCalculator');
|
const container = document.getElementById('dogCalculator');
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
// Clamp scale between 0.5 and 2.0 for usability
|
// Clamp scale between min and max for usability
|
||||||
const clampedScale = Math.max(0.5, Math.min(2.0, this.scale));
|
const clampedScale = Math.max(CALCULATOR_CONFIG.minScale, Math.min(CALCULATOR_CONFIG.maxScale, this.scale));
|
||||||
|
|
||||||
if (clampedScale !== 1.0) {
|
if (clampedScale !== 1.0) {
|
||||||
container.style.transform = `scale(${clampedScale})`;
|
container.style.transform = `scale(${clampedScale})`;
|
||||||
|
|||||||
440
src/css/main.css
Normal file
440
src/css/main.css
Normal file
@ -0,0 +1,440 @@
|
|||||||
|
:root {
|
||||||
|
--bg-primary: #fdfcfe;
|
||||||
|
--bg-secondary: #ffffff;
|
||||||
|
--border-color: #e8e3ed;
|
||||||
|
--text-primary: #6f3f6d;
|
||||||
|
--text-secondary: #8f7a8e;
|
||||||
|
--accent-color: #f19a5f;
|
||||||
|
--text-label: #635870; /* For form labels, secondary UI text */
|
||||||
|
--success-color: #7fa464; /* Green for success states */
|
||||||
|
--bg-tertiary: #f8f5fa; /* Light background variant */
|
||||||
|
--error-color: #e87159; /* Error states and messages */
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background: transparent;
|
||||||
|
overflow-x: hidden;
|
||||||
|
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-container {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-container.loaded {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-container *,
|
||||||
|
.dog-calculator-container *::before,
|
||||||
|
.dog-calculator-container *::after {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section {
|
||||||
|
background: var(--bg-primary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 8px 8px 0 0;
|
||||||
|
padding: 24px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 24px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section h2 {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Unit Switch */
|
||||||
|
.dog-calculator-unit-switch {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-unit-label {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--text-label);
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-unit-label.active {
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-switch {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 48px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-switch input {
|
||||||
|
opacity: 0;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-slider {
|
||||||
|
position: absolute;
|
||||||
|
cursor: pointer;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: var(--border-color);
|
||||||
|
transition: 0.3s;
|
||||||
|
border-radius: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-slider:before {
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
height: 18px;
|
||||||
|
width: 18px;
|
||||||
|
left: 3px;
|
||||||
|
bottom: 3px;
|
||||||
|
background-color: white;
|
||||||
|
transition: 0.3s;
|
||||||
|
border-radius: 50%;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-switch input:checked + .dog-calculator-slider {
|
||||||
|
background-color: #f19a5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-switch input:checked + .dog-calculator-slider:before {
|
||||||
|
transform: translateX(24px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group label {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group select,
|
||||||
|
.dog-calculator-form-group input[type="number"],
|
||||||
|
.dog-calculator-form-group input[type="text"] {
|
||||||
|
width: 100%;
|
||||||
|
padding: 12px 16px;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-family: inherit;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f3f6d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: right 12px center;
|
||||||
|
background-size: 20px;
|
||||||
|
padding-right: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group select option {
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group input[type="number"],
|
||||||
|
.dog-calculator-form-group input[type="text"] {
|
||||||
|
background-image: none;
|
||||||
|
padding-right: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group select:focus,
|
||||||
|
.dog-calculator-form-group input[type="number"]:focus,
|
||||||
|
.dog-calculator-form-group input[type="text"]:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: #f19a5f;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
box-shadow: 0 0 0 3px rgba(241, 154, 95, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-form-group input[readonly] {
|
||||||
|
background-color: var(--bg-tertiary);
|
||||||
|
cursor: not-allowed;
|
||||||
|
color: var(--text-label);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-results {
|
||||||
|
background: linear-gradient(135deg, rgba(241, 154, 95, 0.08) 0%, rgba(241, 154, 95, 0.04) 100%);
|
||||||
|
border: 1px solid rgba(241, 154, 95, 0.2);
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 20px;
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-result-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-result-item:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-result-label {
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-result-value {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-size: 1.1rem;
|
||||||
|
padding: 4px 12px;
|
||||||
|
background: rgba(241, 154, 95, 0.15);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible {
|
||||||
|
background: var(--bg-primary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-top: none;
|
||||||
|
margin-bottom: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible-header {
|
||||||
|
background: var(--bg-tertiary);
|
||||||
|
padding: 20px 24px;
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible-header h3 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
color: var(--text-primary);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible-content {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible-inner {
|
||||||
|
padding: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-input-group {
|
||||||
|
display: flex;
|
||||||
|
gap: 16px;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-input-group .dog-calculator-form-group {
|
||||||
|
flex: 1;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-unit-select {
|
||||||
|
min-width: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-error {
|
||||||
|
color: var(--error-color);
|
||||||
|
font-size: 0.875rem;
|
||||||
|
margin-top: 6px;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Action Buttons */
|
||||||
|
.dog-calculator-action-buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 16px;
|
||||||
|
padding: 20px;
|
||||||
|
background: var(--bg-tertiary);
|
||||||
|
border-left: 1px solid var(--border-color);
|
||||||
|
border-right: 1px solid var(--border-color);
|
||||||
|
margin-top: -1px;
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-btn {
|
||||||
|
padding: 8px 16px;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 500;
|
||||||
|
font-family: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px;
|
||||||
|
background: white;
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-btn:hover {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-btn-share:hover {
|
||||||
|
border-color: #9f5999;
|
||||||
|
color: #9f5999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-btn-embed:hover {
|
||||||
|
border-color: var(--success-color);
|
||||||
|
color: var(--success-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-footer {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
background: var(--bg-primary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 0 0 8px 8px;
|
||||||
|
border-top: none;
|
||||||
|
margin-top: -1px;
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-footer a {
|
||||||
|
color: #9f5999;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: 500;
|
||||||
|
transition: color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-footer a:hover {
|
||||||
|
color: #f19a5f;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile Responsive Design */
|
||||||
|
@media (max-width: 576px) {
|
||||||
|
.dog-calculator-container {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section,
|
||||||
|
.dog-calculator-collapsible-inner {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section h2,
|
||||||
|
.dog-calculator-collapsible-header h3 {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section-header {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-section h2 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-unit-switch {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-action-buttons {
|
||||||
|
flex-direction: column;
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-btn {
|
||||||
|
width: 100%;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-input-group {
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 12px;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-input-group .dog-calculator-form-group {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* First form group takes 55%, second takes 40% with some flex */
|
||||||
|
.dog-calculator-input-group .dog-calculator-form-group:first-child {
|
||||||
|
flex: 0 0 55%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-input-group .dog-calculator-form-group:last-child {
|
||||||
|
flex: 1 1 40%;
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make sure number inputs don't get too wide */
|
||||||
|
.dog-calculator-input-group input[type="number"] {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure dropdowns don't overflow their containers */
|
||||||
|
.dog-calculator-input-group select {
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.dog-calculator-result-item {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-result-value {
|
||||||
|
align-self: stretch;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dog-calculator-collapsible-header {
|
||||||
|
padding: 16px 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dark theme - manual override */
|
||||||
@ -1,443 +1,3 @@
|
|||||||
:root {
|
|
||||||
--bg-primary: #fdfcfe;
|
|
||||||
--bg-secondary: #ffffff;
|
|
||||||
--border-color: #e8e3ed;
|
|
||||||
--text-primary: #6f3f6d;
|
|
||||||
--text-secondary: #8f7a8e;
|
|
||||||
--accent-color: #f19a5f;
|
|
||||||
--text-label: #635870; /* For form labels, secondary UI text */
|
|
||||||
--success-color: #7fa464; /* Green for success states */
|
|
||||||
--bg-tertiary: #f8f5fa; /* Light background variant */
|
|
||||||
--error-color: #e87159; /* Error states and messages */
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background: transparent;
|
|
||||||
overflow-x: hidden;
|
|
||||||
font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
|
||||||
line-height: 1.5;
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-container {
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 24px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
opacity: 0;
|
|
||||||
transition: opacity 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-container.loaded {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-container *,
|
|
||||||
.dog-calculator-container *::before,
|
|
||||||
.dog-calculator-container *::after {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section {
|
|
||||||
background: var(--bg-primary);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 8px 8px 0 0;
|
|
||||||
padding: 24px;
|
|
||||||
margin-bottom: 0;
|
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
gap: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section h2 {
|
|
||||||
margin: 0;
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 1.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Unit Switch */
|
|
||||||
.dog-calculator-unit-switch {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-unit-label {
|
|
||||||
font-size: 0.9rem;
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--text-label);
|
|
||||||
transition: color 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-unit-label.active {
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
width: 48px;
|
|
||||||
height: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-slider {
|
|
||||||
position: absolute;
|
|
||||||
cursor: pointer;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: var(--border-color);
|
|
||||||
transition: 0.3s;
|
|
||||||
border-radius: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-slider:before {
|
|
||||||
position: absolute;
|
|
||||||
content: "";
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
left: 3px;
|
|
||||||
bottom: 3px;
|
|
||||||
background-color: white;
|
|
||||||
transition: 0.3s;
|
|
||||||
border-radius: 50%;
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-switch input:checked + .dog-calculator-slider {
|
|
||||||
background-color: #f19a5f;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-switch input:checked + .dog-calculator-slider:before {
|
|
||||||
transform: translateX(24px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group label {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group select,
|
|
||||||
.dog-calculator-form-group input[type="number"],
|
|
||||||
.dog-calculator-form-group input[type="text"] {
|
|
||||||
width: 100%;
|
|
||||||
padding: 12px 16px;
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 6px;
|
|
||||||
font-size: 1rem;
|
|
||||||
font-family: inherit;
|
|
||||||
background-color: var(--bg-secondary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
appearance: none;
|
|
||||||
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236f3f6d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: right 12px center;
|
|
||||||
background-size: 20px;
|
|
||||||
padding-right: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group select option {
|
|
||||||
background-color: var(--bg-secondary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group input[type="number"],
|
|
||||||
.dog-calculator-form-group input[type="text"] {
|
|
||||||
background-image: none;
|
|
||||||
padding-right: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group select:focus,
|
|
||||||
.dog-calculator-form-group input[type="number"]:focus,
|
|
||||||
.dog-calculator-form-group input[type="text"]:focus {
|
|
||||||
outline: none;
|
|
||||||
border-color: #f19a5f;
|
|
||||||
background-color: var(--bg-secondary);
|
|
||||||
box-shadow: 0 0 0 3px rgba(241, 154, 95, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-form-group input[readonly] {
|
|
||||||
background-color: var(--bg-tertiary);
|
|
||||||
cursor: not-allowed;
|
|
||||||
color: var(--text-label);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-results {
|
|
||||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.08) 0%, rgba(241, 154, 95, 0.04) 100%);
|
|
||||||
border: 1px solid rgba(241, 154, 95, 0.2);
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 20px;
|
|
||||||
margin-top: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-result-item {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-result-item:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-result-label {
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 0.95rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-result-value {
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 1.1rem;
|
|
||||||
padding: 4px 12px;
|
|
||||||
background: rgba(241, 154, 95, 0.15);
|
|
||||||
border-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible {
|
|
||||||
background: var(--bg-primary);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-top: none;
|
|
||||||
margin-bottom: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible-header {
|
|
||||||
background: var(--bg-tertiary);
|
|
||||||
padding: 20px 24px;
|
|
||||||
border-bottom: 1px solid var(--border-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible-header h3 {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 1.25rem;
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible-content {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible-inner {
|
|
||||||
padding: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-input-group {
|
|
||||||
display: flex;
|
|
||||||
gap: 16px;
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-input-group .dog-calculator-form-group {
|
|
||||||
flex: 1;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-unit-select {
|
|
||||||
min-width: 120px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-error {
|
|
||||||
color: var(--error-color);
|
|
||||||
font-size: 0.875rem;
|
|
||||||
margin-top: 6px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Action Buttons */
|
|
||||||
.dog-calculator-action-buttons {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 16px;
|
|
||||||
padding: 20px;
|
|
||||||
background: var(--bg-tertiary);
|
|
||||||
border-left: 1px solid var(--border-color);
|
|
||||||
border-right: 1px solid var(--border-color);
|
|
||||||
margin-top: -1px;
|
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-btn {
|
|
||||||
padding: 8px 16px;
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 6px;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
font-weight: 500;
|
|
||||||
font-family: inherit;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: all 0.2s ease;
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 6px;
|
|
||||||
background: white;
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-btn:hover {
|
|
||||||
transform: translateY(-1px);
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-btn-share:hover {
|
|
||||||
border-color: #9f5999;
|
|
||||||
color: #9f5999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-btn-embed:hover {
|
|
||||||
border-color: var(--success-color);
|
|
||||||
color: var(--success-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-footer {
|
|
||||||
text-align: center;
|
|
||||||
padding: 20px;
|
|
||||||
background: var(--bg-primary);
|
|
||||||
border: 1px solid var(--border-color);
|
|
||||||
border-radius: 0 0 8px 8px;
|
|
||||||
border-top: none;
|
|
||||||
margin-top: -1px;
|
|
||||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-footer a {
|
|
||||||
color: #9f5999;
|
|
||||||
text-decoration: none;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
font-weight: 500;
|
|
||||||
transition: color 0.2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-footer a:hover {
|
|
||||||
color: #f19a5f;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Mobile Responsive Design */
|
|
||||||
@media (max-width: 576px) {
|
|
||||||
.dog-calculator-container {
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section,
|
|
||||||
.dog-calculator-collapsible-inner {
|
|
||||||
padding: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section h2,
|
|
||||||
.dog-calculator-collapsible-header h3 {
|
|
||||||
font-size: 1.3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section-header {
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: stretch;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-section h2 {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-unit-switch {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-action-buttons {
|
|
||||||
flex-direction: column;
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-btn {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-input-group {
|
|
||||||
flex-direction: row;
|
|
||||||
gap: 12px;
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-input-group .dog-calculator-form-group {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* First form group takes 55%, second takes 40% with some flex */
|
|
||||||
.dog-calculator-input-group .dog-calculator-form-group:first-child {
|
|
||||||
flex: 0 0 55%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-input-group .dog-calculator-form-group:last-child {
|
|
||||||
flex: 1 1 40%;
|
|
||||||
min-width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Make sure number inputs don't get too wide */
|
|
||||||
.dog-calculator-input-group input[type="number"] {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Ensure dropdowns don't overflow their containers */
|
|
||||||
.dog-calculator-input-group select {
|
|
||||||
max-width: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.dog-calculator-result-item {
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-result-value {
|
|
||||||
align-self: stretch;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dog-calculator-collapsible-header {
|
|
||||||
padding: 16px 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dark theme - manual override */
|
|
||||||
.dog-calculator-container.theme-dark {
|
.dog-calculator-container.theme-dark {
|
||||||
--bg-primary: #24202d;
|
--bg-primary: #24202d;
|
||||||
--bg-secondary: #312b3b;
|
--bg-secondary: #312b3b;
|
||||||
@ -7,10 +7,10 @@
|
|||||||
constructor() {
|
constructor() {
|
||||||
this.currentMER = 0;
|
this.currentMER = 0;
|
||||||
this.isImperial = false;
|
this.isImperial = false;
|
||||||
this.theme = this.getThemeFromURL() || 'system';
|
this.theme = this.getThemeFromURL() || CALCULATOR_CONFIG.defaultTheme;
|
||||||
this.scale = this.getScaleFromURL() || 1.0;
|
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||||
this.foodSources = [];
|
this.foodSources = [];
|
||||||
this.maxFoodSources = 5;
|
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,7 +36,7 @@
|
|||||||
getScaleFromURL() {
|
getScaleFromURL() {
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
const scale = parseFloat(urlParams.get('scale'));
|
const scale = parseFloat(urlParams.get('scale'));
|
||||||
return (!isNaN(scale) && scale >= 0.5 && scale <= 2.0) ? scale : null;
|
return (!isNaN(scale) && scale >= CALCULATOR_CONFIG.minScale && scale <= CALCULATOR_CONFIG.maxScale) ? scale : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
applyTheme() {
|
applyTheme() {
|
||||||
@ -49,8 +49,8 @@
|
|||||||
const container = document.getElementById('dogCalculator');
|
const container = document.getElementById('dogCalculator');
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
// Clamp scale between 0.5 and 2.0 for usability
|
// Clamp scale between min and max for usability
|
||||||
const clampedScale = Math.max(0.5, Math.min(2.0, this.scale));
|
const clampedScale = Math.max(CALCULATOR_CONFIG.minScale, Math.min(CALCULATOR_CONFIG.maxScale, this.scale));
|
||||||
|
|
||||||
if (clampedScale !== 1.0) {
|
if (clampedScale !== 1.0) {
|
||||||
container.style.transform = `scale(${clampedScale})`;
|
container.style.transform = `scale(${clampedScale})`;
|
||||||
11
src/js/config.js
Normal file
11
src/js/config.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
/**
|
||||||
|
* Configuration constants for Dog Calorie Calculator
|
||||||
|
*/
|
||||||
|
|
||||||
|
const CALCULATOR_CONFIG = {
|
||||||
|
defaultTheme: 'system',
|
||||||
|
defaultScale: 1.0,
|
||||||
|
maxFoodSources: 5,
|
||||||
|
minScale: 0.5,
|
||||||
|
maxScale: 2.0
|
||||||
|
};
|
||||||
@ -463,7 +463,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Dark theme - manual override */
|
/* Dark theme - manual override */
|
||||||
.dog-calculator-container.theme-dark {
|
|
||||||
|
.dog-calculator-container.theme-dark {
|
||||||
--bg-primary: #24202d;
|
--bg-primary: #24202d;
|
||||||
--bg-secondary: #312b3b;
|
--bg-secondary: #312b3b;
|
||||||
--border-color: #433c4f;
|
--border-color: #433c4f;
|
||||||
@ -1857,6 +1858,18 @@
|
|||||||
|
|
||||||
// JavaScript from src/calculator.js (transformed for widget use)
|
// JavaScript from src/calculator.js (transformed for widget use)
|
||||||
/**
|
/**
|
||||||
|
* Configuration constants for Dog Calorie Calculator
|
||||||
|
*/
|
||||||
|
|
||||||
|
const CALCULATOR_CONFIG = {
|
||||||
|
defaultTheme: 'system',
|
||||||
|
defaultScale: 1.0,
|
||||||
|
maxFoodSources: 5,
|
||||||
|
minScale: 0.5,
|
||||||
|
maxScale: 2.0
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
* Dog Calorie Calculator - iframe version
|
* Dog Calorie Calculator - iframe version
|
||||||
* by Canine Nutrition and Wellness
|
* by Canine Nutrition and Wellness
|
||||||
*/
|
*/
|
||||||
@ -1873,9 +1886,10 @@
|
|||||||
this.scale = this.options.scale;
|
this.scale = this.options.scale;
|
||||||
this.currentMER = 0;
|
this.currentMER = 0;
|
||||||
this.isImperial = false;
|
this.isImperial = false;
|
||||||
|
this.theme = this.getThemeFromURL() || CALCULATOR_CONFIG.defaultTheme;
|
||||||
|
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||||
this.foodSources = [];
|
this.foodSources = [];
|
||||||
this.maxFoodSources = 5;
|
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||||
this.init();
|
this.init();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2097,7 +2111,7 @@
|
|||||||
getScaleFromURL() {
|
getScaleFromURL() {
|
||||||
const urlParams = new URLSearchParams(window.location.search);
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
const scale = parseFloat(urlParams.get('scale'));
|
const scale = parseFloat(urlParams.get('scale'));
|
||||||
return (!isNaN(scale) && scale >= 0.5 && scale <= 2.0) ? scale : null;
|
return (!isNaN(scale) && scale >= CALCULATOR_CONFIG.minScale && scale <= CALCULATOR_CONFIG.maxScale) ? scale : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
applyTheme() {
|
applyTheme() {
|
||||||
@ -2110,8 +2124,8 @@
|
|||||||
const container = this.container.querySelector('#dogCalculator');
|
const container = this.container.querySelector('#dogCalculator');
|
||||||
if (!container) return;
|
if (!container) return;
|
||||||
|
|
||||||
// Clamp scale between 0.5 and 2.0 for usability
|
// Clamp scale between min and max for usability
|
||||||
const clampedScale = Math.max(0.5, Math.min(2.0, this.scale));
|
const clampedScale = Math.max(CALCULATOR_CONFIG.minScale, Math.min(CALCULATOR_CONFIG.maxScale, this.scale));
|
||||||
|
|
||||||
if (clampedScale !== 1.0) {
|
if (clampedScale !== 1.0) {
|
||||||
container.style.transform = `scale(${clampedScale})`;
|
container.style.transform = `scale(${clampedScale})`;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user