diff --git src/bp-templates/bp-nouveau/common-styles/_bp_activity_entries.scss src/bp-templates/bp-nouveau/common-styles/_bp_activity_entries.scss
index b294474a1..8e4917b71 100644
|
|
|
|
| 1 | 1 | // BP Activity Entries - activity loop |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | .activity-list { |
| 5 | 6 | |
| … |
… |
|
| 133 | 134 | .avatar { |
| 134 | 135 | display: inline-block; |
| 135 | 136 | margin: 0 $marg-xsml; |
| 136 | | vertical-align: bottom; |
| | 137 | vertical-align: text-top; |
| | 138 | width: 20px; |
| | 139 | height: 20px; |
| 137 | 140 | } |
| 138 | 141 | |
| 139 | 142 | .time-since { |
| … |
… |
|
| 215 | 218 | |
| 216 | 219 | .button { |
| 217 | 220 | background: transparent; |
| | 221 | color: $dark-grey; |
| 218 | 222 | } |
| 219 | 223 | |
| 220 | 224 | a { |
| … |
… |
|
| 326 | 330 | padding: $pad-sml 0; |
| 327 | 331 | |
| 328 | 332 | &:focus, |
| 329 | | &:hover, { |
| | 333 | &:hover { |
| 330 | 334 | background: $white; |
| 331 | 335 | color: $black; |
| 332 | 336 | } |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_buttons.scss src/bp-templates/bp-nouveau/common-styles/_bp_buttons.scss
index a1ff806bb..740eca66b 100644
|
|
|
|
| 1 | 1 | // BP Buttons, Submits, Icons and general clicky things styling. |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | // Buttons by default are styled as simple boxes but we may |
| 5 | 6 | // change that by adding a parent class ( on any close parent to |
| … |
… |
|
| 25 | 26 | border-color: $bp-border-dark; |
| 26 | 27 | border-style: solid; |
| 27 | 28 | border-width: 1px; |
| | 29 | border-radius: 0; |
| 28 | 30 | color: $dark-grey; |
| 29 | 31 | cursor: pointer; |
| | 32 | font-family: inherit; |
| 30 | 33 | font-size: inherit; |
| 31 | 34 | font-weight: 400; |
| 32 | 35 | outline: none; |
| … |
… |
|
| 34 | 37 | text-align: center; |
| 35 | 38 | text-decoration: none; |
| 36 | 39 | width: auto; |
| | 40 | line-height: 1; |
| 37 | 41 | } |
| 38 | 42 | |
| 39 | 43 | // Re-instate the quick-tag padding to avoid the above ruleset |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_forms.scss src/bp-templates/bp-nouveau/common-styles/_bp_forms.scss
index fa0f83c98..1f715f418 100644
|
|
|
|
| 1 | 1 | // BP Forms Elements Global Styles |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | // Some essential classes used for forms elements: |
| 5 | 6 | // labels - sizing especially for standalone controls |
| … |
… |
body.no-js { |
| 353 | 354 | position: relative; |
| 354 | 355 | text-indent: -2px; |
| 355 | 356 | z-index: 1; |
| 356 | | width: 100%; |
| | 357 | width: auto; |
| 357 | 358 | } |
| 358 | 359 | |
| 359 | 360 | select, |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_generic_and_typography.scss src/bp-templates/bp-nouveau/common-styles/_bp_generic_and_typography.scss
index 2154c7ae1..438f30ce0 100644
|
|
|
|
| 1 | 1 | // BP Generic elements, Typography and Images. |
| 2 | | // @version 4.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | // ========= Generic Sitewide elements ======== |
| 5 | 6 | body { |
| … |
… |
body.buddypress { // add weight |
| 125 | 126 | // some themes add padding top lets manage that generically sitewide |
| 126 | 127 | padding: 0; |
| 127 | 128 | } |
| | 129 | |
| | 130 | // Specific to Twenty Nineteen |
| | 131 | h2:before { |
| | 132 | display: none; |
| | 133 | } |
| 128 | 134 | } |
| 129 | 135 | } |
| 130 | 136 | |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_groups_create.scss src/bp-templates/bp-nouveau/common-styles/_bp_groups_create.scss
index 3b930aae2..59e76b75d 100644
|
|
|
|
| 8 | 8 | text-align: center; |
| 9 | 9 | } |
| 10 | 10 | |
| | 11 | img.avatar { |
| | 12 | width: auto; |
| | 13 | height: auto; |
| | 14 | } |
| | 15 | |
| 11 | 16 | .avatar-nav-items { |
| 12 | 17 | margin-top: $marg-med; |
| 13 | 18 | } |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_item_body_general.scss src/bp-templates/bp-nouveau/common-styles/_bp_item_body_general.scss
index fce4ca295..5509fcb52 100644
|
|
|
|
| 1 | 1 | // BP Single Screens Item Body General Styles. |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | .buddypress-wrap { |
| 5 | 6 | |
| … |
… |
|
| 15 | 16 | |
| 16 | 17 | .button-tabs { |
| 17 | 18 | margin: $marg-xlrg 0 $marg-med; |
| | 19 | list-style: none; |
| 18 | 20 | } |
| 19 | 21 | |
| 20 | 22 | } |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_item_header_general.scss src/bp-templates/bp-nouveau/common-styles/_bp_item_header_general.scss
index 72720fc52..3f6b3d585 100644
|
|
|
|
| 1 | 1 | // BP Single Screens Item Header General Styles. |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | @include clearfix-element(".single-headers"); |
| 5 | 6 | |
| … |
… |
|
| 16 | 17 | |
| 17 | 18 | img { |
| 18 | 19 | float: none; |
| | 20 | width: auto; |
| | 21 | height: auto; |
| 19 | 22 | } |
| 20 | 23 | } |
| 21 | 24 | } |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_lists.scss src/bp-templates/bp-nouveau/common-styles/_bp_lists.scss
index 019c63636..fe8cefc6c 100644
|
|
|
|
| 1 | 1 | // BP Lists Global Styles. |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | // @todo decide whether using .buddypress quasi namespace parent |
| 5 | 6 | // is useful, causing issue with specificity on other |
| … |
… |
|
| 42 | 43 | text-align: center; |
| 43 | 44 | |
| 44 | 45 | img.avatar { |
| 45 | | display: inline; |
| | 46 | display: inline-block; |
| | 47 | width: auto; |
| | 48 | height: auto; |
| 46 | 49 | } |
| 47 | 50 | } |
| 48 | 51 | |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_search.scss src/bp-templates/bp-nouveau/common-styles/_bp_search.scss
index 706acbe58..bba309151 100644
|
|
|
|
| 1 | 1 | // BP Directory Search elements |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | .buddypress-wrap { // the ID is required to add weight to rules |
| 5 | 6 | |
| … |
… |
|
| 7 | 8 | |
| 8 | 9 | form.bp-dir-search-form, |
| 9 | 10 | form.bp-messages-search-form, |
| 10 | | form.bp-invites-search-form { |
| | 11 | form[data-bp-search].bp-invites-search-form { |
| 11 | 12 | border: 1px solid $bp-border-color; |
| 12 | 13 | |
| 13 | 14 | width: 100%; |
| 14 | 15 | |
| 15 | | @include medium-lrg-up() { |
| 16 | | width: 15em; |
| 17 | | } |
| 18 | | |
| 19 | 16 | label { |
| 20 | 17 | margin: 0; |
| 21 | 18 | } |
diff --git src/bp-templates/bp-nouveau/common-styles/_bp_update_form.scss src/bp-templates/bp-nouveau/common-styles/_bp_update_form.scss
index c0b058517..5ea7c8c19 100644
|
|
|
|
| 1 | 1 | // BP Whats new form handles user updates to groups or profiles |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | |
| 4 | 5 | .activity-update-form { |
| 5 | 6 | padding: 10px 10px 0; |
| … |
… |
|
| 30 | 31 | img { |
| 31 | 32 | box-shadow: none; |
| 32 | 33 | display: inline-block; |
| | 34 | height: auto; |
| | 35 | width: auto; |
| 33 | 36 | } |
| 34 | 37 | } |
| 35 | 38 | |
| … |
… |
|
| 70 | 73 | #whats-new-post-in-box-items { |
| 71 | 74 | list-style: none; |
| 72 | 75 | margin: $marg-sml 0; |
| | 76 | padding-left: 0; |
| 73 | 77 | |
| 74 | 78 | li { |
| 75 | 79 | margin-bottom: $marg-sml; |
| 76 | 80 | } |
| 77 | 81 | |
| | 82 | button.bp-remove-item { |
| | 83 | margin-left: $marg-sml; |
| | 84 | height: auto; |
| | 85 | } |
| | 86 | |
| 78 | 87 | #activity-autocomplete { |
| 79 | 88 | padding: 0.3em; |
| | 89 | width: 100%; |
| 80 | 90 | } |
| 81 | 91 | |
| 82 | 92 | .bp-activity-object { |
| … |
… |
|
| 86 | 96 | |
| 87 | 97 | .avatar { |
| 88 | 98 | width: 30px; |
| | 99 | height: 30px; |
| 89 | 100 | } |
| 90 | 101 | |
| 91 | 102 | span { |
| … |
… |
|
| 133 | 144 | #whats-new-content, |
| 134 | 145 | #whats-new-post-in-box, |
| 135 | 146 | #whats-new-submit { |
| 136 | | margin-left: 8.5%; |
| 137 | | |
| | 147 | margin-left: 55px; |
| 138 | 148 | } |
| 139 | 149 | |
| 140 | 150 | #whats-new-submit { |
diff --git src/bp-templates/bp-nouveau/css/buddypress-rtl.css src/bp-templates/bp-nouveau/css/buddypress-rtl.css
index b716e4fec..9866b8093 100644
|
|
|
body.buddypress .buddypress-wrap h6 { |
| 119 | 119 | padding: 0; |
| 120 | 120 | } |
| 121 | 121 | |
| | 122 | body.buddypress .buddypress-wrap h2:before { |
| | 123 | display: none; |
| | 124 | } |
| | 125 | |
| 122 | 126 | /* Ensure .bp-wrap encloses it's children */ |
| 123 | 127 | .bp-wrap:before, |
| 124 | 128 | .bp-wrap:after { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 897 | 901 | } |
| 898 | 902 | |
| 899 | 903 | .bp-list li .item-avatar img.avatar { |
| 900 | | display: inline; |
| | 904 | display: inline-block; |
| | 905 | width: auto; |
| | 906 | height: auto; |
| 901 | 907 | } |
| 902 | 908 | |
| 903 | 909 | .bp-list li .item .item-avatar, |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1107 | 1113 | .activity-update-form #whats-new-avatar img { |
| 1108 | 1114 | box-shadow: none; |
| 1109 | 1115 | display: inline-block; |
| | 1116 | height: auto; |
| | 1117 | width: auto; |
| 1110 | 1118 | } |
| 1111 | 1119 | |
| 1112 | 1120 | .activity-update-form #whats-new-content { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1136 | 1144 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items { |
| 1137 | 1145 | list-style: none; |
| 1138 | 1146 | margin: 10px 0; |
| | 1147 | padding-right: 0; |
| 1139 | 1148 | } |
| 1140 | 1149 | |
| 1141 | 1150 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li { |
| 1142 | 1151 | margin-bottom: 10px; |
| 1143 | 1152 | } |
| 1144 | 1153 | |
| | 1154 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item { |
| | 1155 | margin-right: 10px; |
| | 1156 | height: auto; |
| | 1157 | } |
| | 1158 | |
| 1145 | 1159 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete { |
| 1146 | 1160 | padding: 0.3em; |
| | 1161 | width: 100%; |
| 1147 | 1162 | } |
| 1148 | 1163 | |
| 1149 | 1164 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1154 | 1169 | |
| 1155 | 1170 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar { |
| 1156 | 1171 | width: 30px; |
| | 1172 | height: 30px; |
| 1157 | 1173 | } |
| 1158 | 1174 | |
| 1159 | 1175 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1193 | 1209 | .activity-update-form #whats-new-content, |
| 1194 | 1210 | .activity-update-form #whats-new-post-in-box, |
| 1195 | 1211 | .activity-update-form #whats-new-submit { |
| 1196 | | margin-right: 8.5%; |
| | 1212 | margin-right: 55px; |
| 1197 | 1213 | } |
| 1198 | 1214 | .activity-update-form #whats-new-submit input { |
| 1199 | 1215 | margin-bottom: 0; |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1325 | 1341 | .activity-list .activity-item .activity-header .avatar { |
| 1326 | 1342 | display: inline-block; |
| 1327 | 1343 | margin: 0 5px; |
| 1328 | | vertical-align: bottom; |
| | 1344 | vertical-align: text-top; |
| | 1345 | width: 20px; |
| | 1346 | height: 20px; |
| 1329 | 1347 | } |
| 1330 | 1348 | |
| 1331 | 1349 | .activity-list .activity-item .activity-header .time-since { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1391 | 1409 | |
| 1392 | 1410 | .activity-list .activity-item .activity-meta.action .button { |
| 1393 | 1411 | background: transparent; |
| | 1412 | color: #555; |
| 1394 | 1413 | } |
| 1395 | 1414 | |
| 1396 | 1415 | .activity-list .activity-item .activity-meta.action a { |
| … |
… |
form.ac-form .ac-reply-content input { |
| 1997 | 2016 | text-align: center; |
| 1998 | 2017 | } |
| 1999 | 2018 | |
| | 2019 | #group-create-body img.avatar { |
| | 2020 | width: auto; |
| | 2021 | height: auto; |
| | 2022 | } |
| | 2023 | |
| 2000 | 2024 | #group-create-body .avatar-nav-items { |
| 2001 | 2025 | margin-top: 15px; |
| 2002 | 2026 | } |
| … |
… |
form.ac-form .ac-reply-content input { |
| 2032 | 2056 | |
| 2033 | 2057 | .single-headers #item-header-avatar a img { |
| 2034 | 2058 | float: none; |
| | 2059 | width: auto; |
| | 2060 | height: auto; |
| 2035 | 2061 | } |
| 2036 | 2062 | |
| 2037 | 2063 | .single-headers div#item-header-content { |
| … |
… |
body.no-js .single-item-header .js-self-profile-button { |
| 2333 | 2359 | |
| 2334 | 2360 | .buddypress-wrap .item-body .button-tabs { |
| 2335 | 2361 | margin: 30px 0 15px; |
| | 2362 | list-style: none; |
| 2336 | 2363 | } |
| 2337 | 2364 | |
| 2338 | 2365 | .buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry { |
| … |
… |
body.register .buddypress-wrap .page ul { |
| 3015 | 3042 | .bp-messages-content .actions { |
| 3016 | 3043 | float: left; |
| 3017 | 3044 | max-width: 30%; |
| | 3045 | line-height: 1; |
| 3018 | 3046 | } |
| 3019 | 3047 | |
| 3020 | 3048 | .bp-messages-content .actions .bp-icons:not(.bp-hide) { |
| … |
… |
body.register .buddypress-wrap .page ul { |
| 3168 | 3196 | |
| 3169 | 3197 | .bp-messages-content .thread-participants img { |
| 3170 | 3198 | width: 30px; |
| | 3199 | height: 30px; |
| 3171 | 3200 | } |
| 3172 | 3201 | |
| 3173 | 3202 | .bp-messages-content #thread-preview .preview-message ul, |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3508 | 3537 | position: relative; |
| 3509 | 3538 | text-indent: -2px; |
| 3510 | 3539 | z-index: 1; |
| 3511 | | width: 100%; |
| | 3540 | width: auto; |
| 3512 | 3541 | } |
| 3513 | 3542 | |
| 3514 | 3543 | .buddypress-wrap .select-wrap select, |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3564 | 3593 | |
| 3565 | 3594 | .buddypress-wrap form.bp-dir-search-form, |
| 3566 | 3595 | .buddypress-wrap form.bp-messages-search-form, |
| 3567 | | .buddypress-wrap form.bp-invites-search-form { |
| | 3596 | .buddypress-wrap form[data-bp-search].bp-invites-search-form { |
| 3568 | 3597 | border: 1px solid #eee; |
| 3569 | 3598 | width: 100%; |
| 3570 | 3599 | } |
| 3571 | 3600 | |
| 3572 | | @media screen and (min-width: 55em) { |
| 3573 | | .buddypress-wrap form.bp-dir-search-form, |
| 3574 | | .buddypress-wrap form.bp-messages-search-form, |
| 3575 | | .buddypress-wrap form.bp-invites-search-form { |
| 3576 | | width: 15em; |
| 3577 | | } |
| 3578 | | } |
| 3579 | | |
| 3580 | 3601 | .buddypress-wrap form.bp-dir-search-form label, |
| 3581 | 3602 | .buddypress-wrap form.bp-messages-search-form label, |
| 3582 | | .buddypress-wrap form.bp-invites-search-form label { |
| | 3603 | .buddypress-wrap form[data-bp-search].bp-invites-search-form label { |
| 3583 | 3604 | margin: 0; |
| 3584 | 3605 | } |
| 3585 | 3606 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3589 | 3610 | .buddypress-wrap form.bp-messages-search-form input[type="search"], |
| 3590 | 3611 | .buddypress-wrap form.bp-messages-search-form input[type="text"], |
| 3591 | 3612 | .buddypress-wrap form.bp-messages-search-form button[type="submit"], |
| 3592 | | .buddypress-wrap form.bp-invites-search-form input[type="search"], |
| 3593 | | .buddypress-wrap form.bp-invites-search-form input[type="text"], |
| 3594 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] { |
| | 3613 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"], |
| | 3614 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="text"], |
| | 3615 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] { |
| 3595 | 3616 | background: none; |
| 3596 | 3617 | border: 0; |
| 3597 | 3618 | border-radius: 0; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3602 | 3623 | .buddypress-wrap form.bp-dir-search-form input[type="text"], |
| 3603 | 3624 | .buddypress-wrap form.bp-messages-search-form input[type="search"], |
| 3604 | 3625 | .buddypress-wrap form.bp-messages-search-form input[type="text"], |
| 3605 | | .buddypress-wrap form.bp-invites-search-form input[type="search"], |
| 3606 | | .buddypress-wrap form.bp-invites-search-form input[type="text"] { |
| | 3626 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"], |
| | 3627 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="text"] { |
| 3607 | 3628 | float: right; |
| 3608 | 3629 | line-height: 1.5; |
| 3609 | 3630 | padding: 3px 10px; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3612 | 3633 | |
| 3613 | 3634 | .buddypress-wrap form.bp-dir-search-form button[type="submit"], |
| 3614 | 3635 | .buddypress-wrap form.bp-messages-search-form button[type="submit"], |
| 3615 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] { |
| | 3636 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] { |
| 3616 | 3637 | float: left; |
| 3617 | 3638 | font-size: inherit; |
| 3618 | 3639 | font-weight: 400; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3625 | 3646 | |
| 3626 | 3647 | .buddypress-wrap form.bp-dir-search-form button[type="submit"] span, |
| 3627 | 3648 | .buddypress-wrap form.bp-messages-search-form button[type="submit"] span, |
| 3628 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] span { |
| | 3649 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] span { |
| 3629 | 3650 | font-family: dashicons; |
| 3630 | 3651 | font-size: 18px; |
| 3631 | 3652 | line-height: 1.6; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3633 | 3654 | |
| 3634 | 3655 | .buddypress-wrap form.bp-dir-search-form button[type="submit"].bp-show, |
| 3635 | 3656 | .buddypress-wrap form.bp-messages-search-form button[type="submit"].bp-show, |
| 3636 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"].bp-show { |
| | 3657 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"].bp-show { |
| 3637 | 3658 | height: auto; |
| 3638 | 3659 | right: 0; |
| 3639 | 3660 | overflow: visible; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3643 | 3664 | |
| 3644 | 3665 | .buddypress-wrap form.bp-dir-search-form input[type="search"]::-webkit-search-cancel-button, |
| 3645 | 3666 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-cancel-button, |
| 3646 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-cancel-button { |
| | 3667 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-cancel-button { |
| 3647 | 3668 | -webkit-appearance: searchfield-cancel-button; |
| 3648 | 3669 | } |
| 3649 | 3670 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3651 | 3672 | .buddypress-wrap form.bp-dir-search-form input[type="search"]::-webkit-search-results-decoration, |
| 3652 | 3673 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-results-button, |
| 3653 | 3674 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-results-decoration, |
| 3654 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-results-button, |
| 3655 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-results-decoration { |
| | 3675 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-results-button, |
| | 3676 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-results-decoration { |
| 3656 | 3677 | display: none; |
| 3657 | 3678 | } |
| 3658 | 3679 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3887 | 3908 | border-color: #ccc; |
| 3888 | 3909 | border-style: solid; |
| 3889 | 3910 | border-width: 1px; |
| | 3911 | border-radius: 0; |
| 3890 | 3912 | color: #555; |
| 3891 | 3913 | cursor: pointer; |
| | 3914 | font-family: inherit; |
| 3892 | 3915 | font-size: inherit; |
| 3893 | 3916 | font-weight: 400; |
| 3894 | 3917 | outline: none; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3896 | 3919 | text-align: center; |
| 3897 | 3920 | text-decoration: none; |
| 3898 | 3921 | width: auto; |
| | 3922 | line-height: 1; |
| 3899 | 3923 | } |
| 3900 | 3924 | |
| 3901 | 3925 | .buddypress .buddypress-wrap .button-small[type="button"] { |
diff --git src/bp-templates/bp-nouveau/css/buddypress.css src/bp-templates/bp-nouveau/css/buddypress.css
index 72848855d..723ec8ede 100644
|
|
|
body.buddypress .buddypress-wrap h6 { |
| 119 | 119 | padding: 0; |
| 120 | 120 | } |
| 121 | 121 | |
| | 122 | body.buddypress .buddypress-wrap h2:before { |
| | 123 | display: none; |
| | 124 | } |
| | 125 | |
| 122 | 126 | /* Ensure .bp-wrap encloses it's children */ |
| 123 | 127 | .bp-wrap:before, |
| 124 | 128 | .bp-wrap:after { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 897 | 901 | } |
| 898 | 902 | |
| 899 | 903 | .bp-list li .item-avatar img.avatar { |
| 900 | | display: inline; |
| | 904 | display: inline-block; |
| | 905 | width: auto; |
| | 906 | height: auto; |
| 901 | 907 | } |
| 902 | 908 | |
| 903 | 909 | .bp-list li .item .item-avatar, |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1107 | 1113 | .activity-update-form #whats-new-avatar img { |
| 1108 | 1114 | box-shadow: none; |
| 1109 | 1115 | display: inline-block; |
| | 1116 | height: auto; |
| | 1117 | width: auto; |
| 1110 | 1118 | } |
| 1111 | 1119 | |
| 1112 | 1120 | .activity-update-form #whats-new-content { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1136 | 1144 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items { |
| 1137 | 1145 | list-style: none; |
| 1138 | 1146 | margin: 10px 0; |
| | 1147 | padding-left: 0; |
| 1139 | 1148 | } |
| 1140 | 1149 | |
| 1141 | 1150 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li { |
| 1142 | 1151 | margin-bottom: 10px; |
| 1143 | 1152 | } |
| 1144 | 1153 | |
| | 1154 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item { |
| | 1155 | margin-left: 10px; |
| | 1156 | height: auto; |
| | 1157 | } |
| | 1158 | |
| 1145 | 1159 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete { |
| 1146 | 1160 | padding: 0.3em; |
| | 1161 | width: 100%; |
| 1147 | 1162 | } |
| 1148 | 1163 | |
| 1149 | 1164 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1154 | 1169 | |
| 1155 | 1170 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar { |
| 1156 | 1171 | width: 30px; |
| | 1172 | height: 30px; |
| 1157 | 1173 | } |
| 1158 | 1174 | |
| 1159 | 1175 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1193 | 1209 | .activity-update-form #whats-new-content, |
| 1194 | 1210 | .activity-update-form #whats-new-post-in-box, |
| 1195 | 1211 | .activity-update-form #whats-new-submit { |
| 1196 | | margin-left: 8.5%; |
| | 1212 | margin-left: 55px; |
| 1197 | 1213 | } |
| 1198 | 1214 | .activity-update-form #whats-new-submit input { |
| 1199 | 1215 | margin-bottom: 0; |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1325 | 1341 | .activity-list .activity-item .activity-header .avatar { |
| 1326 | 1342 | display: inline-block; |
| 1327 | 1343 | margin: 0 5px; |
| 1328 | | vertical-align: bottom; |
| | 1344 | vertical-align: text-top; |
| | 1345 | width: 20px; |
| | 1346 | height: 20px; |
| 1329 | 1347 | } |
| 1330 | 1348 | |
| 1331 | 1349 | .activity-list .activity-item .activity-header .time-since { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1391 | 1409 | |
| 1392 | 1410 | .activity-list .activity-item .activity-meta.action .button { |
| 1393 | 1411 | background: transparent; |
| | 1412 | color: #555; |
| 1394 | 1413 | } |
| 1395 | 1414 | |
| 1396 | 1415 | .activity-list .activity-item .activity-meta.action a { |
| … |
… |
form.ac-form .ac-reply-content input { |
| 1997 | 2016 | text-align: center; |
| 1998 | 2017 | } |
| 1999 | 2018 | |
| | 2019 | #group-create-body img.avatar { |
| | 2020 | width: auto; |
| | 2021 | height: auto; |
| | 2022 | } |
| | 2023 | |
| 2000 | 2024 | #group-create-body .avatar-nav-items { |
| 2001 | 2025 | margin-top: 15px; |
| 2002 | 2026 | } |
| … |
… |
form.ac-form .ac-reply-content input { |
| 2032 | 2056 | |
| 2033 | 2057 | .single-headers #item-header-avatar a img { |
| 2034 | 2058 | float: none; |
| | 2059 | width: auto; |
| | 2060 | height: auto; |
| 2035 | 2061 | } |
| 2036 | 2062 | |
| 2037 | 2063 | .single-headers div#item-header-content { |
| … |
… |
body.no-js .single-item-header .js-self-profile-button { |
| 2333 | 2359 | |
| 2334 | 2360 | .buddypress-wrap .item-body .button-tabs { |
| 2335 | 2361 | margin: 30px 0 15px; |
| | 2362 | list-style: none; |
| 2336 | 2363 | } |
| 2337 | 2364 | |
| 2338 | 2365 | .buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry { |
| … |
… |
body.register .buddypress-wrap .page ul { |
| 3015 | 3042 | .bp-messages-content .actions { |
| 3016 | 3043 | float: right; |
| 3017 | 3044 | max-width: 30%; |
| | 3045 | line-height: 1; |
| 3018 | 3046 | } |
| 3019 | 3047 | |
| 3020 | 3048 | .bp-messages-content .actions .bp-icons:not(.bp-hide) { |
| … |
… |
body.register .buddypress-wrap .page ul { |
| 3168 | 3196 | |
| 3169 | 3197 | .bp-messages-content .thread-participants img { |
| 3170 | 3198 | width: 30px; |
| | 3199 | height: 30px; |
| 3171 | 3200 | } |
| 3172 | 3201 | |
| 3173 | 3202 | .bp-messages-content #thread-preview .preview-message ul, |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3508 | 3537 | position: relative; |
| 3509 | 3538 | text-indent: -2px; |
| 3510 | 3539 | z-index: 1; |
| 3511 | | width: 100%; |
| | 3540 | width: auto; |
| 3512 | 3541 | } |
| 3513 | 3542 | |
| 3514 | 3543 | .buddypress-wrap .select-wrap select, |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3564 | 3593 | |
| 3565 | 3594 | .buddypress-wrap form.bp-dir-search-form, |
| 3566 | 3595 | .buddypress-wrap form.bp-messages-search-form, |
| 3567 | | .buddypress-wrap form.bp-invites-search-form { |
| | 3596 | .buddypress-wrap form[data-bp-search].bp-invites-search-form { |
| 3568 | 3597 | border: 1px solid #eee; |
| 3569 | 3598 | width: 100%; |
| 3570 | 3599 | } |
| 3571 | 3600 | |
| 3572 | | @media screen and (min-width: 55em) { |
| 3573 | | .buddypress-wrap form.bp-dir-search-form, |
| 3574 | | .buddypress-wrap form.bp-messages-search-form, |
| 3575 | | .buddypress-wrap form.bp-invites-search-form { |
| 3576 | | width: 15em; |
| 3577 | | } |
| 3578 | | } |
| 3579 | | |
| 3580 | 3601 | .buddypress-wrap form.bp-dir-search-form label, |
| 3581 | 3602 | .buddypress-wrap form.bp-messages-search-form label, |
| 3582 | | .buddypress-wrap form.bp-invites-search-form label { |
| | 3603 | .buddypress-wrap form[data-bp-search].bp-invites-search-form label { |
| 3583 | 3604 | margin: 0; |
| 3584 | 3605 | } |
| 3585 | 3606 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3589 | 3610 | .buddypress-wrap form.bp-messages-search-form input[type="search"], |
| 3590 | 3611 | .buddypress-wrap form.bp-messages-search-form input[type="text"], |
| 3591 | 3612 | .buddypress-wrap form.bp-messages-search-form button[type="submit"], |
| 3592 | | .buddypress-wrap form.bp-invites-search-form input[type="search"], |
| 3593 | | .buddypress-wrap form.bp-invites-search-form input[type="text"], |
| 3594 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] { |
| | 3613 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"], |
| | 3614 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="text"], |
| | 3615 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] { |
| 3595 | 3616 | background: none; |
| 3596 | 3617 | border: 0; |
| 3597 | 3618 | border-radius: 0; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3602 | 3623 | .buddypress-wrap form.bp-dir-search-form input[type="text"], |
| 3603 | 3624 | .buddypress-wrap form.bp-messages-search-form input[type="search"], |
| 3604 | 3625 | .buddypress-wrap form.bp-messages-search-form input[type="text"], |
| 3605 | | .buddypress-wrap form.bp-invites-search-form input[type="search"], |
| 3606 | | .buddypress-wrap form.bp-invites-search-form input[type="text"] { |
| | 3626 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"], |
| | 3627 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="text"] { |
| 3607 | 3628 | float: left; |
| 3608 | 3629 | line-height: 1.5; |
| 3609 | 3630 | padding: 3px 10px; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3612 | 3633 | |
| 3613 | 3634 | .buddypress-wrap form.bp-dir-search-form button[type="submit"], |
| 3614 | 3635 | .buddypress-wrap form.bp-messages-search-form button[type="submit"], |
| 3615 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] { |
| | 3636 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] { |
| 3616 | 3637 | float: right; |
| 3617 | 3638 | font-size: inherit; |
| 3618 | 3639 | font-weight: 400; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3625 | 3646 | |
| 3626 | 3647 | .buddypress-wrap form.bp-dir-search-form button[type="submit"] span, |
| 3627 | 3648 | .buddypress-wrap form.bp-messages-search-form button[type="submit"] span, |
| 3628 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"] span { |
| | 3649 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"] span { |
| 3629 | 3650 | font-family: dashicons; |
| 3630 | 3651 | font-size: 18px; |
| 3631 | 3652 | line-height: 1.6; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3633 | 3654 | |
| 3634 | 3655 | .buddypress-wrap form.bp-dir-search-form button[type="submit"].bp-show, |
| 3635 | 3656 | .buddypress-wrap form.bp-messages-search-form button[type="submit"].bp-show, |
| 3636 | | .buddypress-wrap form.bp-invites-search-form button[type="submit"].bp-show { |
| | 3657 | .buddypress-wrap form[data-bp-search].bp-invites-search-form button[type="submit"].bp-show { |
| 3637 | 3658 | height: auto; |
| 3638 | 3659 | left: 0; |
| 3639 | 3660 | overflow: visible; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3643 | 3664 | |
| 3644 | 3665 | .buddypress-wrap form.bp-dir-search-form input[type="search"]::-webkit-search-cancel-button, |
| 3645 | 3666 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-cancel-button, |
| 3646 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-cancel-button { |
| | 3667 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-cancel-button { |
| 3647 | 3668 | -webkit-appearance: searchfield-cancel-button; |
| 3648 | 3669 | } |
| 3649 | 3670 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3651 | 3672 | .buddypress-wrap form.bp-dir-search-form input[type="search"]::-webkit-search-results-decoration, |
| 3652 | 3673 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-results-button, |
| 3653 | 3674 | .buddypress-wrap form.bp-messages-search-form input[type="search"]::-webkit-search-results-decoration, |
| 3654 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-results-button, |
| 3655 | | .buddypress-wrap form.bp-invites-search-form input[type="search"]::-webkit-search-results-decoration { |
| | 3675 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-results-button, |
| | 3676 | .buddypress-wrap form[data-bp-search].bp-invites-search-form input[type="search"]::-webkit-search-results-decoration { |
| 3656 | 3677 | display: none; |
| 3657 | 3678 | } |
| 3658 | 3679 | |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3887 | 3908 | border-color: #ccc; |
| 3888 | 3909 | border-style: solid; |
| 3889 | 3910 | border-width: 1px; |
| | 3911 | border-radius: 0; |
| 3890 | 3912 | color: #555; |
| 3891 | 3913 | cursor: pointer; |
| | 3914 | font-family: inherit; |
| 3892 | 3915 | font-size: inherit; |
| 3893 | 3916 | font-weight: 400; |
| 3894 | 3917 | outline: none; |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3896 | 3919 | text-align: center; |
| 3897 | 3920 | text-decoration: none; |
| 3898 | 3921 | width: auto; |
| | 3922 | line-height: 1; |
| 3899 | 3923 | } |
| 3900 | 3924 | |
| 3901 | 3925 | .buddypress .buddypress-wrap .button-small[type="button"] { |
diff --git src/bp-templates/bp-nouveau/sass/_nouveau_messages.scss src/bp-templates/bp-nouveau/sass/_nouveau_messages.scss
index 6544227c6..a04c262ce 100644
|
|
|
|
| 1 | 1 | // Nouveau Messages styles. |
| 2 | | // @version 3.0.0 |
| | 2 | // @since 3.0.0 |
| | 3 | // @version 5.0.0 |
| 3 | 4 | // Icon additions to default action star |
| 4 | 5 | |
| 5 | 6 | |
| … |
… |
|
| 187 | 188 | .actions { |
| 188 | 189 | float: right; |
| 189 | 190 | max-width: 30%; |
| | 191 | line-height: 1; |
| 190 | 192 | |
| 191 | 193 | .bp-icons:not(.bp-hide) { |
| 192 | 194 | display: inline-block; |
| … |
… |
|
| 354 | 356 | |
| 355 | 357 | img { |
| 356 | 358 | width: 30px; |
| | 359 | height: 30px; |
| 357 | 360 | } |
| 358 | 361 | } |
| 359 | 362 | |