Plugin Directory

Changeset 3116696


Ignore:
Timestamp:
07/11/2024 09:54:06 PM (21 months ago)
Author:
deryck
Message:

v1.2.3

Location:
user-toolkit
Files:
42 added
4 edited

Legend:

Unmodified
Added
Removed
  • user-toolkit/trunk/README.txt

    r3025222 r3116696  
    44Tags: user profile, last login, disable user, registration date
    55Requires at least: 5.9.5
    6 Tested up to: 6.4
     6Tested up to: 6.6
    77Requires PHP: 7.3
    8 Stable tag: 1.2.2
     8Stable tag: 1.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9494== Changelog ==
    9595
     96= 1.2.3 =
     97* Fixed styles for switch to previous user modal box
     98
    9699= 1.2.2 =
    97100* Fixed the user switch. Now is on left when disabled, and in right when enabled.
     
    139142== Upgrade Notice ==
    140143
     144= 1.2.3 =
     145* Fixed styles for switch to previous user modal box
     146
    141147= 1.2.2 =
    142148* Fixed the user switch. Now is on left when disabled, and in right when enabled.
  • user-toolkit/trunk/assets/dist/app.css

    r3025222 r3116696  
    1 .manage-column.column-can_login{width:55px}.manage-column.column-id{width:100px}.ut-toggle{border:1px solid #dedede;padding:2px;width:32px;border-radius:200px;background-color:#f0f0f0;transition:all 600ms ease-in-out;display:flex;justify-content:flex-start}.ut-toggle:hover{background-color:#f6f6f6;cursor:pointer}.ut-toggle[data-active="1"]{background-color:#6397d7;justify-content:flex-end}.ut-toggle[data-active="1"] .ut-switch{border-color:#6397d7}.ut-toggle .ut-switch{width:14px;height:14px;border:1px solid #dedede;border-radius:500px;background-color:#fff;transition:all 1s ease-in-out}.ut-readonly-toggle{border:1px solid #dedede;padding:2px;width:32px;height:16px;border-radius:200px;background-color:#f0f0f0;transition:all 600ms ease-in-out;display:flex;justify-content:center;align-items:center;font-size:.9em;font-weight:700;text-transform:uppercase;cursor:not-allowed}.ut-readonly-toggle[data-active="0"]{color:#a02a21}.ut-readonly-toggle[data-active="1"]{border-color:#6498d7;background-color:#6498d7;color:#fff}#switch_back_user{position:fixed;right:0;bottom:0;background:#e2e2e2;padding:5px 10px;font-size:14px;border:1px solid #bfbebe;border-radius:6px;margin:5px;z-index:9999999999}#switch_back_user p{margin:0;padding:0}#switch_back_user a{font-weight:700}
     1.manage-column.column-can_login{width:55px}.manage-column.column-id{width:100px}.ut-toggle{border:1px solid #dedede;padding:2px;width:32px;border-radius:200px;background-color:#f0f0f0;transition:all 600ms ease-in-out;display:flex;justify-content:flex-start}.ut-toggle:hover{background-color:#f6f6f6;cursor:pointer}.ut-toggle[data-active="1"]{background-color:#6397d7;justify-content:flex-end}.ut-toggle[data-active="1"] .ut-switch{border-color:#6397d7}.ut-toggle .ut-switch{width:14px;height:14px;border:1px solid #dedede;border-radius:500px;background-color:#fff;transition:all 1s ease-in-out}.ut-readonly-toggle{border:1px solid #dedede;padding:2px;width:32px;height:16px;border-radius:200px;background-color:#f0f0f0;transition:all 600ms ease-in-out;display:flex;justify-content:center;align-items:center;font-size:.9em;font-weight:700;text-transform:uppercase;cursor:not-allowed}.ut-readonly-toggle[data-active="0"]{color:#a02a21}.ut-readonly-toggle[data-active="1"]{border-color:#6498d7;background-color:#6498d7;color:#fff}#switch_back_user{position:fixed;right:clamp(0px,5vw,30px);bottom:0;background:#e2e2e2;padding:5px 10px;font-size:14px;border:1px solid #bfbebe;border-radius:4px;margin:5px;z-index:9999999999}#switch_back_user p{margin:0;padding:0;color:#333}#switch_back_user a{font-weight:700;color:#1a72e0}
  • user-toolkit/trunk/assets/src/app.scss

    r3025222 r3116696  
    7676#switch_back_user {
    7777  position: fixed;
    78   right: 0;
     78  right: clamp(0px, 5vw, 30px);
    7979  bottom: 0;
    8080  background: #e2e2e2;
     
    8282  font-size: 14px;
    8383  border: 1px solid #bfbebe;
    84   border-radius: 6px;
     84  border-radius: 4px;
    8585  margin: 5px;
    8686  z-index: 9999999999;
     
    8989    margin: 0;
    9090    padding: 0;
     91    color: #333;
    9192  }
    9293
    9394  a {
    9495    font-weight: 700;
     96    color: #1a72e0;
    9597  }
    9698}
  • user-toolkit/trunk/user-toolkit.php

    r3025222 r3116696  
    99 * Plugin URI:        https://deryckoe.com/user-toolkit
    1010 * Description:       The missing user tools and activity data that you need and don't have by default.
    11  * Version:           1.2.2
     11 * Version:           1.2.3
    1212 * Author:            Deryck Oñate
    1313 * Author URI:        http://deryckoe.com
     
    2626 * Currently plugin version.
    2727 */
    28 define( 'USRTK_VERSION', '1.2.2' );
     28define( 'USRTK_VERSION', '1.2.3' );
    2929
    3030/**
Note: See TracChangeset for help on using the changeset viewer.