Plugin Directory

Changeset 3307191


Ignore:
Timestamp:
06/05/2025 05:14:56 PM (10 months ago)
Author:
davidvongries
Message:

updated to 4.1.2

Location:
better-admin-bar
Files:
87 added
6 edited

Legend:

Unmodified
Added
Removed
  • better-admin-bar/trunk/assets/css/heatbox.css

    r3005444 r3307191  
    139139/* Version */
    140140.heatbox-wrap .version {
    141     font-size: 50%;
     141    font-size: 45%;
    142142    opacity: 0.6;
    143143    font-weight: 600;
     
    146146    padding: 5px 12px;
    147147    line-height: 1;
     148    vertical-align: middle;
     149    margin: 0 5px;
    148150}
    149151
     
    171173        width: 100%;
    172174    }
     175
    173176    .heatbox-main {
    174177        margin-right: 0;
     
    237240}
    238241
     242/* Loading Button */
     243@-webkit-keyframes heatboxLoadingSpinner {
     244    from {
     245        transform: rotate(0);
     246    }
     247    to {
     248        transform: rotate(359deg);
     249    }
     250}
     251
     252@keyframes heatboxLoadingSpinner {
     253    from {
     254        transform: rotate(0);
     255    }
     256    to {
     257        transform: rotate(359deg);
     258    }
     259}
     260
    239261/* Buttons */
    240262.heatbox-wrap .button-larger {
     
    245267    width: 100%;
    246268    text-align: center;
     269}
     270
     271.heatbox-wrap .button.is-loading {
     272    display: inline-flex;
     273    align-items: center;
     274    justify-content: center;
     275    color: transparent !important;
     276    pointer-events: none;
     277}
     278
     279.heatbox-wrap .button.is-loading::after {
     280    content: "";
     281    position: absolute;
     282    width: 1em;
     283    display: block;
     284    height: 1em;
     285    border: 2px solid #dbdbdb;
     286    /* border: 2px solid $accent-color; */
     287    border-color: transparent transparent #fff #fff !important;
     288    /* border-color: transparent transparent $accent-color $accent-color !important; */
     289    border-radius: 290486px;
     290    -webkit-animation: heatboxLoadingSpinner 0.5s infinite linear;
     291    animation: heatboxLoadingSpinner 0.5s infinite linear;
    247292}
    248293
     
    289334}
    290335
     336.heatbox .radio-label {
     337    padding-left: 30px;
     338    margin-right: 25px;
     339}
     340
    291341.heatbox .label input {
    292342    position: absolute;
     
    340390}
    341391
     392.heatbox .radio-label,
    342393.heatbox .checkbox-label {
    343394    padding-left: 30px;
     
    464515
    465516/* Tags / chips */
     517.tags-heatbox .action-status {
     518    height: auto;
     519}
     520
     521.tags-heatbox .tags-wrapper {
     522    line-height: 1.8;
     523}
     524
     525.tags-heatbox h2 {
     526    position: relative;
     527}
     528
     529.tags-heatbox h2 .action-status {
     530    display: inline-block;
     531    position: absolute;
     532    right: 20px;
     533    top: 50%;
     534    padding: 10px;
     535    height: 30px;
     536    line-height: 10px;
     537    font-size: 11px;
     538    color: #fff;
     539    background-color: #444;
     540    border-radius: 4px;
     541    opacity: 0;
     542    visibility: hidden;
     543    transform: translateY(-50%);
     544    transition: all 0.3s ease-in-out;
     545}
     546
     547.tags-heatbox h2 .action-status.is-shown {
     548    opacity: 1;
     549    visibility: visible;
     550}
     551
     552.tags-heatbox .heatbox-content p:last-child {
     553    margin-bottom: 0;
     554}
     555
    466556.heatbox .tags-wrapper code {
    467557    display: inline-block;
  • better-admin-bar/trunk/assets/js/general-settings.js

    r3005444 r3307191  
    6969
    7070    loading.start = function () {
    71         elms.saveButton.disabled = true;
     71        elms.saveButton.classList.add("is-loading");
    7272    };
    7373
    7474    loading.stop = function () {
    75         elms.saveButton.disabled = false;
     75        elms.saveButton.classList.remove("is-loading");
    7676    };
    7777
  • better-admin-bar/trunk/better-admin-bar.php

    r3006190 r3307191  
    44 * Plugin URI: https://betteradminbar.com/
    55 * Description: Hide WordPress admin bar, replace it with a better swift control.
    6  * Version: 4.1.1
     6 * Version: 4.1.2
    77 * Author: David Vongries
    88 * Author URI: https://davidvongries.com/
     
    1818define( 'SWIFT_CONTROL_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
    1919define( 'SWIFT_CONTROL_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
    20 define( 'SWIFT_CONTROL_PLUGIN_VERSION', '4.1.1' );
     20define( 'SWIFT_CONTROL_PLUGIN_VERSION', '4.1.2' );
    2121
    2222require __DIR__ . '/autoload.php';
  • better-admin-bar/trunk/class-setup.php

    r3006190 r3307191  
    5454
    5555    /**
    56      * Check if we're on the Kirki settings page.
     56     * Check if we're on the BAB settings page.
    5757     *
    5858     * @return bool
  • better-admin-bar/trunk/readme.txt

    r3054414 r3307191  
    33Tags: Adminbar, Margin, Quick Edit, Admin Bar, Replace Admin Bar, Frontend Access, Swift Control, 32px
    44Requires at least: 3.0.1
    5 Tested up to: 6.4
    6 Stable tag: 4.1.1
     5Tested up to: 6.8
     6Stable tag: 4.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5656
    5757== Changelog ==
     58= 4.1.2 =
     59* Tested up to WordPress 6.8
    5860= 4.1.1 =
    5961* Fixed: Adjust the animation in the quick access panel preview when items are reordered
  • better-admin-bar/trunk/templates/admin-page.php

    r3005444 r3307191  
    178178            </ul>
    179179
    180             <p class="credit"><?php _e( 'Made with ❤ in Aschaffenburg, Germany', 'better-admin-bar' ); ?></p>
     180            <p class="credit"><?php _e( 'Made with ❤ in Torsby, Sweden', 'better-admin-bar' ); ?></p>
    181181
    182182        </div>
Note: See TracChangeset for help on using the changeset viewer.