Skip to:
Content

BuddyPress.org

Changeset 12571


Ignore:
Timestamp:
03/15/2020 10:14:12 AM (5 years ago)
Author:
imath
Message:

Template Packs: fix some CSS coding standards

Props man4toman

Fixes #8157

Location:
trunk/src/bp-templates
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/css/twentyseventeen-rtl.css

    r12226 r12571  
    19771977#buddypress div.message-search form input[type="submit"],
    19781978#buddypress li.groups-members-search form input[type="submit"] {
    1979     border-radius: none;
     1979    border-radius: 0;
    19801980    float: left;
    19811981    font-weight: 400;
  • trunk/src/bp-templates/bp-legacy/css/twentyseventeen.css

    r12297 r12571  
    19771977#buddypress div.message-search form input[type="submit"],
    19781978#buddypress li.groups-members-search form input[type="submit"] {
    1979     border-radius: none;
     1979    border-radius: 0;
    19801980    float: right;
    19811981    font-weight: 400;
  • trunk/src/bp-templates/bp-legacy/css/twentyseventeen.scss

    r12226 r12571  
    167167
    168168@mixin border-radius-none() {
    169     -webkit-border-radius: none;
    170     -moz-border-radius: none;
    171     -ms-border-radius: none;
    172     border-radius: none;
     169    -webkit-border-radius: 0;
     170    -moz-border-radius: 0;
     171    -ms-border-radius: 0;
     172    border-radius: 0;
    173173}
    174174
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_activity_entries.scss

    r12398 r12571  
    5656
    5757            .activity-avatar {
    58                 margin-left: 0 auto;
     58                margin-left: 0;
    5959                text-align: center;
    6060                width: auto;
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_filters.scss

    r12082 r12571  
    128128            .bulk-apply {
    129129                border: 0;
    130                 border-radius: none;
     130                border-radius: 0;
    131131                font-weight: 400;
    132132                line-height: 1.8;
  • trunk/src/bp-templates/bp-nouveau/css/buddypress-rtl.css

    r12570 r12571  
    750750.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply {
    751751    border: 0;
    752     border-radius: none;
     752    border-radius: 0;
    753753    font-weight: 400;
    754754    line-height: 1.8;
     
    12731273
    12741274.activity-list .activity-item.mini .activity-avatar {
    1275     margin-right: 0 auto;
     1275    margin-right: 0;
    12761276    text-align: center;
    12771277    width: auto;
  • trunk/src/bp-templates/bp-nouveau/css/buddypress.css

    r12570 r12571  
    750750.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply {
    751751    border: 0;
    752     border-radius: none;
     752    border-radius: 0;
    753753    font-weight: 400;
    754754    line-height: 1.8;
     
    12731273
    12741274.activity-list .activity-item.mini .activity-avatar {
    1275     margin-left: 0 auto;
     1275    margin-left: 0;
    12761276    text-align: center;
    12771277    width: auto;
Note: See TracChangeset for help on using the changeset viewer.