Skip to content

Commit

Permalink
Super Cache: Fix Blurry Logo (#34985)
Browse files Browse the repository at this point in the history
* Add changelog

* Update logo

* Equalise height

Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/7536316819
  • Loading branch information
thingalon authored and matticbot committed Jan 16, 2024
1 parent b7993c8 commit 0a1c54e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This is an alpha version! The changes listed here are not final.
- Code Modernization: Replace usage of strpos() with str_contains()
- Code Modernization: Replace usage of strpos() with str_starts_with().
- Code Modernization: Replace usage of substr() with str_starts_with() and str_ends_with().
- Fix blurry Automattic logo.
- General: updated PHP requirement to PHP 7.0+
- General: update WordPress version requirements to WordPress 6.3.
- Updated package dependencies.
Expand Down
Binary file removed assets/automattic-airline.png
Binary file not shown.
10 changes: 10 additions & 0 deletions assets/automattic-airline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions styling/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@

.footer .automattic-airline {
flex: 1;
height: 45px;
text-align: right;
}

Expand Down
2 changes: 1 addition & 1 deletion wp-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -4386,7 +4386,7 @@ function wpsc_render_footer() {
<span class="wpsc-name"><?php echo esc_html( 'WP Super Cache' ); ?></span>
</div>
<div class="automattic-airline">
<img class="wpsc-icon" src="<?php echo esc_url( plugin_dir_url( __FILE__ ) . '/assets/automattic-airline.png' ); ?>" />
<img class="wpsc-icon" src="<?php echo esc_url( plugin_dir_url( __FILE__ ) . '/assets/automattic-airline.svg' ); ?>" />
</div>
</div>
<?php
Expand Down

0 comments on commit 0a1c54e

Please sign in to comment.