Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/15/2018 07:12:17 PM (7 years ago)
Author:
boonebgorges
Message:

Nouveau: border-radius declaration should be limited to #buddypress context.

The initial implementation was unbounded, affecting parts of a theme outside
of BuddyPress.

The change also includes some unrelated autoprefix changes due to running the
grunt sass task.

See #8000. Fixes #7940.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/common-styles/_bp_generic_and_typography.scss

    r12171 r12285  
    1414            }
    1515        } // close * the kitchen sink of elements
     16
     17        // 'Boxes' i.e display:block when given definition with borders
     18        // look nice if corners subtly rounded by a couple of pixels
     19        div,
     20        dl,
     21        li,
     22        textarea,
     23        select,
     24        input[type="search"],
     25        input[type="submit"],
     26        input[type="reset"] {
     27
     28            @include border-radius(2px);
     29        }
     30
    1631
    1732        // Some themes have a negative left margin on the blockquote element??
     
    130145}
    131146
    132 // 'Boxes' i.e display:block when given definition with borders
    133 // look nice if corners subtly rounded by a couple of pixels
    134 div,
    135 dl,
    136 li,
    137 textarea,
    138 select,
    139 input[type="search"],
    140 input[type="submit"],
    141 input[type="reset"] {
    142 
    143     @include border-radius(2px);
    144 }
    145 
    146147// ====== BP Typographic Elements ======
    147148
Note: See TracChangeset for help on using the changeset viewer.