/*
Theme Name: ibp.Style-Theme
Theme URI: https://teams.ibp.one
Author: Andreas
Author URI: https://teams.ibp.one
Description: Custom ibp.Block-Theme mit variablem Farbsystem (ibp.Orange, ibp.Silver, ibp.Purple usw.).
Version: 1.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: ibp-style-theme
*/



/*
 * Ergänzendes CSS für ibp.Themes
 * Stellt sicher, dass Listen-Markierungen und der Outline Button die Primary-Farbe nutzen.
 */

/* 1. Fix für Outline Button (Nutzung der Primary-Farbe für Rahmen und Text) */
.wp-block-button.is-style-outline > .wp-block-button__link {
    /* Wichtig: !important wird hier benötigt, um Standard-Block-Styles zu überschreiben */
    color: var(--wp--preset--color--primary-500) !important;
    border-color: var(--wp--preset--color--primary-500) !important;
    background-color: transparent !important;
}

/* 2. Fix für Listen-Markierungen (Nutzung der Primary-Farbe für Bullets und Nummern) */
/* Gilt für ungeordnete Listen (ul) und geordnete Listen (ol) */
.wp-block-list li::marker {
    color: var(--wp--preset--color--primary-500);
}