Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<?php
/**
* Dynamic styles for the template previewer.
*
* @since 2.0.0
*/
?>
body #switcher {
background-color: #<?php echo $bg_color->getHex(); ?>;
border-bottom: 5px solid <?php echo $bg_color->isDark() ? '#f9f9f9' : '#333'; ?>;
}
#template_selector {
color: <?php echo $bg_color->isDark() ? '#dfdfdf' : '#555'; ?>;
}
.responsive a {
color: <?php echo $bg_color->isDark() ? '#fff' : '#444'; ?>
}
.responsive a.active, .responsive a:hover {
color: <?php echo $bg_color->isDark() ? '#fff' : '#444'; ?>
}
.select-template a, .mobile-selector a {
background-color: #<?php echo $button_bg_color->getHex(); ?>;
color: <?php echo $button_bg_color->isDark() ? '#fff' : '#444'; ?>;
}