Skip to content

Commit

Permalink
Merge pull request #16 from WPEzPz/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
parsafatehi authored Jun 16, 2023
2 parents 1448e69 + c3192d0 commit 056cb23
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
## Install

```sh
composer update
composer install --no-dev --optimize-autoloader
```

## Author
Expand Down
10 changes: 7 additions & 3 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== WP EzPz Tweaks ===
Contributors: wpezpz
Contributors: wpezpz, khorshidlab
Tags: optimization, performance, customization, admin menu editor, security, tweaks, custom login url, wp login, branding
Requires at least: 5.6
Tested up to: 5.9.2
Stable tag: 1.0.17
Tested up to: 6.2
Stable tag: 1.1.0
License: GPL-3.0 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.txt
Requires PHP: 7.0
Expand Down Expand Up @@ -47,6 +47,10 @@ EzPz Tweaks is an all-in-one WordPress plugin that helps you personalize the adm

== Changelog ==

= 1.1.0 - 2023-06-16 =
* Some imporvement in UI and features
* Tested up to WordPress 6.2

= 1.0.17 - 2022-03-31 =
* fix: Show changed Admin Bar logo in frontend
* Tested up to WordPress 5.9.2
Expand Down
13 changes: 7 additions & 6 deletions assets/css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
}

.ezpz-tweaks-tabs .wp-tab-panel {
width: 978px;
max-height: 100% !important;
max-width: 1280px !important;
padding: 20px !important;
Expand Down Expand Up @@ -207,7 +208,7 @@
transition: height .5s ease-in-out, border .5s ease-in-out, margin .5s ease-in-out;
}

.cmb-td {
.ezpz-tweaks-tabs .cmb-td {
max-width: 50% !important;
}

Expand Down Expand Up @@ -260,12 +261,12 @@
vertical-align: middle;
}

.cmb-field-list {
.ezpz-tweaks-tabs .cmb-field-list {
max-width: 100% !important;
}

.cmb2-wrap input:not([type=hidden]) + .button-secondary,
.cmb2-wrap input:not([type=hidden]) + input {
.ezpz-tweaks-tabs .cmb2-wrap input:not([type=hidden]) + .button-secondary,
.ezpz-tweaks-tabs .cmb2-wrap input:not([type=hidden]) + input {
margin-left: 0 !important;
}

Expand All @@ -274,14 +275,14 @@
height: auto !important;
}
/* Range field */
.cmb2-range {
.ezpz-tweaks-tabs .cmb2-range {
width: 70%;
float: left;
opacity: 0.75;
-webkit-transition: .2s;
transition: opacity .2s;
}
.cmb2-range:hover {
.ezpz-tweaks-tabs .cmb2-range:hover {
opacity: 1;
}
.range-text {
Expand Down
2 changes: 1 addition & 1 deletion backend/Settings_Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function initialize() {

// for edit admin bar
// this has to be here, otherwise it will not work. the priority is high.
add_filter( 'admin_body_class', array($this, 'maybe_add_body_class') );
// add_filter( 'admin_body_class', array($this, 'maybe_add_body_class') );


$font = new \EZPZ_TWEAKS\Engine\Features\Font\Font();
Expand Down
4 changes: 2 additions & 2 deletions wp-ezpz-tweaks.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* Plugin Name: WPEzPz Tweaks
* Description: WPEzPz Tweaks is an all-in-one WordPress plugin that helps you personalize the admin panel appearances, clean your site code and remove unwanted features to increase its security and improve performance.
* Version: 1.0.17
* Version: 1.1.0
* Author: WP EzPz
* Author URI: https://wpezpzdev.com/
* Text Domain: wpezpz-tweaks
Expand All @@ -25,7 +25,7 @@
die( 'We\'re sorry, but you can not directly access this file.' );
}

define( 'EZPZ_TWEAKS_VERSION', '1.0.17' );
define( 'EZPZ_TWEAKS_VERSION', '1.1.0' );
define( 'EZPZ_TWEAKS_TEXTDOMAIN', 'wpezpz-tweaks' );
define( 'EZPZ_TWEAKS_NAME', __( 'WPEzPz Tweaks', EZPZ_TWEAKS_TEXTDOMAIN ) );
define( 'EZPZ_TWEAKS_PLUGIN_ROOT', plugin_dir_path( __FILE__ ) );
Expand Down

0 comments on commit 056cb23

Please sign in to comment.