Skip to:
Content

BuddyPress.org

Changeset 12285


Ignore:
Timestamp:
11/15/2018 07:12:17 PM (8 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.

Location:
trunk/src
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/admin/css/hello.css

    r12236 r12285  
    3838
    3939#bp-hello-container a:hover {
     40        -webkit-transition: all 0.1s ease-in-out;
     41        -o-transition: all 0.1s ease-in-out;
    4042        transition: all 0.1s ease-in-out;
    4143        color: black;
     
    7173
    7274.bp-hello-close .close-modal:focus:before, .bp-hello-close .close-modal:hover:before {
     75        -webkit-transition: all 0.1s ease-in-out;
     76        -o-transition: all 0.1s ease-in-out;
    7377        transition: all 0.1s ease-in-out;
    7478        color: var(--bp-hello-color-primary);
     
    8690
    8791.bp-hello-social li a:hover:before {
     92        -webkit-transition: all 0.1s ease-in-out;
     93        -o-transition: all 0.1s ease-in-out;
    8894        transition: all 0.1s ease-in-out;
    8995        color: var(--bp-hello-color-primary);
     
    129135 */
    130136.bp-hello-footer {
     137        display: -webkit-box;
     138        display: -ms-flexbox;
    131139        display: flex;
     140        -ms-flex-wrap: wrap;
    132141        flex-wrap: wrap;
    133142        height: 58px;
     
    137146.bp-hello-social-cta,
    138147.bp-hello-social-links {
     148        -ms-flex-preferred-size: 50%;
    139149        flex-basis: 50%;
    140150}
     
    182192#bp-hello-backdrop {
    183193        background-color: rgba(0, 0, 0, 0.8);
     194        -webkit-transition: opacity 0.15s ease-out;
     195        -o-transition: opacity 0.15s ease-out;
    184196        transition: opacity 0.15s ease-out;
    185197}
  • trunk/src/bp-templates/bp-legacy/css/twentyeleven.css

    r12136 r12285  
    302302                border: 1px solid #ddd;
    303303                border-bottom-color: #fff;
     304                -webkit-border-top-right-radius: 4px;
    304305                border-top-right-radius: 4px;
     306                -webkit-border-top-left-radius: 4px;
    305307                border-top-left-radius: 4px;
    306308                background-clip: padding-box;
     
    989991
    990992.single-item.groups #buddypress div#item-header #item-header-content {
     993        -webkit-box-sizing: border-box;
     994        -moz-box-sizing: border-box;
    991995        box-sizing: border-box;
    992996}
     
    13981402.bp-user #buddypress .profile #profile-edit-form .visibility-toggle-link {
    13991403        background: #6f6e6e;
     1404        -webkit-border-radius: 2px;
     1405        -moz-border-radius: 2px;
     1406        -ms-border-radius: 2px;
    14001407        border-radius: 2px;
    14011408        background-clip: padding-box;
     
    15371544.bp-user #buddypress #message-threads tr td.thread-options {
    15381545        border-left: 0 !important;
     1546        width: -webkit-calc(100% - 30px);
     1547        width: -moz-calc(100% - 30px);
    15391548        width: calc(100% - 30px);
    15401549        margin-left: 0;
  • trunk/src/bp-templates/bp-legacy/css/twentyfifteen.css

    r12136 r12285  
    10261026.groups.edit-details #group-settings-form label {
    10271027        background: #555;
     1028        -webkit-border-top-right-radius: 4px;
    10281029        border-top-right-radius: 4px;
     1030        -webkit-border-top-left-radius: 4px;
    10291031        border-top-left-radius: 4px;
    10301032        background-clip: padding-box;
     
    15081510.bp-user #buddypress #message-threads tr td.thread-options {
    15091511        border-left: 0 !important;
     1512        width: -webkit-calc(100% - 30px);
     1513        width: -moz-calc(100% - 30px);
    15101514        width: calc(100% - 30px);
    15111515        margin-left: 0;
  • trunk/src/bp-templates/bp-legacy/css/twentyfourteen.css

    r12136 r12285  
    152152                border: 1px solid rgba(0, 0, 0, 0.2);
    153153                border-bottom-color: #fff;
     154                -webkit-border-top-right-radius: 4px;
    154155                border-top-right-radius: 4px;
     156                -webkit-border-top-left-radius: 4px;
    155157                border-top-left-radius: 4px;
    156158                background-clip: padding-box;
     
    383385        }
    384386        #buddypress ul.item-list li div.action div a {
     387                -webkit-box-sizing: border-box;
     388                -moz-box-sizing: border-box;
    385389                box-sizing: border-box;
    386390                display: block;
     
    771775        }
    772776        .bp-user #buddypress #item-header #item-buttons div.generic-button a {
     777                -webkit-box-sizing: border-box;
     778                -moz-box-sizing: border-box;
    773779                box-sizing: border-box;
    774780                display: block;
     
    923929
    924930.groups.group-members #subnav li #search-members-form {
     931        -webkit-box-sizing: border-box;
     932        -moz-box-sizing: border-box;
    925933        box-sizing: border-box;
    926934        float: left;
     
    10781086        background: #fff;
    10791087        border-right: 0 !important;
     1088        -webkit-box-sizing: border-box;
     1089        -moz-box-sizing: border-box;
    10801090        box-sizing: border-box;
    10811091        display: inline-block;
     
    11161126#buddypress table#message-threads tr td.thread-options {
    11171127        border-left: 0;
     1128        width: -webkit-calc(100% - 30px);
     1129        width: -moz-calc(100% - 30px);
    11181130        width: calc(100% - 30px);
    11191131        margin-left: 0;
  • trunk/src/bp-templates/bp-legacy/css/twentyseventeen.css

    r12226 r12285  
    447447                border: 1px solid #ddd;
    448448                border-bottom-color: #fff;
     449                -webkit-border-top-right-radius: 4px;
    449450                border-top-right-radius: 4px;
     451                -webkit-border-top-left-radius: 4px;
    450452                border-top-left-radius: 4px;
    451453                background-clip: padding-box;
     
    15211523.bp-user #buddypress .profile #profile-edit-form .visibility-toggle-link {
    15221524        background: #555;
     1525        -webkit-border-radius: 3px;
     1526        -moz-border-radius: 3px;
     1527        -ms-border-radius: 3px;
    15231528        border-radius: 3px;
    15241529        background-clip: padding-box;
     
    16701675.bp-user #buddypress #message-threads tr td.thread-options {
    16711676        border-left: 0 !important;
     1677        width: -webkit-calc(100% - 30px);
     1678        width: -moz-calc(100% - 30px);
    16721679        width: calc(100% - 30px);
    16731680        margin-left: 0;
     
    19331940        border: 1px solid rgba(190, 190, 190, 0.6);
    19341941        position: relative;
     1942        -webkit-border-radius: 2px;
     1943        -moz-border-radius: 2px;
     1944        -ms-border-radius: 2px;
    19351945        border-radius: 2px;
    19361946        background-clip: padding-box;
     
    19771987#buddypress div.message-search form input[type="submit"],
    19781988#buddypress li.groups-members-search form input[type="submit"] {
     1989        -webkit-border-radius: none;
     1990        -moz-border-radius: none;
     1991        -ms-border-radius: none;
    19791992        border-radius: none;
    19801993        float: right;
     
    20272040        background: #333;
    20282041        border-color: #555;
     2042        -webkit-border-radius: 2px;
     2043        -moz-border-radius: 2px;
     2044        -ms-border-radius: 2px;
    20292045        border-radius: 2px;
    20302046        background-clip: padding-box;
     
    20412057body.colors-dark #page #buddypress .groups-members-search input[type="submit"],
    20422058body.colors-dark #page #buddypress .message-search input[type="submit"] {
     2059        -webkit-border-radius: 2px;
     2060        -moz-border-radius: 2px;
     2061        -ms-border-radius: 2px;
    20432062        border-radius: 2px;
    20442063        background-clip: padding-box;
  • trunk/src/bp-templates/bp-legacy/css/twentysixteen.css

    r12136 r12285  
    336336                border: 1px solid #ddd;
    337337                border-bottom-color: #fff;
     338                -webkit-border-top-right-radius: 4px;
    338339                border-top-right-radius: 4px;
     340                -webkit-border-top-left-radius: 4px;
    339341                border-top-left-radius: 4px;
    340342                background-clip: padding-box;
     
    14771479.bp-user #buddypress #message-threads tr td.thread-options {
    14781480        border-left: 0 !important;
     1481        width: -webkit-calc(100% - 30px);
     1482        width: -moz-calc(100% - 30px);
    14791483        width: calc(100% - 30px);
    14801484        margin-left: 0;
  • trunk/src/bp-templates/bp-legacy/css/twentyten.css

    r12136 r12285  
    250250                border: 1px solid #ddd;
    251251                border-bottom-color: #fff;
     252                -webkit-border-top-right-radius: 4px;
    252253                border-top-right-radius: 4px;
     254                -webkit-border-top-left-radius: 4px;
    253255                border-top-left-radius: 4px;
    254256                background-clip: padding-box;
     
    731733#buddypress #activity-stream .activity-comments .ac-form {
    732734        border: 1px solid #d4d0ba;
     735        -webkit-box-sizing: border-box;
     736        -moz-box-sizing: border-box;
    733737        box-sizing: border-box;
    734738        margin: 15px 0;
     
    923927
    924928.single-item.groups #buddypress div#item-header #item-header-content {
     929        -webkit-box-sizing: border-box;
     930        -moz-box-sizing: border-box;
    925931        box-sizing: border-box;
    926932}
     
    13311337.bp-user #buddypress .profile #profile-edit-form .visibility-toggle-link {
    13321338        background: #6f6e6e;
     1339        -webkit-border-radius: 2px;
     1340        -moz-border-radius: 2px;
     1341        -ms-border-radius: 2px;
    13331342        border-radius: 2px;
    13341343        background-clip: padding-box;
     
    14211430.bp-user #buddypress #message-threads tr td {
    14221431        background: #fff;
     1432        -webkit-box-sizing: border-box;
     1433        -moz-box-sizing: border-box;
    14231434        box-sizing: border-box;
    14241435        display: inline-block;
     
    14701481.bp-user #buddypress #message-threads tr td.thread-options {
    14711482        border-left: 0 !important;
     1483        width: -webkit-calc(100% - 30px);
     1484        width: -moz-calc(100% - 30px);
    14721485        width: calc(100% - 30px);
    14731486        margin-left: 0;
     
    15311544.bp-user #buddypress #send_message_form input,
    15321545.bp-user #buddypress #send_message_form textarea {
     1546        -webkit-box-sizing: border-box;
     1547        -moz-box-sizing: border-box;
    15331548        box-sizing: border-box;
    15341549}
     
    17031718        border-width: 1px;
    17041719        box-shadow: none;
     1720        -webkit-box-sizing: border-box;
     1721        -moz-box-sizing: border-box;
    17051722        box-sizing: border-box;
    17061723        width: 100%;
     
    17651782        border-radius: 0;
    17661783        box-shadow: none;
     1784        -webkit-box-sizing: border-box;
     1785        -moz-box-sizing: border-box;
    17671786        box-sizing: border-box;
    17681787        font-size: 14px;
  • trunk/src/bp-templates/bp-legacy/css/twentythirteen.css

    r12136 r12285  
    281281                border: 1px solid #ddd;
    282282                border-bottom-color: #fff;
     283                -webkit-border-top-right-radius: 4px;
    283284                border-top-right-radius: 4px;
     285                -webkit-border-top-left-radius: 4px;
    284286                border-top-left-radius: 4px;
    285287                background-clip: padding-box;
     
    15271529.bp-user #buddypress #message-threads tr td.thread-options {
    15281530        border-left: 0 !important;
     1531        width: -webkit-calc(100% - 30px);
     1532        width: -moz-calc(100% - 30px);
    15291533        width: calc(100% - 30px);
    15301534        margin-left: 0;
  • trunk/src/bp-templates/bp-legacy/css/twentytwelve.css

    r12136 r12285  
    288288                border: 1px solid #ddd;
    289289                border-bottom-color: #fff;
     290                -webkit-border-top-right-radius: 4px;
    290291                border-top-right-radius: 4px;
     292                -webkit-border-top-left-radius: 4px;
    291293                border-top-left-radius: 4px;
    292294                background-clip: padding-box;
     
    965967
    966968.single-item.groups #buddypress div#item-header #item-header-content {
     969        -webkit-box-sizing: border-box;
     970        -moz-box-sizing: border-box;
    967971        box-sizing: border-box;
    968972}
     
    13831387.bp-user #buddypress .profile #profile-edit-form .visibility-toggle-link {
    13841388        background: #6f6e6e;
     1389        -webkit-border-radius: 2px;
     1390        -moz-border-radius: 2px;
     1391        -ms-border-radius: 2px;
    13851392        border-radius: 2px;
    13861393        background-clip: padding-box;
     
    15341541.bp-user #buddypress #message-threads tr td.thread-options {
    15351542        border-left: 0 !important;
     1543        width: -webkit-calc(100% - 30px);
     1544        width: -moz-calc(100% - 30px);
    15361545        width: calc(100% - 30px);
    15371546        margin-left: 0;
  • 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
  • trunk/src/bp-templates/bp-nouveau/css/buddypress.css

    r12215 r12285  
    6161}
    6262
     63body #buddypress div,
     64body #buddypress dl,
     65body #buddypress li,
     66body #buddypress textarea,
     67body #buddypress select,
     68body #buddypress input[type="search"],
     69body #buddypress input[type="submit"],
     70body #buddypress input[type="reset"] {
     71        -webkit-border-radius: 2px;
     72        -moz-border-radius: 2px;
     73        -ms-border-radius: 2px;
     74        border-radius: 2px;
     75        background-clip: padding-box;
     76}
     77
    6378body #buddypress #item-body blockquote,
    6479body #buddypress .bp-lists blockquote {
     
    6782
    6883body #buddypress .bp-list .action {
     84        -webkit-box-sizing: border-box;
     85        -moz-box-sizing: border-box;
    6986        box-sizing: border-box;
    7087}
     
    121138.buddypress-wrap.round-avatars .avatar {
    122139        border-radius: 50%;
    123 }
    124 
    125 div,
    126 dl,
    127 li,
    128 textarea,
    129 select,
    130 input[type="search"],
    131 input[type="submit"],
    132 input[type="reset"] {
    133         border-radius: 2px;
    134         background-clip: padding-box;
    135140}
    136141
     
    371376                border-bottom: 1px solid #eee;
    372377                border-top: 1px solid #eee;
     378                -webkit-box-shadow: 0 2px 12px 0 #fafafa;
     379                -moz-box-shadow: 0 2px 12px 0 #fafafa;
    373380                box-shadow: 0 2px 12px 0 #fafafa;
    374381        }
     
    863870
    864871.bp-list {
     872        -webkit-box-sizing: border-box;
     873        -moz-box-sizing: border-box;
    865874        box-sizing: border-box;
    866875        border-top: 1px solid #eaeaea;
     
    10111020        background: #fff;
    10121021        border: 1px solid #b7b7b7;
     1022        -webkit-box-shadow: 0 0 6px #d2d2d2;
     1023        -moz-box-shadow: 0 0 6px #d2d2d2;
    10131024        box-shadow: 0 0 6px #d2d2d2;
    10141025        margin: 20px 0;
     
    10311042        .friends-request-list li,
    10321043        .membership-requests-list li {
     1044                display: -webkit-flex;
    10331045                display: -moz-flex;
    10341046                display: -ms-flex;
    10351047                display: -o-flex;
    10361048                display: flex;
     1049                -webkit-flex-flow: row nowrap;
     1050                -moz-flex-flow: row nowrap;
     1051                -ms-flex-flow: row nowrap;
    10371052                -o-flex-flow: row nowrap;
    10381053                flex-flow: row nowrap;
     
    10401055        .friends-request-list li .item,
    10411056        .membership-requests-list li .item {
     1057                -webkit-flex: 1 1 auto;
    10421058                -moz-flex: 1 1 auto;
     1059                -ms-flex: 1 1 auto;
    10431060                -o-flex: 1 1 auto;
    10441061                flex: 1 1 auto;
     
    10961113.activity-update-form {
    10971114        border: 1px solid #ccc;
     1115        -webkit-box-shadow: inset 0 0 6px #eee;
     1116        -moz-box-shadow: inset 0 0 6px #eee;
    10981117        box-shadow: inset 0 0 6px #eee;
    10991118        margin: 15px 0;
     
    11161135.activity-update-form #whats-new-textarea textarea {
    11171136        background: #fff;
     1137        -webkit-box-sizing: border-box;
     1138        -moz-box-sizing: border-box;
    11181139        box-sizing: border-box;
    11191140        color: #333;
     
    11271148
    11281149.activity-update-form #whats-new-textarea textarea:focus {
     1150        -webkit-box-shadow: 0 0 6px 0 #d6d6d6;
     1151        -moz-box-shadow: 0 0 6px 0 #d6d6d6;
    11291152        box-shadow: 0 0 6px 0 #d6d6d6;
    11301153}
     
    11481171
    11491172.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object {
     1173        display: -webkit-box;
     1174        display: -ms-flexbox;
     1175        display: -webkit-flex;
    11501176        display: flex;
     1177        -ms-flex-align: center;
     1178        -webkit-align-items: center;
     1179        -webkit-box-align: center;
    11511180        align-items: center;
    11521181        padding: 0.2em;
     
    14921521.buddypress-wrap .activity-list .load-newest:hover {
    14931522        border-color: #e1e1e1;
     1523        -webkit-box-shadow: 0 0 6px 0 #eaeaea;
     1524        -moz-box-shadow: 0 0 6px 0 #eaeaea;
    14941525        box-shadow: 0 0 6px 0 #eaeaea;
    14951526}
     
    17331764
    17341765form.ac-form .ac-reply-content .ac-textarea textarea:focus {
     1766        -webkit-box-shadow: 0 0 6px #d6d6d6;
     1767        -moz-box-shadow: 0 0 6px #d6d6d6;
    17351768        box-shadow: 0 0 6px #d6d6d6;
    17361769}
     
    17861819.buddypress-wrap .groups-list li .group-desc {
    17871820        border: 1px solid #eaeaea;
     1821        -webkit-border-radius: 10px;
     1822        -moz-border-radius: 10px;
     1823        -ms-border-radius: 10px;
    17881824        border-radius: 10px;
    17891825        background-clip: padding-box;
     
    18561892.buddypress-wrap .members-list li .user-update {
    18571893        border: 1px solid #eaeaea;
     1894        -webkit-border-radius: 10px;
     1895        -moz-border-radius: 10px;
     1896        -ms-border-radius: 10px;
    18581897        border-radius: 10px;
    18591898        background-clip: padding-box;
     
    19051944*/
    19061945.register-page .register-section {
     1946        -webkit-box-sizing: border-box;
     1947        -moz-box-sizing: border-box;
    19071948        box-sizing: border-box;
    19081949}
     
    22522293
    22532294.groups-header .moderators-lists img.avatar {
     2295        -moz-box-shadow: none;
     2296        -webkit-box-shadow: none;
    22542297        box-shadow: none;
    22552298        float: none;
     
    22892332.groups-header .desc-wrap .group-description {
    22902333        background: #fafafa;
     2334        -webkit-box-shadow: inset 0 0 9px #ccc;
     2335        -moz-box-shadow: inset 0 0 9px #ccc;
    22912336        box-shadow: inset 0 0 9px #ccc;
    22922337        padding: 1em;
     
    25282573
    25292574.buddypress .bp-invites-content ul.item-list li.selected {
     2575        -webkit-box-shadow: inset 0 0 12px 0 rgba(237, 187, 52, 0.2);
     2576        -moz-box-shadow: inset 0 0 12px 0 rgba(237, 187, 52, 0.2);
    25302577        box-shadow: inset 0 0 12px 0 rgba(237, 187, 52, 0.2);
    25312578}
     
    26002647@media screen and (min-width: 46.8em) {
    26012648        .buddypress .bp-invites-content ul.item-list > li {
     2649                -webkit-box-sizing: border-box;
     2650                -moz-box-sizing: border-box;
    26022651                box-sizing: border-box;
    26032652                border: 1px solid #eaeaea;
     
    28812930
    28822931.bp-messages-content .avatar {
     2932        -moz-box-shadow: none;
     2933        -webkit-box-shadow: none;
    28832934        box-shadow: none;
    28842935}
     
    29112962#message-threads li {
    29122963        border-bottom: 1px solid #eaeaea;
     2964        display: -webkit-flex;
    29132965        display: -moz-flex;
    29142966        display: -ms-flex;
    29152967        display: -o-flex;
    29162968        display: flex;
     2969        -webkit-flex-flow: row nowrap;
     2970        -moz-flex-flow: row nowrap;
     2971        -ms-flex-flow: row nowrap;
    29172972        -o-flex-flow: row nowrap;
    29182973        flex-flow: row nowrap;
     
    29232978
    29242979#message-threads li .thread-cb {
     2980        display: -webkit-box;
     2981        display: -ms-flexbox;
     2982        display: -webkit-flex;
    29252983        display: flex;
     2984        -ms-flex-align: center;
     2985        -webkit-align-items: center;
     2986        -webkit-box-align: center;
    29262987        align-items: center;
     2988        -webkit-flex: 1 2 5%;
    29272989        -moz-flex: 1 2 5%;
     2990        -ms-flex: 1 2 5%;
    29282991        -o-flex: 1 2 5%;
    29292992        flex: 1 2 5%;
     
    29322995#message-threads li .thread-from,
    29332996#message-threads li .thread-to {
     2997        -webkit-flex: 1 2 20%;
    29342998        -moz-flex: 1 2 20%;
     2999        -ms-flex: 1 2 20%;
    29353000        -o-flex: 1 2 20%;
    29363001        flex: 1 2 20%;
     
    29583023
    29593024#message-threads li .thread-content {
     3025        -webkit-flex: 1 2 60%;
    29603026        -moz-flex: 1 2 60%;
     3027        -ms-flex: 1 2 60%;
    29613028        -o-flex: 1 2 60%;
    29623029        flex: 1 2 60%;
     
    29643031
    29653032#message-threads li .thread-date {
     3033        -webkit-flex: 1 2 15%;
    29663034        -moz-flex: 1 2 15%;
     3035        -ms-flex: 1 2 15%;
    29673036        -o-flex: 1 2 15%;
    29683037        flex: 1 2 15%;
     
    30653134.bp-messages-content #bp-message-thread-list .message-metadata {
    30663135        border-bottom: 1px solid #ccc;
     3136        -webkit-box-shadow: -2px 1px 9px 0 #eee;
     3137        -moz-box-shadow: -2px 1px 9px 0 #eee;
    30673138        box-shadow: -2px 1px 9px 0 #eee;
    30683139        display: table;
     
    32553326.buddypress-wrap input[type="tel"]:focus,
    32563327.buddypress-wrap input[type="password"]:focus {
     3328        -webkit-box-shadow: 0 0 8px #eaeaea;
     3329        -moz-box-shadow: 0 0 8px #eaeaea;
    32573330        box-shadow: 0 0 8px #eaeaea;
    32583331}
     
    35913664        background: none;
    35923665        border: 0;
     3666        -webkit-border-radius: 0;
     3667        -moz-border-radius: 0;
     3668        -ms-border-radius: 0;
    35933669        border-radius: 0;
    35943670        background-clip: padding-box;
     
    38533929
    38543930.center-vert {
     3931        display: -ms-flexbox;
     3932        display: -webkit-flex;
    38553933        display: flex;
     3934        -ms-flex-align: center;
     3935        -webkit-align-items: center;
     3936        -webkit-box-align: center;
    38563937        align-items: center;
    38573938}
     
    39584039        background: none;
    39594040        border: 0;
     4041        -moz-box-shadow: none;
     4042        -webkit-box-shadow: none;
    39604043        box-shadow: none;
    39614044        color: #767676;
     
    40534136.buddypress #buddypress .create-button a {
    40544137        border: 1px solid #ccc;
     4138        -webkit-border-radius: 5px;
     4139        -moz-border-radius: 5px;
     4140        -ms-border-radius: 5px;
    40554141        border-radius: 5px;
    40564142        background-clip: padding-box;
     4143        -webkit-box-shadow: inset 0 0 6px 0 #eaeaea;
     4144        -moz-box-shadow: inset 0 0 6px 0 #eaeaea;
    40574145        box-shadow: inset 0 0 6px 0 #eaeaea;
    40584146        margin: 0.2em 0;
     
    40634151        background: none;
    40644152        border-color: #ccc;
     4153        -webkit-box-shadow: inset 0 0 12px 0 #eaeaea;
     4154        -moz-box-shadow: inset 0 0 12px 0 #eaeaea;
    40654155        box-shadow: inset 0 0 12px 0 #eaeaea;
    40664156}
     
    40844174        background: none;
    40854175        border: 0;
     4176        -moz-box-shadow: none;
     4177        -webkit-box-shadow: none;
    40864178        box-shadow: none;
    40874179        margin: 0;
     
    41844276        background: #0b80a4;
    41854277        border: 0;
     4278        -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
     4279        -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    41864280        box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    41874281        color: #fff;
     
    41894283
    41904284.buddypress-wrap .bp-feedback:not(.custom-homepage-info) {
     4285        display: -webkit-flex;
    41914286        display: -moz-flex;
    41924287        display: -ms-flex;
    41934288        display: -o-flex;
    41944289        display: flex;
     4290        -webkit-flex-flow: row nowrap;
     4291        -moz-flex-flow: row nowrap;
     4292        -ms-flex-flow: row nowrap;
    41954293        -o-flex-flow: row nowrap;
    41964294        flex-flow: row nowrap;
     4295        -ms-flex-align: stretch;
     4296        -webkit-align-items: stretch;
     4297        -webkit-box-align: stretch;
    41974298        align-items: stretch;
    41984299}
     
    42014302        background: #fff;
    42024303        color: #807f7f;
     4304        -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
     4305        -moz-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
    42034306        box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
    42044307        color: #737373;
     
    42794382.buddypress-wrap .bp-feedback.success .bp-icon,
    42804383.buddypress-wrap .bp-feedback.updated .bp-icon {
     4384        display: -webkit-box;
     4385        display: -ms-flexbox;
     4386        display: -webkit-flex;
    42814387        display: flex;
     4388        -ms-flex-align: center;
     4389        -webkit-align-items: center;
     4390        -webkit-box-align: center;
    42824391        align-items: center;
    42834392}
     
    44384547
    44394548.buddypress.widget .avatar-block {
     4549        display: -webkit-flex;
    44404550        display: -moz-flex;
    44414551        display: -ms-flex;
    44424552        display: -o-flex;
    44434553        display: flex;
     4554        -webkit-flex-flow: row wrap;
     4555        -moz-flex-flow: row wrap;
     4556        -ms-flex-flow: row wrap;
    44444557        -o-flex-flow: row wrap;
    44454558        flex-flow: row wrap;
     
    44884601.buddypress-wrap .buddypress.widget ul#groups-list,
    44894602.buddypress-wrap .buddypress.widget ul#members-list {
     4603        display: -webkit-flex;
    44904604        display: -moz-flex;
    44914605        display: -ms-flex;
    44924606        display: -o-flex;
    44934607        display: flex;
     4608        -webkit-flex-flow: column nowrap;
     4609        -moz-flex-flow: column nowrap;
     4610        -ms-flex-flow: column nowrap;
    44944611        -o-flex-flow: column nowrap;
    44954612        flex-flow: column nowrap;
     
    45004617        .buddypress-wrap .buddypress.widget ul#groups-list,
    45014618        .buddypress-wrap .buddypress.widget ul#members-list {
     4619                display: -webkit-flex;
    45024620                display: -moz-flex;
    45034621                display: -ms-flex;
    45044622                display: -o-flex;
    45054623                display: flex;
     4624                -webkit-flex-flow: row wrap;
     4625                -moz-flex-flow: row wrap;
     4626                -ms-flex-flow: row wrap;
    45064627                -o-flex-flow: row wrap;
    45074628                flex-flow: row wrap;
     
    45134634.buddypress-wrap .buddypress.widget ul#members-list li {
    45144635        border: 1px solid #eee;
     4636        -ms-flex-align: stretch;
     4637        -webkit-align-items: stretch;
     4638        -webkit-box-align: stretch;
    45154639        align-items: stretch;
     4640        -webkit-flex: 1 1 46%;
    45164641        -moz-flex: 1 1 46%;
     4642        -ms-flex: 1 1 46%;
    45174643        -o-flex: 1 1 46%;
    45184644        flex: 1 1 46%;
     
    45244650        .buddypress-wrap .buddypress.widget ul#groups-list li,
    45254651        .buddypress-wrap .buddypress.widget ul#members-list li {
     4652                -webkit-flex: 0 1 20%;
    45264653                -moz-flex: 0 1 20%;
     4654                -ms-flex: 0 1 20%;
    45274655                -o-flex: 0 1 20%;
    45284656                flex: 0 1 20%;
     
    45604688        .buddypress-wrap .buddypress.widget ul#groups-list li,
    45614689        .buddypress-wrap .buddypress.widget ul#members-list li {
     4690                -webkit-flex: 0 1 auto;
    45624691                -moz-flex: 0 1 auto;
     4692                -ms-flex: 0 1 auto;
    45634693                -o-flex: 0 1 auto;
    45644694                flex: 0 1 auto;
     
    45884718.buddypress-wrap a.loading,
    45894719.buddypress-wrap input.loading {
     4720        -moz-animation: loader-pulsate 0.5s infinite ease-in-out alternate;
     4721        -webkit-animation: loader-pulsate 0.5s infinite ease-in-out alternate;
    45904722        animation: loader-pulsate 0.5s infinite ease-in-out alternate;
    45914723        border-color: #aaa;
     4724}
     4725
     4726@-webkit-keyframes loader-pulsate {
     4727        from {
     4728                border-color: #aaa;
     4729                -webkit-box-shadow: 0 0 6px #ccc;
     4730                box-shadow: 0 0 6px #ccc;
     4731        }
     4732        to {
     4733                border-color: #ccc;
     4734                -webkit-box-shadow: 0 0 6px #f8f8f8;
     4735                box-shadow: 0 0 6px #f8f8f8;
     4736        }
     4737}
     4738
     4739@-moz-keyframes loader-pulsate {
     4740        from {
     4741                border-color: #aaa;
     4742                -moz-box-shadow: 0 0 6px #ccc;
     4743                box-shadow: 0 0 6px #ccc;
     4744        }
     4745        to {
     4746                border-color: #ccc;
     4747                -moz-box-shadow: 0 0 6px #f8f8f8;
     4748                box-shadow: 0 0 6px #f8f8f8;
     4749        }
    45924750}
    45934751
     
    45954753        from {
    45964754                border-color: #aaa;
     4755                -moz-box-shadow: 0 0 6px #ccc;
    45974756                box-shadow: 0 0 6px #ccc;
    45984757        }
    45994758        to {
    46004759                border-color: #ccc;
     4760                -moz-box-shadow: 0 0 6px #f8f8f8;
    46014761                box-shadow: 0 0 6px #f8f8f8;
    46024762        }
     
    46174777        opacity: 0;
    46184778        position: absolute;
     4779        -webkit-transform: translate3d(0, 0, 0);
     4780        -ms-transform: translate3d(0, 0, 0);
    46194781        transform: translate3d(0, 0, 0);
    46204782        visibility: hidden;
     
    46374799        text-shadow: none;
    46384800        text-transform: none;
     4801        -webkit-transition: all 1.5s ease;
     4802        -ms-transition: all 1.5s ease;
    46394803        transition: all 1.5s ease;
    46404804        white-space: nowrap;
     
    46604824        margin-top: 7px;
    46614825        top: 110%;
     4826        -webkit-transform: translate(-50%, 0);
     4827        -ms-transform: translate(-50%, 0);
    46624828        transform: translate(-50%, 0);
    46634829}
     
    46654831.user-list .bp-tooltip:after {
    46664832        left: 0;
     4833        -webkit-transform: translate(0, 0);
     4834        -ms-transform: translate(0, 0);
    46674835        transform: translate(0, 0);
    46684836}
     
    46724840                left: auto;
    46734841                right: 0;
     4842                -webkit-transform: translate(0, 0);
     4843                -ms-transform: translate(0, 0);
    46744844                transform: translate(0, 0);
    46754845        }
     
    46824852.participants-list .bp-tooltip:after {
    46834853        left: 0;
     4854        -webkit-transform: translate(0, 0);
     4855        -ms-transform: translate(0, 0);
    46844856        transform: translate(0, 0);
    46854857}
     
    46904862        left: auto;
    46914863        right: 0;
     4864        -webkit-transform: translate(0, 0);
     4865        -ms-transform: translate(0, 0);
    46924866        transform: translate(0, 0);
    46934867}
     
    47054879#item-body,
    47064880.single-screen-navs {
     4881        -webkit-box-sizing: border-box;
     4882        -moz-box-sizing: border-box;
    47074883        box-sizing: border-box;
    47084884}
     
    47104886.grid > li,
    47114887.grid > li .generic-button a {
     4888        -webkit-box-sizing: border-box;
     4889        -moz-box-sizing: border-box;
    47124890        box-sizing: border-box;
    47134891}
Note: See TracChangeset for help on using the changeset viewer.