Skip to content

Commit

Permalink
Merge pull request #54 from campuspress/CPC-1258/update-twitter-icon
Browse files Browse the repository at this point in the history
Cpc 1258/update twitter icon
  • Loading branch information
maniu authored Sep 22, 2023
2 parents b4975ac + fad5752 commit 7cf11e1
Show file tree
Hide file tree
Showing 19 changed files with 467 additions and 394 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
= 0.9.9 =
* Added Twitter icon
* Added support for WP shortcode HTML5 gallery styles
* Added support for Custom alt text for custom logo
* Removed IE support (Polyfill)
* Color system update
* Added fix for Navigation accessibility

= 0.9.8 =
* Updated font files
* Added filter `cpschool_get_customizer_fonts_options`
Expand Down
20 changes: 10 additions & 10 deletions css/admin-nav-menus.css

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions css/block-editor.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/block-editor.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/block-editor.min.css.map

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions css/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/theme.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/theme.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions fonts/icomoon/cpschool.svg
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified fonts/icomoon/cpschool.ttf
100755 → 100644
Binary file not shown.
Binary file modified fonts/icomoon/cpschool.woff
100755 → 100644
Binary file not shown.
33 changes: 0 additions & 33 deletions js/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -7342,39 +7342,6 @@ var cpSchoolThemeHelpers = function ($) {

return init(function () {});
});
/**
* File skip-link-focus-fix.js.
*
* Helps with accessibility for keyboard only users.
*
* Learn more: https://git.io/vWdr2
*/
(function () {
var isWebkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1,
isOpera = navigator.userAgent.toLowerCase().indexOf('opera') > -1,
isIe = navigator.userAgent.toLowerCase().indexOf('msie') > -1;

if ((isWebkit || isOpera || isIe) && document.getElementById && window.addEventListener) {
window.addEventListener('hashchange', function () {
var id = location.hash.substring(1),
element;

if (!/^[A-z0-9_-]+$/.test(id)) {
return;
}

element = document.getElementById(id);

if (element) {
if (!/^(?:a|select|input|button|textarea)$/i.test(element.tagName)) {
element.tabIndex = -1;
}

element.focus();
}
}, false);
}
})();
(function ($) {
// Calculates necessary things on resize.
$(window).on('resize', function () {
Expand Down
2 changes: 1 addition & 1 deletion js/theme.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=== CampusPress Flex ===
Contributors: CampusPress Team
Tested up to: 5.3
Tested up to: 6.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
Loading

0 comments on commit 7cf11e1

Please sign in to comment.