You've already forked wc-bootstrap
Add 21 Twig template overrides for the single product page: Product layout: - product-image: gallery with thumbnail strip, img-fluid rounded - title: h1 entry-title - price: fs-3 fw-bold with sale del/ins markup - short-description: lead text-body-secondary - meta: dl row with SKU, categories, tags - rating: Bootstrap Icon stars with half-star, review count link - stock: badge (bg-success/bg-danger/bg-warning) per status - sale-flash: badge bg-danger fs-6 - share: hook-only wrapper - product-attributes: table-sm table-striped Related/upsells: - related, up-sells: section with product loop grid Tabs: - tabs: nav-tabs + tab-content with fade transitions - description: tab-pane with prose content - additional-information: tab-pane with attributes hook Add to cart (4 product types + variation JS): - simple: input-group quantity + btn-primary btn-lg - variable: form-select per attribute + variation display - grouped: table-borderless with quantity per child product - external: btn-outline-primary with external link icon - variation: Underscore.js script templates (Bootstrap-styled) - variation-add-to-cart-button: quantity + submit with hidden fields CSS additions: gallery thumbnail hover, variation selector spacing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
222 lines
6.6 KiB
CSS
222 lines
6.6 KiB
CSS
/**
|
|
* WooCommerce Bootstrap - Bootstrap 5 Overrides
|
|
*
|
|
* Provides Bootstrap 5 styling for any plugin CSS classes
|
|
* that may be injected by the plugin's JavaScript or inline markup.
|
|
*
|
|
* CSS dependency chain (lowest to highest priority):
|
|
* 1. wp-bootstrap (parent theme)
|
|
* 2. woocommerce (plugin styles)
|
|
* 3. wc-bootstrap-style (child theme style.css)
|
|
* 4. wc-bootstrap-overrides (this file)
|
|
*
|
|
* @package WcBootstrap
|
|
* @since 0.1.0
|
|
*/
|
|
|
|
/* ==========================================================================
|
|
Button Overrides
|
|
Map plugin button classes to Bootstrap button styles.
|
|
========================================================================== */
|
|
|
|
/* Example: Map plugin .my-button to Bootstrap styling
|
|
.my-button {
|
|
display: inline-block;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
padding: 0.375rem 0.75rem;
|
|
font-size: 1rem;
|
|
border-radius: var(--bs-border-radius);
|
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
}
|
|
*/
|
|
|
|
/* ==========================================================================
|
|
WooCommerce Notice Overrides
|
|
Map WooCommerce notice classes to Bootstrap alert styles as fallback
|
|
when notices are rendered outside our Twig templates.
|
|
========================================================================== */
|
|
|
|
.woocommerce-info,
|
|
.woocommerce-message,
|
|
.woocommerce-error {
|
|
position: relative;
|
|
padding: 1rem 3rem 1rem 1rem;
|
|
margin-bottom: 1rem;
|
|
border: 1px solid transparent;
|
|
border-radius: var(--bs-border-radius);
|
|
}
|
|
|
|
.woocommerce-info {
|
|
color: var(--bs-info-text-emphasis);
|
|
background-color: var(--bs-info-bg-subtle);
|
|
border-color: var(--bs-info-border-subtle);
|
|
}
|
|
|
|
.woocommerce-message {
|
|
color: var(--bs-success-text-emphasis);
|
|
background-color: var(--bs-success-bg-subtle);
|
|
border-color: var(--bs-success-border-subtle);
|
|
}
|
|
|
|
.woocommerce-error {
|
|
color: var(--bs-danger-text-emphasis);
|
|
background-color: var(--bs-danger-bg-subtle);
|
|
border-color: var(--bs-danger-border-subtle);
|
|
list-style: none;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Quantity Input
|
|
Sizing for the Bootstrap input-group quantity widget.
|
|
========================================================================== */
|
|
|
|
.quantity.input-group .form-control {
|
|
/* Remove number input spinners (browser default) */
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
.quantity.input-group .form-control::-webkit-outer-spin-button,
|
|
.quantity.input-group .form-control::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Product Cards
|
|
Hover effects and layout for product loop cards.
|
|
========================================================================== */
|
|
|
|
.product.card {
|
|
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
}
|
|
|
|
.product.card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--bs-box-shadow) !important;
|
|
}
|
|
|
|
/* Product image in card */
|
|
.product.card img {
|
|
object-fit: cover;
|
|
aspect-ratio: 1 / 1;
|
|
width: 100%;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Sale Badge
|
|
Positioning for the sale overlay badge on product cards.
|
|
========================================================================== */
|
|
|
|
.onsale {
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Star Rating
|
|
Consistent sizing for Bootstrap Icon star ratings.
|
|
========================================================================== */
|
|
|
|
.wc-star-rating .bi {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Price Styling
|
|
Override WooCommerce default price markup with Bootstrap-aligned styles.
|
|
========================================================================== */
|
|
|
|
.price del {
|
|
text-decoration: line-through;
|
|
color: var(--bs-secondary-color);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.price ins {
|
|
text-decoration: none;
|
|
color: var(--bs-danger);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Product Gallery
|
|
Thumbnail grid and cursor for single product image gallery.
|
|
========================================================================== */
|
|
|
|
.wc-gallery-thumb {
|
|
cursor: pointer;
|
|
opacity: 0.7;
|
|
transition: opacity 0.15s ease;
|
|
}
|
|
|
|
.wc-gallery-thumb:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.woocommerce-product-gallery__image img {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: var(--bs-border-radius);
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Variation Selectors
|
|
Spacing for variable product attribute dropdowns.
|
|
========================================================================== */
|
|
|
|
.variations_form .reset_variations {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.single_variation_wrap .woocommerce-variation {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
WooCommerce Grid Override
|
|
Reset WooCommerce's default grid to let Bootstrap handle layout.
|
|
========================================================================== */
|
|
|
|
.woocommerce ul.products {
|
|
display: contents;
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Dark Mode Overrides
|
|
Fix any plugin elements that don't adapt to Bootstrap's dark mode.
|
|
========================================================================== */
|
|
|
|
/* Bootstrap 5 dark mode uses data-bs-theme="dark" attribute on <html> */
|
|
[data-bs-theme="dark"] {
|
|
/* Example overrides for dark mode compatibility */
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Sticky Header
|
|
Shadow effect when header is in stuck position.
|
|
========================================================================== */
|
|
|
|
header.sticky-top.is-stuck {
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
transition: box-shadow 0.2s ease;
|
|
}
|
|
|
|
[data-bs-theme="dark"] header.sticky-top.is-stuck {
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* ==========================================================================
|
|
Block Navigation Fix
|
|
Required for dropdown menus inside WordPress block navigation.
|
|
========================================================================== */
|
|
|
|
.wp-block-navigation__container {
|
|
overflow: visible !important;
|
|
}
|