| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
die; |
| 4 |
} // Cannot access directly. |
| 5 |
?> |
| 6 |
|
| 7 |
<style type="text/css" class="darkify_inline_css"> |
| 8 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button { |
| 9 |
background-color: transparent !important; |
| 10 |
background-repeat: no-repeat !important; |
| 11 |
background-size: contain !important; |
| 12 |
background-position: center !important; |
| 13 |
} |
| 14 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button:start { |
| 15 |
background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "assets/img/others/scroll_arrow_up.svg"); ?>) !important; |
| 16 |
} |
| 17 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button:end { |
| 18 |
background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "assets/img/others/scroll_arrow_down.svg"); ?>) !important; |
| 19 |
} |
| 20 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button:start:horizontal { |
| 21 |
background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "assets/img/others/scroll_arrow_left.svg"); ?>) !important; |
| 22 |
} |
| 23 |
.darkify_dark_mode_enabled::-webkit-scrollbar-button:end:horizontal { |
| 24 |
background-image: url(<?php echo esc_url(DARKIFY_DIR_URL . "assets/img/others/scroll_arrow_right.svg"); ?>) !important; |
| 25 |
} |
| 26 |
</style> |