| 1 |
<?php |
| 2 |
// don't call the file directly. |
| 3 |
if (!defined('ABSPATH')) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
?> |
| 7 |
|
| 8 |
<style type="text/css" class="darkify_inline_css"> |
| 9 |
.darkify_dark_mode_enabled::-webkit-scrollbar { |
| 10 |
background: <?php echo esc_attr($dark_mode_scrollbar_track_bg); ?> !important; |
| 11 |
} |
| 12 |
.darkify_dark_mode_enabled::-webkit-scrollbar-track { |
| 13 |
background: <?php echo esc_attr($dark_mode_scrollbar_track_bg); ?> !important; |
| 14 |
} |
| 15 |
.darkify_dark_mode_enabled::-webkit-scrollbar-thumb { |
| 16 |
background-color: <?php echo esc_attr($dark_mode_scrollbar_thumb_bg); ?> !important; |
| 17 |
} |
| 18 |
.darkify_dark_mode_enabled::-webkit-scrollbar-corner { |
| 19 |
background-color: <?php echo esc_attr($dark_mode_scrollbar_thumb_bg); ?> !important; |
| 20 |
} |
| 21 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button { |
| 22 |
background-color: transparent !important; |
| 23 |
background-repeat: no-repeat !important; |
| 24 |
background-size: contain !important; |
| 25 |
background-position: center !important; |
| 26 |
} |
| 27 |
</style> |