Skip to:
Content

BuddyPress.org

Changeset 12835


Ignore:
Timestamp:
01/16/2021 06:20:46 AM (4 years ago)
Author:
imath
Message:

BP Nouveau: make sure the registration pwd field is displayed in 2021

Twenty Twenty-One companion stylesheet: narrow how the rule to hide the password into the user's profile general settings is applied.

Props iamthewebb

Fixes #8425 (7.0 branch)

Location:
branches/7.0/src/bp-templates/bp-nouveau
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0/src/bp-templates/bp-nouveau/css/twentytwentyone-rtl.css

    r12814 r12835  
    10581058}
    10591059
    1060 #buddypress.twentytwentyone .wp-pwd:not(.is-open) {
    1061     display: none;
    1062 }
    1063 
    10641060#buddypress.twentytwentyone input[type="checkbox"],
    10651061#buddypress.twentytwentyone input[type="radio"] {
     
    11151111    color: var(--global--primary-color);
    11161112    background-color: var(--global--color-background);
     1113}
     1114
     1115body.bp-user.my-account #buddypress.twentytwentyone .wp-pwd:not(.is-open) {
     1116    display: none;
    11171117}
    11181118
  • branches/7.0/src/bp-templates/bp-nouveau/css/twentytwentyone.css

    r12814 r12835  
    10581058}
    10591059
    1060 #buddypress.twentytwentyone .wp-pwd:not(.is-open) {
    1061     display: none;
    1062 }
    1063 
    10641060#buddypress.twentytwentyone input[type="checkbox"],
    10651061#buddypress.twentytwentyone input[type="radio"] {
     
    11151111    color: var(--global--primary-color);
    11161112    background-color: var(--global--color-background);
     1113}
     1114
     1115body.bp-user.my-account #buddypress.twentytwentyone .wp-pwd:not(.is-open) {
     1116    display: none;
    11171117}
    11181118
  • branches/7.0/src/bp-templates/bp-nouveau/sass/twentytwentyone.scss

    r12814 r12835  
    14251425    }
    14261426
    1427     .wp-pwd {
    1428 
    1429         &:not(.is-open) {
    1430             display: none;
    1431         }
    1432     }
    1433 
    14341427    input[type="checkbox"],
    14351428    input[type="radio"] {
     
    14911484            color: var(--global--primary-color);
    14921485            background-color: var(--global--color-background);
     1486        }
     1487    }
     1488}
     1489
     1490body.bp-user.my-account {
     1491
     1492    #buddypress.twentytwentyone {
     1493
     1494        .wp-pwd {
     1495
     1496            &:not(.is-open) {
     1497                display: none;
     1498            }
    14931499        }
    14941500    }
Note: See TracChangeset for help on using the changeset viewer.