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_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_lists.scss src/bp-templates/bp-nouveau/common-styles/_bp_lists.scss
index 019c63636..88843a888 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; |
| 46 | 48 | } |
| 47 | 49 | } |
| 48 | 50 | |
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..f64754801 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 { |
diff --git src/bp-templates/bp-nouveau/css/buddypress-rtl.css src/bp-templates/bp-nouveau/css/buddypress-rtl.css
index b716e4fec..e6daf61bc 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; |
| 901 | 906 | } |
| 902 | 907 | |
| 903 | 908 | .bp-list li .item .item-avatar, |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1107 | 1112 | .activity-update-form #whats-new-avatar img { |
| 1108 | 1113 | box-shadow: none; |
| 1109 | 1114 | display: inline-block; |
| | 1115 | height: auto; |
| | 1116 | width: auto; |
| 1110 | 1117 | } |
| 1111 | 1118 | |
| 1112 | 1119 | .activity-update-form #whats-new-content { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1136 | 1143 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items { |
| 1137 | 1144 | list-style: none; |
| 1138 | 1145 | margin: 10px 0; |
| | 1146 | padding-right: 0; |
| 1139 | 1147 | } |
| 1140 | 1148 | |
| 1141 | 1149 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li { |
| 1142 | 1150 | margin-bottom: 10px; |
| 1143 | 1151 | } |
| 1144 | 1152 | |
| | 1153 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item { |
| | 1154 | margin-right: 10px; |
| | 1155 | height: auto; |
| | 1156 | } |
| | 1157 | |
| 1145 | 1158 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete { |
| 1146 | 1159 | padding: 0.3em; |
| | 1160 | width: 100%; |
| 1147 | 1161 | } |
| 1148 | 1162 | |
| 1149 | 1163 | .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 | 1168 | |
| 1155 | 1169 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar { |
| 1156 | 1170 | width: 30px; |
| | 1171 | height: 30px; |
| 1157 | 1172 | } |
| 1158 | 1173 | |
| 1159 | 1174 | .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 { |
| 1325 | 1340 | .activity-list .activity-item .activity-header .avatar { |
| 1326 | 1341 | display: inline-block; |
| 1327 | 1342 | margin: 0 5px; |
| 1328 | | vertical-align: bottom; |
| | 1343 | vertical-align: text-top; |
| | 1344 | width: 20px; |
| | 1345 | height: 20px; |
| 1329 | 1346 | } |
| 1330 | 1347 | |
| 1331 | 1348 | .activity-list .activity-item .activity-header .time-since { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1391 | 1408 | |
| 1392 | 1409 | .activity-list .activity-item .activity-meta.action .button { |
| 1393 | 1410 | background: transparent; |
| | 1411 | color: #555; |
| 1394 | 1412 | } |
| 1395 | 1413 | |
| 1396 | 1414 | .activity-list .activity-item .activity-meta.action a { |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3508 | 3526 | position: relative; |
| 3509 | 3527 | text-indent: -2px; |
| 3510 | 3528 | z-index: 1; |
| 3511 | | width: 100%; |
| | 3529 | width: auto; |
| 3512 | 3530 | } |
| 3513 | 3531 | |
| 3514 | 3532 | .buddypress-wrap .select-wrap select, |
diff --git src/bp-templates/bp-nouveau/css/buddypress.css src/bp-templates/bp-nouveau/css/buddypress.css
index 72848855d..5d864209f 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; |
| 901 | 906 | } |
| 902 | 907 | |
| 903 | 908 | .bp-list li .item .item-avatar, |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1107 | 1112 | .activity-update-form #whats-new-avatar img { |
| 1108 | 1113 | box-shadow: none; |
| 1109 | 1114 | display: inline-block; |
| | 1115 | height: auto; |
| | 1116 | width: auto; |
| 1110 | 1117 | } |
| 1111 | 1118 | |
| 1112 | 1119 | .activity-update-form #whats-new-content { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1136 | 1143 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items { |
| 1137 | 1144 | list-style: none; |
| 1138 | 1145 | margin: 10px 0; |
| | 1146 | padding-left: 0; |
| 1139 | 1147 | } |
| 1140 | 1148 | |
| 1141 | 1149 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li { |
| 1142 | 1150 | margin-bottom: 10px; |
| 1143 | 1151 | } |
| 1144 | 1152 | |
| | 1153 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item { |
| | 1154 | margin-left: 10px; |
| | 1155 | height: auto; |
| | 1156 | } |
| | 1157 | |
| 1145 | 1158 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete { |
| 1146 | 1159 | padding: 0.3em; |
| | 1160 | width: 100%; |
| 1147 | 1161 | } |
| 1148 | 1162 | |
| 1149 | 1163 | .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 | 1168 | |
| 1155 | 1169 | .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar { |
| 1156 | 1170 | width: 30px; |
| | 1171 | height: 30px; |
| 1157 | 1172 | } |
| 1158 | 1173 | |
| 1159 | 1174 | .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 { |
| 1325 | 1340 | .activity-list .activity-item .activity-header .avatar { |
| 1326 | 1341 | display: inline-block; |
| 1327 | 1342 | margin: 0 5px; |
| 1328 | | vertical-align: bottom; |
| | 1343 | vertical-align: text-top; |
| | 1344 | width: 20px; |
| | 1345 | height: 20px; |
| 1329 | 1346 | } |
| 1330 | 1347 | |
| 1331 | 1348 | .activity-list .activity-item .activity-header .time-since { |
| … |
… |
body.buddypress article.page > .entry-header .entry-title { |
| 1391 | 1408 | |
| 1392 | 1409 | .activity-list .activity-item .activity-meta.action .button { |
| 1393 | 1410 | background: transparent; |
| | 1411 | color: #555; |
| 1394 | 1412 | } |
| 1395 | 1413 | |
| 1396 | 1414 | .activity-list .activity-item .activity-meta.action a { |
| … |
… |
body.no-js .buddypress #messages-bulk-management #select-all-messages { |
| 3508 | 3526 | position: relative; |
| 3509 | 3527 | text-indent: -2px; |
| 3510 | 3528 | z-index: 1; |
| 3511 | | width: 100%; |
| | 3529 | width: auto; |
| 3512 | 3530 | } |
| 3513 | 3531 | |
| 3514 | 3532 | .buddypress-wrap .select-wrap select, |