Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit ba30087

Browse files
Merge pull request #413 from Codeinwp/development
Improved user experience by using Selective Refresh for widgets. Improved compatibility with Max Mega Menu plugin for mobile Update Font Awesome to the latest version Improved Customizer layout Improved accessibility options Fixed issue with media image uploader
2 parents c428b76 + 91efd20 commit ba30087

27 files changed

+3199
-676
lines changed

css/font-awesome.css

Lines changed: 2199 additions & 0 deletions
Large diffs are not rendered by default.

css/font-awesome.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/zerif_customizer_custom_css.css

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,6 @@
1414
content: "\f160";
1515
}
1616

17-
.zerif-upgrade-to-pro-button {
18-
padding: 3px 6px !important;
19-
line-height: 1.5 !important;
20-
font-size: 9px !important;
21-
color: #ffffff !important;
22-
background-color: #EA6F60;
23-
letter-spacing: 1px;
24-
text-transform: uppercase;
25-
margin-left: 30px;
26-
}
27-
2817
/* Tooltips */
2918
.zerif-moreinfo-icon {
3019
color: #888;
@@ -74,7 +63,3 @@
7463
width: 12px;
7564
}
7665

77-
#accordion-section-zerif-upsell {
78-
display: block !important;
79-
}
80-

fonts/FontAwesome.otf

38.2 KB
Binary file not shown.

fonts/fontawesome-webfont.eot

20 KB
Binary file not shown.

fonts/fontawesome-webfont.svg

Lines changed: 186 additions & 21 deletions
Loading

fonts/fontawesome-webfont.ttf

39.7 KB
Binary file not shown.

fonts/fontawesome-webfont.woff

24.4 KB
Binary file not shown.

fonts/fontawesome-webfont.woff2

70.2 KB
Binary file not shown.

footer.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,27 +141,27 @@
141141

142142
/* facebook */
143143
if( !empty($zerif_socials_facebook) ):
144-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_facebook).'"><i class="fa fa-facebook"></i></a></li>';
144+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_facebook).'"><span class="sr-only">' . __( 'Go to Facebook', 'zerif-lite' ) . '</span> <i class="fa fa-facebook"></i></a></li>';
145145
endif;
146146
/* twitter */
147147
if( !empty($zerif_socials_twitter) ):
148-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_twitter).'"><i class="fa fa-twitter"></i></a></li>';
148+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_twitter).'"><span class="sr-only">' . __( 'Go to Twitter', 'zerif-lite' ) . '</span> <i class="fa fa-twitter"></i></a></li>';
149149
endif;
150150
/* linkedin */
151151
if( !empty($zerif_socials_linkedin) ):
152-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_linkedin).'"><i class="fa fa-linkedin"></i></a></li>';
152+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_linkedin).'"><span class="sr-only">' . __( 'Go to Linkedin', 'zerif-lite' ) . '</span> <i class="fa fa-linkedin"></i></a></li>';
153153
endif;
154154
/* behance */
155155
if( !empty($zerif_socials_behance) ):
156-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_behance).'"><i class="fa fa-behance"></i></a></li>';
156+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_behance).'"><span class="sr-only">' . __( 'Go to Behance', 'zerif-lite' ) . '</span> <i class="fa fa-behance"></i></a></li>';
157157
endif;
158158
/* dribbble */
159159
if( !empty($zerif_socials_dribbble) ):
160-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_dribbble).'"><i class="fa fa-dribbble"></i></a></li>';
160+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_dribbble).'"><span class="sr-only">' . __( 'Go to Dribble', 'zerif-lite' ) . '</span> <i class="fa fa-dribbble"></i></a></li>';
161161
endif;
162162
/* instagram */
163163
if( !empty($zerif_socials_instagram) ):
164-
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_instagram).'"><i class="fa fa-instagram"></i></a></li>';
164+
echo '<li><a'.$attribut_new_tab.' href="'.esc_url($zerif_socials_instagram).'"><span class="sr-only">' . __( 'Go to Instagram', 'zerif-lite' ) . '</span> <i class="fa fa-instagram"></i></a></li>';
165165
endif;
166166
echo '</ul>';
167167
endif;

0 commit comments

Comments
 (0)