This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: $bootstrap-icons-font; | |
src: $bootstrap-icons-font-src; | |
font-display: block; // <------ edited line | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
*** OPTIONS ***/ | |
// TITLE OF PAGE | |
$title = "List of Files"; | |
// ADD SPECIFIC FILES YOU WANT TO IGNORE HERE | |
$ignore_file_list = array( ".htaccess", "Thumbs.db", ".DS_Store", "index.php" ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
defined( 'ABSPATH' ) || exit; | |
if( is_plugin_active( "woocommerce-pdf-invoice/woocommerce-pdf-invoice.php" ) ) : | |
/** | |
* Create a custom PDF preview page for the plugin. | |
* | |
* @since 1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.datepick .datepick-month table td .mphb-booked-date.mphb-date-check-out, | |
.datepick .datepick-month table td .mphb-booked-date.mphb-date-check-in, | |
.datepick .datepick-month table td .mphb-available-date.mphb-date-check-out, | |
.datepick .datepick-month table td .mphb-available-date.mphb-date-check-in { | |
background: linear-gradient(to top left,#c1eed1 0,#c1eed1 50%, #f8cccc 50%, #f8cccc 100%); | |
} |