WP Admin UI Customize - Version 1.5.3

Version Description

  • Updated: Organize the Html and CSS and Javascript.
  • Updated: Remove can items when before update sidemenu setting.
Download this release

Release Info

Developer gqevu6bsiz
Plugin Icon wp plugin WP Admin UI Customize
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2.8.1 to 1.5.3

inc/reset_userrole.php CHANGED
@@ -10,7 +10,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
10
 
11
  ?>
12
  <div class="wrap">
13
- <div class="icon32" id="icon-tools"></div>
14
  <?php echo $this->Msg; ?>
15
  <h2><?php _e( 'Reset User Roles' , $this->ltd ); ?></h2>
16
  <p>&nbsp;</p>
@@ -66,5 +66,12 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
66
 
67
  </form>
68
 
69
-
70
  </div>
 
 
 
 
 
 
 
 
10
 
11
  ?>
12
  <div class="wrap">
13
+
14
  <?php echo $this->Msg; ?>
15
  <h2><?php _e( 'Reset User Roles' , $this->ltd ); ?></h2>
16
  <p>&nbsp;</p>
66
 
67
  </form>
68
 
 
69
  </div>
70
+
71
+ <style>
72
+ </style>
73
+ <script>
74
+ jQuery(document).ready( function($) {
75
+
76
+ });
77
+ </script>
inc/setting_admin_bar_menu.php CHANGED
@@ -13,7 +13,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
13
  ?>
14
 
15
  <div class="wrap">
16
- <div class="icon32" id="icon-tools"></div>
17
  <?php echo $this->Msg; ?>
18
  <h2><?php _e( 'Admin Bar Menu' , $this->ltd ); ?></h2>
19
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
@@ -242,17 +242,18 @@ jQuery(document).ready(function($) {
242
  }
243
  });
244
 
245
-
246
- var $AvailableAction = $('#poststuff #post-body .postbox-container .postbox .inside .widget .widget-top .widget-title-action a[href=#available]', $Form);
247
- $AvailableAction.live( 'click', function() {
248
- $(this).parent().parent().parent().children(".widget-inside").slideToggle();
249
  return false;
 
250
  });
251
 
252
- var $RemoveAction = $('#poststuff #post-body .postbox-container .postbox .inside .widget .widget-inside .widget-control-actions .alignleft a[href=#remove]', $Form);
253
- $RemoveAction.live( 'click', function() {
254
- $(this).parent().parent().parent().parent().slideUp("normal", function() { $(this).remove(); } );
255
  return false;
 
256
  });
257
 
258
  wauc_menu_sortable = function menu_sortable() {
13
  ?>
14
 
15
  <div class="wrap">
16
+
17
  <?php echo $this->Msg; ?>
18
  <h2><?php _e( 'Admin Bar Menu' , $this->ltd ); ?></h2>
19
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
242
  }
243
  });
244
 
245
+ $(document).on('click', '.widget .widget-top .widget-title-action a[href=#available]', function() {
246
+
247
+ $(this).parent().parent().parent().children('.widget-inside').slideToggle();
 
248
  return false;
249
+
250
  });
251
 
252
+ $(document).on('click', '.widget .widget-inside .widget-control-actions .alignleft a[href=#remove]', function() {
253
+
254
+ $(this).parent().parent().parent().parent().slideUp('normal', function() { $(this).remove(); } );
255
  return false;
256
+
257
  });
258
 
259
  wauc_menu_sortable = function menu_sortable() {
inc/setting_admin_general.php CHANGED
@@ -11,7 +11,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
11
  ?>
12
 
13
  <div class="wrap">
14
- <div class="icon32" id="icon-tools"></div>
15
  <?php echo $this->Msg; ?>
16
  <h2><?php printf( __( '%1$s %2$s' , $this->ltd ) , __( 'General' ) , __( 'Settings' ) ); ?></h2>
17
  <p>&nbsp;</p>
@@ -197,3 +197,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
197
  </div>
198
 
199
  <?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
 
 
 
 
 
 
 
 
11
  ?>
12
 
13
  <div class="wrap">
14
+
15
  <?php echo $this->Msg; ?>
16
  <h2><?php printf( __( '%1$s %2$s' , $this->ltd ) , __( 'General' ) , __( 'Settings' ) ); ?></h2>
17
  <p>&nbsp;</p>
197
  </div>
198
 
199
  <?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
200
+
201
+ <style>
202
+ </style>
203
+ <script>
204
+ jQuery(document).ready( function($) {
205
+
206
+ });
207
+ </script>
inc/setting_appearance_menus.php CHANGED
@@ -9,7 +9,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
9
  ?>
10
 
11
  <div class="wrap">
12
- <div class="icon32" id="icon-tools"></div>
13
  <?php echo $this->Msg; ?>
14
  <h2><?php _e( 'Appearance Menus Screen Setting' , $this->ltd ); ?></h2>
15
  <p>&nbsp;</p>
@@ -85,3 +85,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
85
  </form>
86
 
87
  </div>
 
 
 
 
 
 
 
 
9
  ?>
10
 
11
  <div class="wrap">
12
+
13
  <?php echo $this->Msg; ?>
14
  <h2><?php _e( 'Appearance Menus Screen Setting' , $this->ltd ); ?></h2>
15
  <p>&nbsp;</p>
85
  </form>
86
 
87
  </div>
88
+
89
+ <style>
90
+ </style>
91
+ <script>
92
+ jQuery(document).ready( function($) {
93
+
94
+ });
95
+ </script>
inc/setting_dashboard.php CHANGED
@@ -11,7 +11,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
11
  ?>
12
 
13
  <div class="wrap">
14
- <div class="icon32" id="icon-tools"></div>
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Dashboard' ); ?><?php _e( 'Settings' ); ?></h2>
17
  <p>&nbsp;</p>
@@ -146,6 +146,18 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
146
 
147
  </div>
148
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  <script type="text/javascript">
150
  jQuery(document).ready(function($) {
151
 
11
  ?>
12
 
13
  <div class="wrap">
14
+
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Dashboard' ); ?><?php _e( 'Settings' ); ?></h2>
17
  <p>&nbsp;</p>
146
 
147
  </div>
148
 
149
+ <style>
150
+ .form-table td {
151
+ vertical-align: top;
152
+ }
153
+ .inside .loading {
154
+ display: none;
155
+ }
156
+ .inside .loading .spinner {
157
+ float: left;
158
+ visibility: visible;
159
+ }
160
+ </style>
161
  <script type="text/javascript">
162
  jQuery(document).ready(function($) {
163
 
inc/setting_default.php CHANGED
@@ -10,7 +10,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
10
 
11
  ?>
12
  <div class="wrap">
13
- <div class="icon32" id="icon-tools"></div>
14
  <?php echo $this->Msg; ?>
15
  <h2><?php echo $this->Name; ?></h2>
16
  <p><?php _e( 'Customize the UI of the management screen for all users.' , $this->ltd ); ?></p>
@@ -168,6 +168,19 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
168
 
169
  </div>
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  <script type="text/javascript">
172
  jQuery(document).ready(function($) {
173
 
10
 
11
  ?>
12
  <div class="wrap">
13
+
14
  <?php echo $this->Msg; ?>
15
  <h2><?php echo $this->Name; ?></h2>
16
  <p><?php _e( 'Customize the UI of the management screen for all users.' , $this->ltd ); ?></p>
168
 
169
  </div>
170
 
171
+ <style>
172
+ #donationbox {
173
+ background: #87BCE4;
174
+ border: 3px solid #227499;
175
+ }
176
+ #donationbox .inside {
177
+ padding: 6px 10px 10px 10px;
178
+ }
179
+ #donationbox .inside .donation_memo {
180
+ background: #FFF8D9;
181
+ padding: 2px 10px;
182
+ }
183
+ </style>
184
  <script type="text/javascript">
185
  jQuery(document).ready(function($) {
186
 
inc/setting_loginscreen.php CHANGED
@@ -11,7 +11,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
11
  ?>
12
 
13
  <div class="wrap">
14
- <div class="icon32" id="icon-tools"></div>
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Login Screen Settings' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
@@ -158,3 +158,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
158
  </div>
159
 
160
  <?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
 
 
 
 
 
 
 
 
11
  ?>
12
 
13
  <div class="wrap">
14
+
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Login Screen Settings' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
158
  </div>
159
 
160
  <?php require_once( dirname( __FILE__ ) . '/list_variables.php' ); ?>
161
+
162
+ <style>
163
+ </style>
164
+ <script>
165
+ jQuery(document).ready( function($) {
166
+
167
+ });
168
+ </script>
inc/setting_manage_metabox.php CHANGED
@@ -13,7 +13,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
13
  ?>
14
 
15
  <div class="wrap">
16
- <div class="icon32" id="icon-tools"></div>
17
  <?php echo $this->Msg; ?>
18
  <h2><?php _e( 'Manage meta box' , $this->ltd ); ?></h2>
19
  <p><?php _e( 'Please update or add a "post" and a "page" to load the available meta boxes.' , $this->ltd ); ?></p>
@@ -356,6 +356,18 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
356
 
357
  </div>
358
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  <script type="text/javascript">
360
  jQuery(document).ready(function($) {
361
 
13
  ?>
14
 
15
  <div class="wrap">
16
+
17
  <?php echo $this->Msg; ?>
18
  <h2><?php _e( 'Manage meta box' , $this->ltd ); ?></h2>
19
  <p><?php _e( 'Please update or add a "post" and a "page" to load the available meta boxes.' , $this->ltd ); ?></p>
356
 
357
  </div>
358
 
359
+ <style>
360
+ .form-table td {
361
+ vertical-align: top;
362
+ }
363
+ .inside .loading {
364
+ display: none;
365
+ }
366
+ .inside .loading .spinner {
367
+ float: left;
368
+ visibility: visible;
369
+ }
370
+ </style>
371
  <script type="text/javascript">
372
  jQuery(document).ready(function($) {
373
 
inc/setting_plugin_cap.php CHANGED
@@ -12,7 +12,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
12
  ?>
13
 
14
  <div class="wrap">
15
- <div class="icon32" id="icon-tools"></div>
16
  <?php echo $this->Msg; ?>
17
  <h2><?php echo sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ); ?></h2>
18
  <p><?php echo sprintf( __( 'You can change the user role %2$s of %1$s settings.' , $this->ltd ) , $this->Name , __( 'Capabilities' ) ); ?></p>
@@ -86,3 +86,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
86
  </form>
87
 
88
  </div>
 
 
 
 
 
 
 
 
12
  ?>
13
 
14
  <div class="wrap">
15
+
16
  <?php echo $this->Msg; ?>
17
  <h2><?php echo sprintf( __( '%1$s of %2$s %3$s' , $this->ltd ) , __( 'Change' ) , __( 'Plugin' ) , __( 'Capabilities' ) ); ?></h2>
18
  <p><?php echo sprintf( __( 'You can change the user role %2$s of %1$s settings.' , $this->ltd ) , $this->Name , __( 'Capabilities' ) ); ?></p>
86
  </form>
87
 
88
  </div>
89
+
90
+ <style>
91
+ </style>
92
+ <script>
93
+ jQuery(document).ready( function($) {
94
+
95
+ });
96
+ </script>
inc/setting_post_add_edit.php CHANGED
@@ -11,7 +11,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
11
  ?>
12
 
13
  <div class="wrap">
14
- <div class="icon32" id="icon-tools"></div>
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Add New Post and Edit Post Screen Setting' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
@@ -105,3 +105,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
105
  </form>
106
 
107
  </div>
 
 
 
 
 
 
 
 
11
  ?>
12
 
13
  <div class="wrap">
14
+
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Add New Post and Edit Post Screen Setting' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
105
  </form>
106
 
107
  </div>
108
+
109
+ <style>
110
+ </style>
111
+ <script>
112
+ jQuery(document).ready( function($) {
113
+
114
+ });
115
+ </script>
inc/setting_sidemenu.php CHANGED
@@ -12,7 +12,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
12
  ?>
13
 
14
  <div class="wrap">
15
- <div class="icon32" id="icon-tools"></div>
16
  <?php echo $this->Msg; ?>
17
  <h2><?php _e( 'Side Menu' , $this->ltd ); ?></h2>
18
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
@@ -287,17 +287,18 @@ jQuery(document).ready(function($) {
287
  }
288
  });
289
 
290
-
291
- var $AvailableAction = $('#postbox-container-2 .postbox .inside .widget .widget-top .widget-title-action a[href=#available]', $Form);
292
- $AvailableAction.live( 'click', function() {
293
  $(this).parent().parent().parent().children(".widget-inside").slideToggle();
294
  return false;
 
295
  });
296
 
297
- var $RemoveAction = $('#postbox-container-2 .postbox .inside .widget .widget-inside .widget-control-actions .alignleft a[href=#remove]', $Form);
298
- $RemoveAction.live( 'click', function() {
299
- $(this).parent().parent().parent().parent().slideUp("normal", function() { $(this).remove(); } );
300
  return false;
 
301
  });
302
 
303
  wauc_menu_sortable = function menu_sortable() {
@@ -351,10 +352,19 @@ jQuery(document).ready(function($) {
351
  }
352
  wauc_widget_each();
353
 
354
- $('#wauc_setting_sidemenu #setting_menus .sidebar_setting_delete a').live('click', function() {
355
- $('#wauc_setting_sidemenu #setting_menus .postbox .inside').html('');
 
356
  return false;
 
357
  });
 
 
358
 
 
 
 
 
 
359
  });
360
  </script>
12
  ?>
13
 
14
  <div class="wrap">
15
+
16
  <?php echo $this->Msg; ?>
17
  <h2><?php _e( 'Side Menu' , $this->ltd ); ?></h2>
18
  <p><?php _e( 'Please change the menu by drag and drop.' , $this->ltd ); ?></p>
287
  }
288
  });
289
 
290
+ $(document).on('click', '.widget .widget-top .widget-title-action a[href=#available]', function() {
291
+
 
292
  $(this).parent().parent().parent().children(".widget-inside").slideToggle();
293
  return false;
294
+
295
  });
296
 
297
+ $(document).on('click', '.widget .widget-inside .widget-control-actions .alignleft a[href=#remove]', function() {
298
+
299
+ $(this).parent().parent().parent().parent().slideUp('normal', function() { $(this).remove(); } );
300
  return false;
301
+
302
  });
303
 
304
  wauc_menu_sortable = function menu_sortable() {
352
  }
353
  wauc_widget_each();
354
 
355
+ $('#setting_menus .sidebar_setting_delete a').on('click', function() {
356
+
357
+ $('#setting_menus .postbox .inside').html('');
358
  return false;
359
+
360
  });
361
+
362
+ $('#wauc_setting_sidemenu').on('submit', function() {
363
 
364
+ $('#can_menus').remove();
365
+ return true;
366
+
367
+ });
368
+
369
  });
370
  </script>
inc/setting_site.php CHANGED
@@ -11,7 +11,7 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
11
  ?>
12
 
13
  <div class="wrap">
14
- <div class="icon32" id="icon-tools"></div>
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Site Settings' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
@@ -164,3 +164,11 @@ wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', arr
164
  </form>
165
 
166
  </div>
 
 
 
 
 
 
 
 
11
  ?>
12
 
13
  <div class="wrap">
14
+
15
  <?php echo $this->Msg; ?>
16
  <h2><?php _e( 'Site Settings' , $this->ltd ); ?></h2>
17
  <p>&nbsp;</p>
164
  </form>
165
 
166
  </div>
167
+
168
+ <style>
169
+ </style>
170
+ <script>
171
+ jQuery(document).ready( function($) {
172
+
173
+ });
174
+ </script>
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
- Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_5_2_8_1
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.8
6
  Tested up to: 4.2.2
7
- Stable tag: 1.5.2.8.1
8
  License: GPL2
9
 
10
  Customize the management screen UI.
@@ -50,6 +50,10 @@ These to Customization is possible.
50
 
51
  == Changelog ==
52
 
 
 
 
 
53
  = 1.5.2.8.1 =
54
  * Fixed: Do not working of Sortable of jQuery 1.11.4.
55
  * Fixed: Tweak CSS.
1
  === WP Admin UI Customize ===
2
  Contributors: gqevu6bsiz
3
+ Donate link: http://gqevu6bsiz.chicappa.jp/please-donation/?utm_source=wporg&utm_medium=donate&utm_content=wauc&utm_campaign=1_5_3
4
  Tags: admin, post, posts, page, option, sitemenu, menu, custom, customize, dashboard, admin_bar, multisite, network, metabox
5
  Requires at least: 3.8
6
  Tested up to: 4.2.2
7
+ Stable tag: 1.5.3
8
  License: GPL2
9
 
10
  Customize the management screen UI.
50
 
51
  == Changelog ==
52
 
53
+ = 1.5.3 =
54
+ * Updated: Organize the Html and CSS and Javascript.
55
+ * Updated: Remove can items when before update sidemenu setting.
56
+
57
  = 1.5.2.8.1 =
58
  * Fixed: Do not working of Sortable of jQuery 1.11.4.
59
  * Fixed: Tweak CSS.
wp-admin-ui-customize.css CHANGED
@@ -41,17 +41,6 @@ input.regular-text {
41
 
42
 
43
 
44
- .postbox-container #donationbox {
45
- background: #87BCE4;
46
- border: 3px solid #227499;
47
- }
48
- .postbox-container #donationbox .inside {
49
- padding: 6px 10px 10px 10px;
50
- }
51
- .postbox-container #donationbox .inside .donation_memo {
52
- background: #FFF8D9;
53
- padding: 2px 10px;
54
- }
55
 
56
  #list_variables {
57
  display: none;
@@ -207,56 +196,3 @@ body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .columns-1 .post
207
  }
208
 
209
 
210
- /* manage metabox */
211
-
212
- #wauc_setting_manage_metabox table.form-table td {
213
- vertical-align: top;
214
- }
215
- #wauc_setting_manage_metabox .inside .loading,
216
- #wauc_setting_dashboard .inside .loading {
217
- display: none;
218
- }
219
- #wauc_setting_manage_metabox .inside .loading .spinner,
220
- #wauc_setting_dashboard .inside .loading .spinner {
221
- float: left;
222
- visibility: visible;
223
- }
224
-
225
-
226
-
227
- /* compatible mp6 */
228
-
229
- body.mp6.toplevel_page_wp_admin_ui_customize .postbox:hover .handlediv:before,
230
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_setting_site .postbox:hover .handlediv:before,
231
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_general_setting .postbox:hover .handlediv:before,
232
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_dashboard .postbox:hover .handlediv:before,
233
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox:hover .handlediv:before,
234
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_sidemenu .postbox:hover .handlediv:before,
235
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_manage_metabox .postbox:hover .handlediv:before,
236
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_post_add_edit_screen .postbox:hover .handlediv:before,
237
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_appearance_menus .postbox:hover .handlediv:before,
238
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_loginscreen .postbox:hover .handlediv:before {
239
- right: 12px;
240
- content: '\f142';
241
- font: normal 20px/1 'dashicons';
242
- speak: none;
243
- display: inline-block;
244
- padding: 8px 10px;
245
- color: #888;
246
- top: 0;
247
- position: relative;
248
- -webkit-font-smoothing: antialiased;
249
- text-decoration: none !important;
250
- }
251
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus > .postbox {
252
- background: none;
253
- }
254
-
255
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group > .widget-top {
256
- background: #333;
257
- }
258
- body.mp6.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar .postbox .inside .widget-group .widget-top a {
259
- color: #333;
260
- }
261
-
262
-
41
 
42
 
43
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
  #list_variables {
46
  display: none;
196
  }
197
 
198
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
wp-admin-ui-customize.js CHANGED
@@ -1,13 +1,10 @@
1
  jQuery(document).ready(function($) {
2
 
3
- var $Form = $(".wauc_form");
4
-
5
- $('.handlediv' , $Form).live( 'click', function() {
6
  $(this).parent().toggleClass('closed');
7
- });
8
 
9
- $('.handlediv' , 'body.wp-admin-ui-customize_page_wp_admin_ui_customize_admin_bar #can_menus').live( 'click', function() {
10
- $(this).parent().toggleClass('closed');
11
  });
12
 
13
  });
1
  jQuery(document).ready(function($) {
2
 
3
+ $(document).on('click', '.wauc_form .handlediv', function() {
4
+
 
5
  $(this).parent().toggleClass('closed');
6
+ return false;
7
 
 
 
8
  });
9
 
10
  });
wp-admin-ui-customize.php CHANGED
@@ -2,10 +2,10 @@
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
- Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_2_8_1
6
- Version: 1.5.2.8.1
7
  Author: gqevu6bsiz
8
- Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_2_8_1
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
@@ -58,7 +58,7 @@ class WP_Admin_UI_Customize
58
 
59
 
60
  function __construct() {
61
- $this->Ver = '1.5.2.8.1';
62
  $this->Name = 'WP Admin UI Customize';
63
  $this->Dir = plugin_dir_path( __FILE__ );
64
  $this->Url = plugin_dir_url( __FILE__ );
2
  /*
3
  Plugin Name: WP Admin UI Customize
4
  Description: An excellent plugin to customize the management screens.
5
+ Plugin URI: http://wpadminuicustomize.com/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_3
6
+ Version: 1.5.3
7
  Author: gqevu6bsiz
8
+ Author URI: http://gqevu6bsiz.chicappa.jp/?utm_source=use_plugin&utm_medium=list&utm_content=wauc&utm_campaign=1_5_3
9
  Text Domain: wauc
10
  Domain Path: /languages
11
  */
58
 
59
 
60
  function __construct() {
61
+ $this->Ver = '1.5.3';
62
  $this->Name = 'WP Admin UI Customize';
63
  $this->Dir = plugin_dir_path( __FILE__ );
64
  $this->Url = plugin_dir_url( __FILE__ );