Adds missing customizer color classes.

This commit is contained in:
mateuswetah 2018-12-18 13:50:15 -02:00
parent 0840112b47
commit afaa907c2d
1 changed files with 6 additions and 3 deletions

View File

@ -671,12 +671,14 @@ function tainacan_get_color_scheme_css( $colors ) {
}
/* Select Arrow */
.theme-items-list .select:not(.is-loading)::after {
.theme-items-list .select:not(.is-loading)::after
.tainacan-modal-content .select:not(.is-loading)::after ,{
color: {$colors['tainacan_link_color']} !important;
}
/* Anchor tag, links */
.theme-items-list a, .theme-items-list a:hover {
.theme-items-list a, .theme-items-list a:hover,
.tainacan-modal-content a, .tainacan-modal-content a:hover {
color: {$colors['tainacan_link_color']} !important;
}
@ -689,7 +691,8 @@ function tainacan_get_color_scheme_css( $colors ) {
}
/* Colored text */
.theme-items-list .has-text-secondary {
.theme-items-list .has-text-secondary,
.tainacan-modal-content .has-text-secondary {
color: {$colors['tainacan_link_color']} !important;
}