- Hero card fully variable-driven: --hero-card-bg/color/overlay/border-radius/padding/max-width - Alternative hero variant: --hero-alt-card-* for secondary theme - Overlay bg-position and bg-size now customizable via variables - Mobile breakpoint: photo bg hidden, hero full-bleed on small screens - Added fallback values to 1365 var() calls in template.css - .btn --btn-bg changed from transparent to var(--body-bg) in dark/light themes - .offcanvas-header .btn-close gets background-color from overlay - Stripped file info headers (@package/DEFGROUP/VERSION) from 48 files, kept copyright/SPDX - Synced all theme variables across standard and custom templates - Removed 26 mobile.php layout overrides - Added *.py to .gitignore, card-border-radius fallback Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
@charset "UTF-8";
|
|
/* Copyright (C) 2025 Moko Consulting <hello@mokoconsulting.tech>
|
|
|
|
This file is part of a Moko Consulting project.
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
.js-stools-container-bar {
|
|
padding: 10px 20px;
|
|
}
|
|
.js-stools-container-bar .btn-toolbar {
|
|
-webkit-box-pack: end;
|
|
-ms-flex-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
.js-stools-container-bar .btn-toolbar > * {
|
|
margin: 4px 0;
|
|
-webkit-margin-end: 8px;
|
|
margin-inline-end: 8px;
|
|
}
|
|
.js-stools-container-bar .btn-toolbar .js-stools-btn-clear {
|
|
background-color: hsl(207, 49%, 37%);
|
|
border: 0;
|
|
}
|
|
.js-stools-container-bar .ordering-select {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.js-stools-container-filters {
|
|
display: none;
|
|
padding: 0 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.js-stools-container-filters-visible {
|
|
display: grid;
|
|
grid-gap: 8px;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
padding: 10px;
|
|
background-color: hsl(0, 0%, 100%);
|
|
}
|
|
.js-stools-container-filters > * {
|
|
margin: 4px 0;
|
|
-webkit-margin-end: 8px;
|
|
margin-inline-end: 8px;
|
|
}
|
|
|
|
.js-stools-field-list + .js-stools-field-list {
|
|
-webkit-margin-start: 8px;
|
|
margin-inline-start: 8px;
|
|
}
|
|
|
|
.js-stools-field-selector .form-select {
|
|
width: auto;
|
|
}
|