Changeset 11587
- Timestamp:
- 06/13/2017 04:38:30 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 52 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r11535 r11587 11 11 directories: 12 12 - $HOME/.composer/cache 13 - $HOME/.rvm/gems14 13 # - /tmp/wordpress/src/wp-content/plugins/buddypress/node_modules 15 14 … … 52 51 # before_install: Failures in this section will result in build status 'errored' 53 52 before_install: 54 # scss-lint requires Ruby >= 2.255 - source ~/.rvm/scripts/rvm && rvm install 2.2.0 && rvm use 2.2.056 53 # set up WP install 57 54 - export WP_DEVELOP_DIR=/tmp/wordpress/ … … 75 72 # prepare for running the tests 76 73 - cd $plugin_dir 77 - gem install scss_lint78 74 # setup NodeJS version using NVM 79 75 - node --version … … 84 80 - mysql --version 85 81 - phpenv versions 86 - ruby --version87 82 - php --version 88 83 - php -m -
trunk/Gruntfile.js
r11546 r11587 20 20 BP_EXCLUDED_MISC = [ 21 21 '!bp-forums/bbpress/**/*' 22 ], 23 24 // SASS generated "Twenty*"" CSS files 25 BP_SCSS_CSS_FILES = [ 26 '!bp-templates/bp-legacy/css/twenty*.css' 22 27 ], 23 28 … … 197 202 } 198 203 }, 199 scsslint: {200 options: {201 bundleExec: false,202 colorizeOutput: true,203 config: '.scss-lint.yml'204 },205 core: [ SOURCE_DIR + 'bp-templates/bp-legacy/css/*.scss' ]206 },207 204 stylelint: { 208 205 css: { … … 213 210 expand: true, 214 211 cwd: SOURCE_DIR, 215 src: BP_CSS.concat( BP_EXCLUDED_CSS, BP_EXCLUDED_MISC )212 src: BP_CSS.concat( BP_EXCLUDED_CSS, BP_EXCLUDED_MISC, BP_SCSS_CSS_FILES ) 216 213 }, 217 214 scss: { … … 294 291 * Register tasks. 295 292 */ 296 grunt.registerTask( 'src', ['checkDependencies', 'jsvalidate:src', 'jshint', 's csslint', 'sass', 'rtlcss'] );293 grunt.registerTask( 'src', ['checkDependencies', 'jsvalidate:src', 'jshint', 'stylelint', 'sass', 'rtlcss'] ); 297 294 grunt.registerTask( 'commit', ['src', 'checktextdomain', 'imagemin'] ); 298 295 grunt.registerTask( 'build', ['commit', 'clean:all', 'copy:files', 'uglify', 'jsvalidate:build', 'cssmin', 'makepot', 'exec:bpdefault'] ); -
trunk/src/bp-activity/admin/css/admin-rtl.css
r10197 r11587 2 2 float: left; 3 3 } 4 4 5 .akismet-status a { 5 color: # AAA;6 color: #aaa; 6 7 font-style: italic; 7 8 } 9 8 10 .akismet-history { 9 11 margin: 13px; 10 12 } 13 11 14 .akismet-history div { 12 15 margin-bottom: 13px; 13 16 } 17 14 18 .akismet-history span { 15 19 color: #999; … … 19 23 padding: 5px 0; 20 24 } 25 21 26 #bp-activities { 22 27 height: 120px; 23 28 } 29 24 30 #bp-replyhead { 25 31 font-size: 1em; 26 line-height: 1.4 em;32 line-height: 1.4; 27 33 margin: 0; 28 34 } 35 29 36 #bp-replysubmit { 30 37 margin: 0; … … 32 39 text-align: center; 33 40 } 41 34 42 #bp-replysubmit .error { 35 color: red;43 color: #f00; 36 44 line-height: 21px; 37 45 text-align: center; 38 46 vertical-align: center; 39 47 } 48 40 49 #bp-replysubmit img.waiting { 41 50 float: left; … … 43 52 vertical-align: top; 44 53 } 54 45 55 #bp-activities-form .column-response img { 46 56 float: right; … … 49 59 margin-top: 1px; 50 60 } 61 51 62 .activity-errors { 52 63 list-style-type: disc; … … 58 69 line-height: 0; 59 70 } 71 60 72 #bp_activity_action h3, 61 73 #bp_activity_content h3 { 62 74 cursor: auto; 63 75 } 76 64 77 #bp_activity_action td.mceIframeContainer, 65 78 #bp_activity_content td.mceIframeContainer { 66 background-color: white;79 background-color: #fff; 67 80 } 81 68 82 #post-body #bp-activities-action_resize, 69 83 #post-body #bp-activities-content_resize { … … 71 85 margin-top: -2px; 72 86 } 87 73 88 #bp_activity_link input { 74 89 width: 99%; 75 90 } 91 76 92 #bp-activities-primaryid { 77 93 margin-bottom: 1em; 78 94 } 95 79 96 .column-action { 80 97 width: 12%; … … 82 99 83 100 @media screen and (max-width: 782px) { 101 84 102 body.toplevel_page_bp-activity .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { 85 103 display: table-cell; -
trunk/src/bp-activity/admin/css/admin.css
r10197 r11587 2 2 float: right; 3 3 } 4 4 5 .akismet-status a { 5 color: # AAA;6 color: #aaa; 6 7 font-style: italic; 7 8 } 9 8 10 .akismet-history { 9 11 margin: 13px; 10 12 } 13 11 14 .akismet-history div { 12 15 margin-bottom: 13px; 13 16 } 17 14 18 .akismet-history span { 15 19 color: #999; … … 19 23 padding: 5px 0; 20 24 } 25 21 26 #bp-activities { 22 27 height: 120px; 23 28 } 29 24 30 #bp-replyhead { 25 31 font-size: 1em; 26 line-height: 1.4 em;32 line-height: 1.4; 27 33 margin: 0; 28 34 } 35 29 36 #bp-replysubmit { 30 37 margin: 0; … … 32 39 text-align: center; 33 40 } 41 34 42 #bp-replysubmit .error { 35 color: red;43 color: #f00; 36 44 line-height: 21px; 37 45 text-align: center; 38 46 vertical-align: center; 39 47 } 48 40 49 #bp-replysubmit img.waiting { 41 50 float: right; … … 43 52 vertical-align: top; 44 53 } 54 45 55 #bp-activities-form .column-response img { 46 56 float: left; … … 49 59 margin-top: 1px; 50 60 } 61 51 62 .activity-errors { 52 63 list-style-type: disc; … … 58 69 line-height: 0; 59 70 } 71 60 72 #bp_activity_action h3, 61 73 #bp_activity_content h3 { 62 74 cursor: auto; 63 75 } 76 64 77 #bp_activity_action td.mceIframeContainer, 65 78 #bp_activity_content td.mceIframeContainer { 66 background-color: white;79 background-color: #fff; 67 80 } 81 68 82 #post-body #bp-activities-action_resize, 69 83 #post-body #bp-activities-content_resize { … … 71 85 margin-top: -2px; 72 86 } 87 73 88 #bp_activity_link input { 74 89 width: 99%; 75 90 } 91 76 92 #bp-activities-primaryid { 77 93 margin-bottom: 1em; 78 94 } 95 79 96 .column-action { 80 97 width: 12%; … … 82 99 83 100 @media screen and (max-width: 782px) { 101 84 102 body.toplevel_page_bp-activity .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) { 85 103 display: table-cell; -
trunk/src/bp-activity/css/mentions-rtl.css
r10808 r11587 3 3 border-radius: 2px; 4 4 border: 1px solid rgb(204, 204, 204); 5 box-shadow: 0 0 5px rgba(204, 204, 204, 0.25), 0 0 1px # FFF;6 color: # D84800;5 box-shadow: 0 0 5px rgba(204, 204, 204, 0.25), 0 0 1px #fff; 6 color: #d84800; 7 7 display: none; 8 8 font-family: sans-serif; … … 15 15 left: 0; 16 16 } 17 17 18 .atwho-view ul { 18 background: # FFF;19 background: #fff; 19 20 list-style: none; 20 21 margin: auto; 21 22 padding: 0; 22 23 } 24 23 25 .atwho-view ul li { 24 border-bottom: 1px solid # EFEFEF;26 border-bottom: 1px solid #efefef; 25 27 box-sizing: content-box; 26 28 cursor: pointer; … … 33 35 padding: 5px 10px; 34 36 } 37 35 38 .atwho-view img { 36 39 border-radius: 2px; 37 40 float: left; 38 41 height: 20px; 39 margin-top: 0;42 margin-top: 0; 40 43 width: 20px; 41 44 } 45 42 46 .atwho-view strong { 43 background: # EFEFEF;44 font-weight: bold;47 background: #efefef; 48 font-weight: 700; 45 49 } 50 46 51 .atwho-view .username strong { 47 color: # D54E21;52 color: #d54e21; 48 53 } 54 49 55 .atwho-view small { 50 color: # AAA;56 color: #aaa; 51 57 float: left; 52 58 font-size: smaller; 53 font-weight: normal;59 font-weight: 400; 54 60 margin: 0 40px 0 10px; 55 61 } 62 56 63 .atwho-view .cur { 57 64 background: rgba(239, 239, 239, 0.5); … … 59 66 60 67 @media (max-width: 900px) { 68 61 69 .atwho-view img { 62 70 float: right; … … 64 72 } 65 73 } 74 66 75 @media (max-width: 400px) { 76 67 77 .atwho-view ul li { 68 78 font-size: 16px; … … 70 80 padding: 13px; 71 81 } 82 72 83 .atwho-view ul li img { 73 84 height: 30px; … … 75 86 width: 30px; 76 87 } 88 77 89 .atwho-view { 78 90 border-radius: 0; … … 81 93 width: 100%; 82 94 } 95 83 96 .atwho-view ul li .username { 84 97 display: inline-block; … … 86 99 padding: 10px 0; 87 100 } 101 88 102 .atwho-view ul li small { 89 103 display: inline-block; -
trunk/src/bp-activity/css/mentions.css
r10807 r11587 3 3 border-radius: 2px; 4 4 border: 1px solid rgb(204, 204, 204); 5 box-shadow: 0 0 5px rgba(204, 204, 204, 0.25), 0 0 1px # FFF;6 color: # D84800;5 box-shadow: 0 0 5px rgba(204, 204, 204, 0.25), 0 0 1px #fff; 6 color: #d84800; 7 7 display: none; 8 8 font-family: sans-serif; … … 12 12 z-index: 1000; /* >999 for wp-admin */ 13 13 } 14 14 15 /* rtl:ignore */ 15 16 .atwho-view { 16 17 left: 0; 17 18 } 19 18 20 .atwho-view ul { 19 background: # FFF;21 background: #fff; 20 22 list-style: none; 21 23 margin: auto; 22 24 padding: 0; 23 25 } 26 24 27 .atwho-view ul li { 25 border-bottom: 1px solid # EFEFEF;28 border-bottom: 1px solid #efefef; 26 29 box-sizing: content-box; 27 30 cursor: pointer; … … 34 37 padding: 5px 10px; 35 38 } 39 36 40 .atwho-view img { 37 41 border-radius: 2px; 38 42 float: right; 39 43 height: 20px; 40 margin-top: 0;44 margin-top: 0; 41 45 width: 20px; 42 46 } 47 43 48 .atwho-view strong { 44 background: # EFEFEF;45 font-weight: bold;49 background: #efefef; 50 font-weight: 700; 46 51 } 52 47 53 .atwho-view .username strong { 48 color: # D54E21;54 color: #d54e21; 49 55 } 56 50 57 .atwho-view small { 51 color: # AAA;58 color: #aaa; 52 59 float: right; 53 60 font-size: smaller; 54 font-weight: normal;61 font-weight: 400; 55 62 margin: 0 10px 0 40px; 56 63 } 64 57 65 .atwho-view .cur { 58 66 background: rgba(239, 239, 239, 0.5); … … 60 68 61 69 @media (max-width: 900px) { 70 62 71 .atwho-view img { 63 72 float: left; … … 65 74 } 66 75 } 76 67 77 @media (max-width: 400px) { 78 68 79 .atwho-view ul li { 69 80 font-size: 16px; … … 71 82 padding: 13px; 72 83 } 84 73 85 .atwho-view ul li img { 74 86 height: 30px; … … 76 88 width: 30px; 77 89 } 90 78 91 .atwho-view { 79 92 border-radius: 0; … … 82 95 width: 100%; 83 96 } 97 84 98 .atwho-view ul li .username { 85 99 display: inline-block; … … 87 101 padding: 10px 0; 88 102 } 103 89 104 .atwho-view ul li small { 90 105 display: inline-block; -
trunk/src/bp-core/admin/css/common-rtl.css
r11426 r11587 35 35 color: #d84800; 36 36 display: inline-block; 37 font: normal 150px/1 'dashicons'!important;37 font: 400 150px/1 dashicons !important; 38 38 } 39 39 … … 55 55 56 56 @media only screen and (max-width: 500px) { 57 57 58 .about-wrap .bp-badge { 58 59 position: relative; … … 89 90 height: 100px; 90 91 line-height: 100px; 91 margin: 0 0 15px 15px 92 margin: 0 0 15px 15px; 92 93 text-align: center; 93 94 width: 100px; … … 127 128 height: 80px; 128 129 line-height: 80px; 129 margin: 0 0 15px 15px 130 margin: 0 0 15px 15px; 130 131 text-align: center; 131 132 width: 80px; … … 164 165 } 165 166 166 .buddypress .bp-feature: :after {167 content: '';167 .buddypress .bp-feature:after { 168 content: ""; 168 169 } 169 170 … … 208 209 } 209 210 210 .buddypress .bp-changelog-section: :after {211 content: '';211 .buddypress .bp-changelog-section:after { 212 content: ""; 212 213 } 213 214 … … 263 264 264 265 @media screen and ( max-width: 782px ) { 266 265 267 .bp-headline-feature, 266 268 .bp-features-section, … … 270 272 margin-left: 20px; 271 273 } 274 272 275 .buddypress .bp-headline-feature { 273 276 padding: 0; 274 277 } 278 275 279 .buddypress .bp-headline { 276 280 margin: 0; 277 281 width: 97%; 278 282 } 283 279 284 .buddypress .bp-features-section { 280 285 clear: both; … … 283 288 padding-bottom: 2em; 284 289 } 290 285 291 .buddypress .bp-features-section .bp-feature-with-images { 286 292 margin-bottom: 2em; 287 293 } 294 288 295 .buddypress .bp-features-section .headline-title { 289 296 margin-bottom: 1em; 290 297 } 298 291 299 .buddypress .bp-changelog-section .changelog-title { 292 300 font-size: 1.25em; … … 295 303 margin-top: 0.5em; 296 304 } 305 297 306 .buddypress .bp-features-section .feature-title, 298 307 .buddypress .bp-changelog-section .title { … … 302 311 text-align: right; 303 312 } 313 304 314 .buddypress .bp-features-section .bp-feature, 305 315 .buddypress .bp-features-section .bp-feature-imaged { … … 312 322 width: 100%; 313 323 } 324 314 325 .buddypress .bp-features-section .bp-feature-imaged p { 315 326 font-size: 1em; 316 327 } 328 317 329 .buddypress .bp-features-section .bp-feature span { 318 330 margin-top: 0.33em; 319 331 } 332 320 333 .buddypress .bp-feature.opposite .feature-title, 321 334 .buddypress .bp-feature.opposite p { 322 335 float: none; 323 336 } 337 324 338 .buddypress .bp-changelog-section { 325 clear: both; 326 margin-bottom: 2em; 327 margin-top: 2em; 328 } 339 clear: both; 340 margin-bottom: 2em; 341 margin-top: 2em; 342 } 343 329 344 .buddypress .bp-changelog-section .changelog-title { 330 345 margin-bottom: 1.5em; 331 346 } 347 332 348 .buddypress .bp-changelog .title { 333 349 font-size: 1em; 334 350 } 351 335 352 .buddypress .bp-changelog p { 336 353 margin-bottom: 1em; 337 354 } 355 338 356 .buddypress .bp-changelog-section .two-col > div, 339 357 .buddypress .bp-changelog-section .three-col .col { … … 343 361 } 344 362 } 363 345 364 @media screen and ( max-width: 360px ) { 365 346 366 .buddypress .bp-headline { 347 367 text-align: center; 348 368 } 369 349 370 .buddypress .bp-headline span.dashicons { 350 371 clear: none; … … 356 377 width: 80px; 357 378 } 379 358 380 .buddypress .bp-headline-feature .headline-title, 359 381 .buddypress .bp-features-section .headline-title { … … 362 384 text-align: right; 363 385 } 386 364 387 .buddypress .bp-headline-feature .headline-title { 365 margin: 1em 0 0 0; 366 } 388 margin: 1em 0 0; 389 } 390 367 391 .buddypress .bp-headline-feature p { 368 392 margin: 1.15em 0 0.6em auto; … … 370 394 width: auto; 371 395 } 396 372 397 .buddypress .bp-features-section .bp-feature { 373 398 text-align: center; 374 399 } 400 375 401 .buddypress .bp-features-section span.dashicons { 376 402 float: none; 377 403 } 404 378 405 .buddypress .bp-features-section .feature-title, 379 406 .buddypress .bp-features-section p { … … 382 409 } 383 410 } 411 384 412 /*------------------------------------------------------------------------------ 385 413 * 2.0 Dashicons … … 415 443 #adminmenu #toplevel_page_bp-friends .wp-menu-image:before, 416 444 #adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before, 417 #adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before {445 #adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before { 418 446 content: "\f454"; 419 447 } … … 441 469 442 470 .settings_page_bp-components td.plugin-title span:before { 443 font-family: 'dashicons';471 font-family: dashicons; 444 472 font-size: 18px; 445 473 } … … 494 522 495 523 @media screen and ( max-width: 782px ) { 524 496 525 .settings_page_bp-components td.plugin-title span { 497 526 margin-top: 5px; 498 527 } 528 499 529 #bp-admin-component-form .wp-list-table.plugins .plugin-title { 500 530 display: block; 501 531 width: auto; 502 532 } 533 503 534 #bp-admin-component-form .subsubsub { 504 535 margin-bottom: 0; … … 551 582 552 583 .bp-signups-list .column-fields { 553 font-weight: bold;584 font-weight: 700; 554 585 } 555 586 … … 594 625 color: #23282d; 595 626 font-size: 1.3em; 596 font-weight: 600 px;627 font-weight: 600; 597 628 margin: 1em 0; 598 629 } … … 601 632 clear: right; 602 633 display: block; 603 line-height: 1.5 em;634 line-height: 1.5; 604 635 margin: 0 0 1em; 605 636 vertical-align: middle; … … 607 638 608 639 @media screen and (max-width: 782px) { 640 609 641 .tools_page_bp-tools p { 610 642 line-height: 1.5; 611 643 } 644 612 645 .tools_page_bp-tools label { 613 646 margin-bottom: 1em; … … 615 648 text-indent: -33px; 616 649 } 650 617 651 .tools_page_bp-tools .checkbox { 618 652 padding: 0 30px 0 0; -
trunk/src/bp-core/admin/css/common.css
r11425 r11587 35 35 color: #d84800; 36 36 display: inline-block; 37 font: normal 150px/1 'dashicons'!important;37 font: 400 150px/1 dashicons !important; 38 38 } 39 39 … … 55 55 56 56 @media only screen and (max-width: 500px) { 57 57 58 .about-wrap .bp-badge { 58 59 position: relative; … … 89 90 height: 100px; 90 91 line-height: 100px; 91 margin: 0 15px 15px 0 92 margin: 0 15px 15px 0; 92 93 text-align: center; 93 94 width: 100px; … … 127 128 height: 80px; 128 129 line-height: 80px; 129 margin: 0 15px 15px 0 130 margin: 0 15px 15px 0; 130 131 text-align: center; 131 132 width: 80px; … … 164 165 } 165 166 166 .buddypress .bp-feature: :after {167 content: '';167 .buddypress .bp-feature:after { 168 content: ""; 168 169 } 169 170 … … 208 209 } 209 210 210 .buddypress .bp-changelog-section: :after {211 content: '';211 .buddypress .bp-changelog-section:after { 212 content: ""; 212 213 } 213 214 … … 263 264 264 265 @media screen and ( max-width: 782px ) { 266 265 267 .bp-headline-feature, 266 268 .bp-features-section, … … 270 272 margin-right: 20px; 271 273 } 274 272 275 .buddypress .bp-headline-feature { 273 276 padding: 0; 274 277 } 278 275 279 .buddypress .bp-headline { 276 280 margin: 0; 277 281 width: 97%; 278 282 } 283 279 284 .buddypress .bp-features-section { 280 285 clear: both; … … 283 288 padding-bottom: 2em; 284 289 } 290 285 291 .buddypress .bp-features-section .bp-feature-with-images { 286 292 margin-bottom: 2em; 287 293 } 294 288 295 .buddypress .bp-features-section .headline-title { 289 296 margin-bottom: 1em; 290 297 } 298 291 299 .buddypress .bp-changelog-section .changelog-title { 292 300 font-size: 1.25em; … … 295 303 margin-top: 0.5em; 296 304 } 305 297 306 .buddypress .bp-features-section .feature-title, 298 307 .buddypress .bp-changelog-section .title { … … 302 311 text-align: left; 303 312 } 313 304 314 .buddypress .bp-features-section .bp-feature, 305 315 .buddypress .bp-features-section .bp-feature-imaged { … … 312 322 width: 100%; 313 323 } 324 314 325 .buddypress .bp-features-section .bp-feature-imaged p { 315 326 font-size: 1em; 316 327 } 328 317 329 .buddypress .bp-features-section .bp-feature span { 318 330 margin-top: 0.33em; 319 331 } 332 320 333 .buddypress .bp-feature.opposite .feature-title, 321 334 .buddypress .bp-feature.opposite p { 322 335 float: none; 323 336 } 337 324 338 .buddypress .bp-changelog-section { 325 clear: both; 326 margin-bottom: 2em; 327 margin-top: 2em; 328 } 339 clear: both; 340 margin-bottom: 2em; 341 margin-top: 2em; 342 } 343 329 344 .buddypress .bp-changelog-section .changelog-title { 330 345 margin-bottom: 1.5em; 331 346 } 347 332 348 .buddypress .bp-changelog .title { 333 349 font-size: 1em; 334 350 } 351 335 352 .buddypress .bp-changelog p { 336 353 margin-bottom: 1em; 337 354 } 355 338 356 .buddypress .bp-changelog-section .two-col > div, 339 357 .buddypress .bp-changelog-section .three-col .col { … … 343 361 } 344 362 } 363 345 364 @media screen and ( max-width: 360px ) { 365 346 366 .buddypress .bp-headline { 347 367 text-align: center; 348 368 } 369 349 370 .buddypress .bp-headline span.dashicons { 350 371 clear: none; … … 356 377 width: 80px; 357 378 } 379 358 380 .buddypress .bp-headline-feature .headline-title, 359 381 .buddypress .bp-features-section .headline-title { … … 362 384 text-align: left; 363 385 } 386 364 387 .buddypress .bp-headline-feature .headline-title { 365 margin: 1em 0 0 0; 366 } 388 margin: 1em 0 0; 389 } 390 367 391 .buddypress .bp-headline-feature p { 368 392 margin: 1.15em auto 0.6em 0; … … 370 394 width: auto; 371 395 } 396 372 397 .buddypress .bp-features-section .bp-feature { 373 398 text-align: center; 374 399 } 400 375 401 .buddypress .bp-features-section span.dashicons { 376 402 float: none; 377 403 } 404 378 405 .buddypress .bp-features-section .feature-title, 379 406 .buddypress .bp-features-section p { … … 382 409 } 383 410 } 411 384 412 /*------------------------------------------------------------------------------ 385 413 * 2.0 Dashicons … … 415 443 #adminmenu #toplevel_page_bp-friends .wp-menu-image:before, 416 444 #adminmenu #toplevel_page_bp-friends_user .wp-menu-image:before, 417 #adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before {445 #adminmenu #toplevel_page_bp-friends_network .wp-menu-image:before { 418 446 content: "\f454"; 419 447 } … … 441 469 442 470 .settings_page_bp-components td.plugin-title span:before { 443 font-family: 'dashicons';471 font-family: dashicons; 444 472 font-size: 18px; 445 473 } … … 494 522 495 523 @media screen and ( max-width: 782px ) { 524 496 525 .settings_page_bp-components td.plugin-title span { 497 526 margin-top: 5px; 498 527 } 528 499 529 #bp-admin-component-form .wp-list-table.plugins .plugin-title { 500 530 display: block; 501 531 width: auto; 502 532 } 533 503 534 #bp-admin-component-form .subsubsub { 504 535 margin-bottom: 0; … … 551 582 552 583 .bp-signups-list .column-fields { 553 font-weight: bold;584 font-weight: 700; 554 585 } 555 586 … … 594 625 color: #23282d; 595 626 font-size: 1.3em; 596 font-weight: 600 px;627 font-weight: 600; 597 628 margin: 1em 0; 598 629 } … … 601 632 clear: left; 602 633 display: block; 603 line-height: 1.5 em;634 line-height: 1.5; 604 635 margin: 0 0 1em; 605 636 vertical-align: middle; … … 607 638 608 639 @media screen and (max-width: 782px) { 640 609 641 .tools_page_bp-tools p { 610 642 line-height: 1.5; 611 643 } 644 612 645 .tools_page_bp-tools label { 613 646 margin-bottom: 1em; … … 615 648 text-indent: -33px; 616 649 } 650 617 651 .tools_page_bp-tools .checkbox { 618 652 padding: 0 0 0 30px; -
trunk/src/bp-core/admin/css/customizer-controls-rtl.css
r10475 r11587 1 1 .customize-control-range output { 2 background-color: # FFF;3 border: 1px solid # DDD;4 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07);2 background-color: #fff; 3 border: 1px solid #ddd; 4 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07); 5 5 float: right; 6 6 margin-left: 10px; -
trunk/src/bp-core/admin/css/customizer-controls.css
r10475 r11587 1 1 .customize-control-range output { 2 background-color: # FFF;3 border: 1px solid # DDD;4 box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07);2 background-color: #fff; 3 border: 1px solid #ddd; 4 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07); 5 5 float: left; 6 6 margin-right: 10px; -
trunk/src/bp-core/css/admin-bar-rtl.css
r11248 r11587 17 17 right: 0; 18 18 } 19 19 20 #wpadminbar .quicklinks li#wp-admin-bar-group-admin-with-avatar ul ul { 20 21 right: 0; … … 31 32 padding: 2px 5px; 32 33 font-size: 10px; 33 font-weight: bold;34 font-weight: 700; 34 35 -moz-border-radius: 10px; 35 36 -khtml-border-radius: 10px; … … 41 42 background: #ddd; 42 43 color: #333; 43 margin: 0 44 margin: 0; 44 45 } 45 46 … … 50 51 51 52 #wpadminbar .quicklinks li#wp-admin-bar-bp-notifications > a { 52 padding: 0 .5em;53 padding: 0 0.5em; 53 54 } 54 55 … … 66 67 67 68 @media screen and (max-width: 600px) { 69 68 70 #wpadminbar .wp-admin-bar-arrow-right { 69 71 display: block; -
trunk/src/bp-core/css/admin-bar.css
r11248 r11587 17 17 left: 0; 18 18 } 19 19 20 #wpadminbar .quicklinks li#wp-admin-bar-group-admin-with-avatar ul ul { 20 21 left: 0; … … 31 32 padding: 2px 5px; 32 33 font-size: 10px; 33 font-weight: bold;34 font-weight: 700; 34 35 -moz-border-radius: 10px; 35 36 -khtml-border-radius: 10px; … … 41 42 background: #ddd; 42 43 color: #333; 43 margin: 0 44 margin: 0; 44 45 } 45 46 … … 50 51 51 52 #wpadminbar .quicklinks li#wp-admin-bar-bp-notifications > a { 52 padding: 0 .5em;53 padding: 0 0.5em; 53 54 } 54 55 … … 66 67 67 68 @media screen and (max-width: 600px) { 69 68 70 #wpadminbar .wp-admin-bar-arrow-right { 69 71 display: block; -
trunk/src/bp-core/css/avatar-rtl.css
r11579 r11587 31 31 float: left; 32 32 height: 22px; 33 line-height: 2 em;33 line-height: 2; 34 34 margin: 6px 0 0 10px; 35 35 margin-bottom: 2px; … … 56 56 } 57 57 58 /* stylelint-disable selector-id-pattern */ 58 59 #buddypress p.warning, 59 60 body.users_page_bp-profile-edit.modal-open #TB_ajaxContent p.warning, … … 67 68 padding: 10px 15px; 68 69 } 70 /* stylelint-enable */ 69 71 70 72 div.bp-avatar-nav { 71 73 background: transparent; 72 74 clear: both; 73 margin: 10px 0 10px;75 margin: 10px 0; 74 76 overflow: hidden; 75 77 } … … 118 120 background: none; 119 121 color: inherit; 120 font-weight: bold;122 font-weight: 700; 121 123 opacity: 0.8; 122 124 outline: 0; … … 181 183 182 184 #avatar-to-crop { 183 margin: 0 auto 20px 185 margin: 0 auto 20px; 184 186 text-align: right; 185 187 } … … 221 223 222 224 @media screen and (min-width: 801px) { 225 223 226 #bp-webcam-avatar #avatar-to-crop { 224 227 max-width: 64%; … … 233 236 #bp-webcam-avatar #avatar-crop-actions { 234 237 float: right; 235 margin: 0 0 20px 0;238 margin: 0 0 20px; 236 239 width: 50%; 237 240 } … … 298 301 299 302 .bp-avatar .item { 300 overflow: hidden;303 overflow: hidden; 301 304 } 302 305 … … 323 326 } 324 327 325 #bp-webcam-avatar .avatar-crop-management #avatar-crop-actions 328 #bp-webcam-avatar .avatar-crop-management #avatar-crop-actions { 326 329 width: auto; 327 330 } … … 348 351 } 349 352 353 350 354 /** Admin Profile **/ 355 /* stylelint-disable selector-id-pattern */ 351 356 body.users_page_bp-profile-edit.modal-open #TB_ajaxContent, 352 357 body.profile_page_bp-profile-edit.modal-open #TB_ajaxContent { … … 367 372 margin: 0; 368 373 } 374 369 375 .wp-admin #TB_window .bp-avatar #bp-webcam-avatar #avatar-to-crop { 370 376 margin-bottom: 20px; 371 377 } 378 372 379 @media screen and (min-width: 783px) { 373 380 … … 384 391 385 392 .wp-admin #TB_window .bp-avatar #avatar-to-crop video { 386 387 393 width: 100%; 394 } 388 395 389 396 .wp-admin #TB_window .bp-avatar .avatar-crop-management a.button { … … 393 400 394 401 @media screen and (min-width: 810px) { 402 395 403 .wp-admin #TB_window .bp-avatar #bp-webcam-avatar #avatar-to-crop { 396 404 max-width: none; … … 403 411 } 404 412 } 413 /* stylelint-enable */ -
trunk/src/bp-core/css/avatar.css
r11579 r11587 31 31 float: right; 32 32 height: 22px; 33 line-height: 2 em;33 line-height: 2; 34 34 margin: 6px 10px 0 0; 35 35 margin-bottom: 2px; … … 56 56 } 57 57 58 /* stylelint-disable selector-id-pattern */ 58 59 #buddypress p.warning, 59 60 body.users_page_bp-profile-edit.modal-open #TB_ajaxContent p.warning, … … 67 68 padding: 10px 15px; 68 69 } 70 /* stylelint-enable */ 69 71 70 72 div.bp-avatar-nav { 71 73 background: transparent; 72 74 clear: both; 73 margin: 10px 0 10px;75 margin: 10px 0; 74 76 overflow: hidden; 75 77 } … … 118 120 background: none; 119 121 color: inherit; 120 font-weight: bold;122 font-weight: 700; 121 123 opacity: 0.8; 122 124 outline: 0; … … 181 183 182 184 #avatar-to-crop { 183 margin: 0 auto 20px 185 margin: 0 auto 20px; 184 186 text-align: left; 185 187 } … … 221 223 222 224 @media screen and (min-width: 801px) { 225 223 226 #bp-webcam-avatar #avatar-to-crop { 224 227 max-width: 64%; … … 233 236 #bp-webcam-avatar #avatar-crop-actions { 234 237 float: left; 235 margin: 0 0 20px 0;238 margin: 0 0 20px; 236 239 width: 50%; 237 240 } … … 298 301 299 302 .bp-avatar .item { 300 overflow: hidden;303 overflow: hidden; 301 304 } 302 305 … … 323 326 } 324 327 325 #bp-webcam-avatar .avatar-crop-management #avatar-crop-actions 328 #bp-webcam-avatar .avatar-crop-management #avatar-crop-actions { 326 329 width: auto; 327 330 } … … 348 351 } 349 352 353 350 354 /** Admin Profile **/ 355 /* stylelint-disable selector-id-pattern */ 351 356 body.users_page_bp-profile-edit.modal-open #TB_ajaxContent, 352 357 body.profile_page_bp-profile-edit.modal-open #TB_ajaxContent { … … 367 372 margin: 0; 368 373 } 374 369 375 .wp-admin #TB_window .bp-avatar #bp-webcam-avatar #avatar-to-crop { 370 376 margin-bottom: 20px; 371 377 } 378 372 379 @media screen and (min-width: 783px) { 373 380 … … 384 391 385 392 .wp-admin #TB_window .bp-avatar #avatar-to-crop video { 386 387 393 width: 100%; 394 } 388 395 389 396 .wp-admin #TB_window .bp-avatar .avatar-crop-management a.button { … … 393 400 394 401 @media screen and (min-width: 810px) { 402 395 403 .wp-admin #TB_window .bp-avatar #bp-webcam-avatar #avatar-to-crop { 396 404 max-width: none; … … 403 411 } 404 412 } 413 /* stylelint-enable */ -
trunk/src/bp-core/css/buddybar-rtl.css
r10808 r11587 2 2 padding-top: 25px !important; 3 3 } 4 4 5 #wp-admin-bar { 5 6 position: fixed; … … 11 12 z-index: 9999; 12 13 } 14 13 15 #wp-admin-bar .padder { 14 16 position: relative; … … 16 18 width: 100%; 17 19 margin: 0 auto; 18 background: url( '../images/60pc_black.png');20 background: url(../images/60pc_black.png); 19 21 height: 25px; 20 22 } 23 21 24 body#bp-default #wp-admin-bar .padder { 22 25 max-width: 1250px; 23 26 } 27 24 28 #wp-admin-bar * { 25 29 z-index: 999; 26 30 } 31 27 32 #wp-admin-bar div#admin-bar-logo { 28 33 position: absolute; … … 30 35 right: 10px; 31 36 } 37 32 38 #wp-admin-bar a img { 33 39 border: none; 34 40 } 41 35 42 #wp-admin-bar li { 36 43 list-style: none; 37 44 margin: 0; 38 45 padding: 0; 39 line-height: 1 00%;46 line-height: 1; 40 47 text-align: right; 41 48 } 49 42 50 #wp-admin-bar li a { 43 padding: 7px 15px 7px 15px;51 padding: 7px 15px; 44 52 color: #eee; 45 53 text-decoration: none; 46 54 font-size: 11px; 47 55 } 56 48 57 #wp-admin-bar li.alt { 49 58 border: none; 50 59 } 60 51 61 #wp-admin-bar li.no-arrow a { 52 62 padding-left: 15px; 53 63 } 64 54 65 #wp-admin-bar ul li ul li a span { 55 66 display: none; 56 67 } 68 57 69 #wp-admin-bar li:hover, 58 70 #wp-admin-bar li.hover { 59 71 position: static; 60 72 } 73 61 74 #admin-bar-logo { 62 75 float: right; 63 font-weight: bold;76 font-weight: 700; 64 77 font-size: 11px; 65 78 padding: 5px 8px; … … 68 81 color: #fff; 69 82 } 83 70 84 body#bp-default #admin-bar-logo { 71 85 padding: 2px 8px; … … 87 101 float: right; 88 102 position: relative; 89 background: url( '../images/admin-menu-arrow.gif') 88% 53% no-repeat;103 background: url(../images/admin-menu-arrow.gif) 88% 53% no-repeat; 90 104 padding-left: 11px; 91 105 } 106 92 107 #wp-admin-bar ul li.no-arrow { 93 108 background: none; 94 109 padding-left: 0; 95 110 } 111 96 112 #wp-admin-bar ul li ul li { 97 113 background-image: none; 98 114 } 115 99 116 #wp-admin-bar ul li.align-right { 100 117 position: absolute; 101 118 left: 0; 102 119 } 120 103 121 #wp-admin-bar ul li a { 104 122 display: block; 105 123 } 124 106 125 #wp-admin-bar ul.main-nav li:hover, 107 126 #wp-admin-bar ul.main-nav li.sfhover, … … 127 146 -webkit-border-top-left-radius: 0; 128 147 } 148 129 149 #wp-admin-bar ul li > ul { 130 150 border-top: none; 131 151 } 152 132 153 #wp-admin-bar ul li ul a { 133 154 color: #eee; 134 155 } 156 135 157 #wp-admin-bar ul li ul li { 136 158 float: right; … … 138 160 margin: 0; 139 161 } 162 140 163 #wp-admin-bar ul li ul li:hover a { 141 164 color: #fff; 142 165 } 166 143 167 #wp-admin-bar ul li div.admin-bar-clear { 144 168 clear: both; 145 169 } 170 146 171 #wp-admin-bar ul.main-nav li ul li:hover, 147 172 #wp-admin-bar ul.main-nav li ul li.sfhover, … … 156 181 -webkit-border-radius: 3px; 157 182 } 183 158 184 #wp-admin-bar ul li ul li:hover ul li a { 159 185 color: #eee; 160 186 } 187 161 188 #wp-admin-bar ul li ul li ul li:hover a { 162 189 color: #fff; 163 190 } 191 164 192 #wp-admin-bar ul li:hover ul, 165 193 #wp-admin-bar ul li ul li:hover ul, … … 168 196 right: auto; 169 197 } 198 170 199 #wp-admin-bar ul li.align-right:hover ul { 171 200 left: 0; 172 201 } 202 173 203 #wp-admin-bar ul li:hover ul ul, 174 204 #wp-admin-bar li.sfhover ul li ul { … … 181 211 margin-left: 8px; 182 212 } 213 183 214 #wp-admin-bar span.activity { 184 215 display: block; … … 186 217 padding: 0; 187 218 } 219 188 220 #wp-admin-bar ul.author-list li a { 189 221 height: 17px; 190 222 } 223 191 224 #wp-admin-bar ul li#bp-adminbar-notifications-menu a span { 192 225 padding: 0 6px; … … 198 231 border-radius: 3px; 199 232 } 233 200 234 #wp-admin-bar-user-info img.avatar { 201 235 height: 64px; -
trunk/src/bp-core/css/buddybar.css
r9819 r11587 2 2 padding-top: 25px !important; 3 3 } 4 4 5 #wp-admin-bar { 5 6 position: fixed; … … 11 12 z-index: 9999; 12 13 } 14 13 15 #wp-admin-bar .padder { 14 16 position: relative; … … 16 18 width: 100%; 17 19 margin: 0 auto; 18 background: url( '../images/60pc_black.png');20 background: url(../images/60pc_black.png); 19 21 height: 25px; 20 22 } 23 21 24 body#bp-default #wp-admin-bar .padder { 22 25 max-width: 1250px; 23 26 } 27 24 28 #wp-admin-bar * { 25 29 z-index: 999; 26 30 } 31 27 32 #wp-admin-bar div#admin-bar-logo { 28 33 position: absolute; … … 30 35 left: 10px; 31 36 } 37 32 38 #wp-admin-bar a img { 33 39 border: none; 34 40 } 41 35 42 #wp-admin-bar li { 36 43 list-style: none; 37 44 margin: 0; 38 45 padding: 0; 39 line-height: 1 00%;46 line-height: 1; 40 47 text-align: left; 41 48 } 49 42 50 #wp-admin-bar li a { 43 padding: 7px 15px 7px 15px;51 padding: 7px 15px; 44 52 color: #eee; 45 53 text-decoration: none; 46 54 font-size: 11px; 47 55 } 56 48 57 #wp-admin-bar li.alt { 49 58 border: none; 50 59 } 60 51 61 #wp-admin-bar li.no-arrow a { 52 62 padding-right: 15px; 53 63 } 64 54 65 #wp-admin-bar ul li ul li a span { 55 66 display: none; 56 67 } 68 57 69 #wp-admin-bar li:hover, 58 70 #wp-admin-bar li.hover { 59 71 position: static; 60 72 } 73 61 74 #admin-bar-logo { 62 75 float: left; 63 font-weight: bold;76 font-weight: 700; 64 77 font-size: 11px; 65 78 padding: 5px 8px; … … 68 81 color: #fff; 69 82 } 83 70 84 body#bp-default #admin-bar-logo { 71 85 padding: 2px 8px; … … 87 101 float: left; 88 102 position: relative; 89 background: url( '../images/admin-menu-arrow.gif') 88% 53% no-repeat;103 background: url(../images/admin-menu-arrow.gif) 88% 53% no-repeat; 90 104 padding-right: 11px; 91 105 } 106 92 107 #wp-admin-bar ul li.no-arrow { 93 108 background: none; 94 109 padding-right: 0; 95 110 } 111 96 112 #wp-admin-bar ul li ul li { 97 113 background-image: none; 98 114 } 115 99 116 #wp-admin-bar ul li.align-right { 100 117 position: absolute; 101 118 right: 0; 102 119 } 120 103 121 #wp-admin-bar ul li a { 104 122 display: block; 105 123 } 124 106 125 #wp-admin-bar ul.main-nav li:hover, 107 126 #wp-admin-bar ul.main-nav li.sfhover, … … 127 146 -webkit-border-top-right-radius: 0; 128 147 } 148 129 149 #wp-admin-bar ul li > ul { 130 150 border-top: none; 131 151 } 152 132 153 #wp-admin-bar ul li ul a { 133 154 color: #eee; 134 155 } 156 135 157 #wp-admin-bar ul li ul li { 136 158 float: left; … … 138 160 margin: 0; 139 161 } 162 140 163 #wp-admin-bar ul li ul li:hover a { 141 164 color: #fff; 142 165 } 166 143 167 #wp-admin-bar ul li div.admin-bar-clear { 144 168 clear: both; 145 169 } 170 146 171 #wp-admin-bar ul.main-nav li ul li:hover, 147 172 #wp-admin-bar ul.main-nav li ul li.sfhover, … … 156 181 -webkit-border-radius: 3px; 157 182 } 183 158 184 #wp-admin-bar ul li ul li:hover ul li a { 159 185 color: #eee; 160 186 } 187 161 188 #wp-admin-bar ul li ul li ul li:hover a { 162 189 color: #fff; 163 190 } 191 164 192 #wp-admin-bar ul li:hover ul, 165 193 #wp-admin-bar ul li ul li:hover ul, … … 168 196 left: auto; 169 197 } 198 170 199 #wp-admin-bar ul li.align-right:hover ul { 171 200 right: 0; 172 201 } 202 173 203 #wp-admin-bar ul li:hover ul ul, 174 204 #wp-admin-bar li.sfhover ul li ul { … … 181 211 margin-right: 8px; 182 212 } 213 183 214 #wp-admin-bar span.activity { 184 215 display: block; … … 186 217 padding: 0; 187 218 } 219 188 220 #wp-admin-bar ul.author-list li a { 189 221 height: 17px; 190 222 } 223 191 224 #wp-admin-bar ul li#bp-adminbar-notifications-menu a span { 192 225 padding: 0 6px; … … 198 231 border-radius: 3px; 199 232 } 233 200 234 #wp-admin-bar-user-info img.avatar { 201 235 height: 64px; -
trunk/src/bp-groups/admin/css/admin-rtl.css
r11556 r11587 13 13 margin-top: 1px; 14 14 } 15 15 16 #bp-groups-edit-form input { 16 17 outline: medium none; 17 18 } 19 18 20 #bp-groups-edit-form input#bp-groups-name { 19 21 font-size: 1.7em; … … 21 23 margin-bottom: 6px; 22 24 } 25 23 26 #bp-groups-edit-form input#bp-groups-new-members { 24 27 border: 1px solid #e5e5e5; … … 26 29 width: 100%; 27 30 } 31 28 32 #bp-groups-new-members-list { 29 33 margin: 0; 30 34 } 35 31 36 .bp-groups-settings-section { 32 37 margin-top: 10px; 33 line-height: 2 em;38 line-height: 2; 34 39 } 40 35 41 .bp-groups-settings-section legend { 36 42 margin-top: 10px; 37 font-weight: bold;43 font-weight: 700; 38 44 } 45 39 46 .bp-groups-settings-section label { 40 47 clear: right; … … 43 50 vertical-align: middle; 44 51 } 52 45 53 #bp-groups-permalink-box { 46 54 line-height: 24px; 47 55 color: #666; 48 56 } 57 49 58 #bp-groups-permalink { 50 59 margin-left: 24px; 51 60 } 61 52 62 .bp-groups-member-type { 53 63 position: relative; 54 64 } 65 55 66 .bp-groups-member-type > h4 { 56 margin-bottom: .5em;67 margin-bottom: 0.5em; 57 68 } 69 58 70 ul.bp-group-delete-list { 59 71 list-style-type: disc; 60 72 margin: 4px 26px; 61 73 } 74 62 75 /* 63 76 * Members Pagination … … 68 81 width: 100%; 69 82 } 83 70 84 .bp-group-admin-pagination.table-top { 71 85 top: 0; 72 86 } 87 73 88 .bp-group-admin-pagination.table-bottom { 74 89 bottom: 0; 75 90 } 91 76 92 .bp-group-admin-pagination-viewing { 77 93 color: #777; … … 79 95 font-style: italic; 80 96 } 97 81 98 .bp-group-admin-pagination-links { 82 99 white-space: nowrap; 83 100 padding-right: 15px; 84 101 } 102 85 103 .bp-group-admin-pagination-links .page-numbers { 86 104 display: inline-block; … … 94 112 text-decoration: none; 95 113 } 114 96 115 .bp-group-admin-pagination-links a.page-numbers:hover { 97 116 text-decoration: underline; 98 117 } 118 99 119 .bp-group-admin-pagination-links .page-numbers.current, 100 120 .bp-group-admin-pagination-links .page-numbers.dots { … … 111 131 padding-left: 20px; 112 132 } 133 113 134 table.bp-group-members .uname-column { 114 135 width: 70%; 115 136 } 137 116 138 table.bp-group-members .urole-column { 117 139 padding-right: 20px; … … 120 142 121 143 @media screen and (max-width: 782px) { 144 122 145 .bp-groups-settings-section label { 123 146 margin: 0.25em 0; -
trunk/src/bp-groups/admin/css/admin.css
r11556 r11587 13 13 margin-top: 1px; 14 14 } 15 15 16 #bp-groups-edit-form input { 16 17 outline: medium none; 17 18 } 19 18 20 #bp-groups-edit-form input#bp-groups-name { 19 21 font-size: 1.7em; … … 21 23 margin-bottom: 6px; 22 24 } 25 23 26 #bp-groups-edit-form input#bp-groups-new-members { 24 27 border: 1px solid #e5e5e5; … … 26 29 width: 100%; 27 30 } 31 28 32 #bp-groups-new-members-list { 29 33 margin: 0; 30 34 } 35 31 36 .bp-groups-settings-section { 32 37 margin-top: 10px; 33 line-height: 2 em;38 line-height: 2; 34 39 } 40 35 41 .bp-groups-settings-section legend { 36 42 margin-top: 10px; 37 font-weight: bold;43 font-weight: 700; 38 44 } 45 39 46 .bp-groups-settings-section label { 40 47 clear: left; … … 43 50 vertical-align: middle; 44 51 } 52 45 53 #bp-groups-permalink-box { 46 54 line-height: 24px; 47 55 color: #666; 48 56 } 57 49 58 #bp-groups-permalink { 50 59 margin-right: 24px; 51 60 } 61 52 62 .bp-groups-member-type { 53 63 position: relative; 54 64 } 65 55 66 .bp-groups-member-type > h4 { 56 margin-bottom: .5em;67 margin-bottom: 0.5em; 57 68 } 69 58 70 ul.bp-group-delete-list { 59 71 list-style-type: disc; 60 72 margin: 4px 26px; 61 73 } 74 62 75 /* 63 76 * Members Pagination … … 68 81 width: 100%; 69 82 } 83 70 84 .bp-group-admin-pagination.table-top { 71 85 top: 0; 72 86 } 87 73 88 .bp-group-admin-pagination.table-bottom { 74 89 bottom: 0; 75 90 } 91 76 92 .bp-group-admin-pagination-viewing { 77 93 color: #777; … … 79 95 font-style: italic; 80 96 } 97 81 98 .bp-group-admin-pagination-links { 82 99 white-space: nowrap; 83 100 padding-left: 15px; 84 101 } 102 85 103 .bp-group-admin-pagination-links .page-numbers { 86 104 display: inline-block; … … 94 112 text-decoration: none; 95 113 } 114 96 115 .bp-group-admin-pagination-links a.page-numbers:hover { 97 116 text-decoration: underline; 98 117 } 118 99 119 .bp-group-admin-pagination-links .page-numbers.current, 100 120 .bp-group-admin-pagination-links .page-numbers.dots { … … 111 131 padding-right: 20px; 112 132 } 133 113 134 table.bp-group-members .uname-column { 114 135 width: 70%; 115 136 } 137 116 138 table.bp-group-members .urole-column { 117 139 padding-left: 20px; … … 120 142 121 143 @media screen and (max-width: 782px) { 144 122 145 .bp-groups-settings-section label { 123 146 margin: 0.25em 0; -
trunk/src/bp-members/admin/css/admin-rtl.css
r11247 r11587 9 9 10 10 div#profile-page.wrap form#your-profile h3:first-of-type { 11 margin-top: 5em;11 margin-top: 5em; 12 12 } 13 13 … … 25 25 margin-bottom: 0; 26 26 } 27 27 28 div#community-profile-page li.bp-members-profile-stats:before, 28 29 div#community-profile-page li.bp-friends-profile-stats:before, … … 31 32 div#community-profile-page a.bp-xprofile-avatar-user-admin:before, 32 33 div#community-profile-page a.bp-xprofile-avatar-user-edit:before { 33 font: normal 20px/1 'dashicons';34 font: 400 20px/1 dashicons; 34 35 speak: none; 35 36 display: inline-block; … … 62 63 63 64 div#community-profile-page a.bp-xprofile-avatar-user-admin:before { 64 content: "\f182";65 content: "\f182"; 65 66 } 66 67 … … 70 71 71 72 div#community-profile-page div#bp_xprofile_user_admin_avatar div.avatar { 72 width: 150px;73 margin: 0 auto;73 width: 150px; 74 margin: 0 auto; 74 75 } 75 76 … … 80 81 81 82 div#community-profile-page div#bp_xprofile_user_admin_avatar a { 82 display: block;83 margin: 1em 0;83 display: block; 84 margin: 1em 0; 84 85 } 85 86 86 87 div#community-profile-page p.not-activated { 87 margin: 1em 1em 0;88 color: red;88 margin: 1em 1em 0; 89 color: #f00; 89 90 } 90 91 … … 101 102 background: none; 102 103 } 104 103 105 .bp-profile-field { 104 106 border-bottom: dotted 1px #ccc; … … 107 109 padding: 10px; 108 110 } 111 109 112 .bp-profile-field:last-child { 110 113 border-bottom: 0; 111 114 } 115 112 116 .bp-profile-field p { 113 117 font-size: 14px; … … 128 132 vertical-align: top; 129 133 } 134 130 135 .bp-profile-field .description { /* description also sits in the right side column */ 131 136 margin: 10px 200px 12px 0; 132 137 text-align: right; 133 138 } 139 134 140 .clear-value { /* 'clear value' option also sits in the right side column */ 135 141 display: block; … … 137 143 margin-right: 200px; 138 144 } 145 139 146 .field_type_checkbox .checkbox > label + label { /* force checkboxes to new lines, in the right side column */ 140 147 display: block; … … 142 149 width: auto; 143 150 } 151 144 152 .field_type_radio .radio .input-options label, 145 153 .field_type_checkbox .checkbox .input-options label { 154 146 155 /* force checkboxes and radio buttons to new lines */ 147 156 display: block; 148 157 } 158 149 159 .field_type_checkbox .checkbox .input-options, 150 160 .field_type_datebox .datebox .input-options, 151 161 .field_type_radio .radio .input-options { 152 /* make the checkboxes, select menus, and radio buttons sit in the right side column */ 162 163 /* make the checkboxes, select menus, and radio buttons sit in the 164 right side column */ 153 165 display: inline-block; 154 166 } 167 155 168 .field-visibility-settings-notoggle, 156 169 .field-visibility-settings-toggle { /* visibility settings go in the left column */ … … 158 171 text-align: right; 159 172 } 173 160 174 .field-visibility-settings { /* visibility settings go in the left column */ 161 175 display: none; 162 176 margin-right: 200px; 163 177 } 178 164 179 .field-visibility-settings .button { /* visibility setting close button */ 165 180 margin-bottom: 15px; 166 181 } 182 167 183 #normal-sortables .field-visibility-settings legend { /* id required for css selector weight */ 168 184 font-size: 14px; 169 font-weight: 600;185 font-weight: 600; 170 186 } 171 187 … … 173 189 #your-profile .bp-profile-field .datebox legend, 174 190 #your-profile .bp-profile-field .radio legend { 175 float: right; /* Firefox will not apply display: inline-block to legends */191 float: right; /* Firefox will not apply display: inline-block to legends */ 176 192 font-size: 14px; 177 193 font-weight: 600; 178 line-height: 1.4 em;194 line-height: 1.4; 179 195 text-align: right; 180 196 vertical-align: middle; … … 192 208 193 209 @media screen and (max-width: 782px) { 210 194 211 #your-profile .bp-profile-field .checkbox legend, 195 212 #your-profile .bp-profile-field .datebox legend, … … 201 218 margin-bottom: 12px; 202 219 } 220 203 221 .bp-profile-field .checkbox label, 204 222 .bp-profile-field .radio label { 205 line-height: 1.4 em;223 line-height: 1.4; 206 224 margin-bottom: 12px; 207 225 vertical-align: middle; 208 226 } 227 209 228 .bp-profile-field .checkbox input[type="checkbox"], 210 229 .bp-profile-field .radio input[type="radio"] { 211 230 vertical-align: top; 212 231 } 232 213 233 .bp-profile-field .clear-value, 214 234 .bp-profile-field .description, … … 226 246 margin-right: 50px; 227 247 } 248 228 249 .field-visibility-settings { 229 250 margin-right: 100px; 230 251 } 252 231 253 #your-profile .field_multiselectbox select { 232 254 height: auto; … … 235 257 236 258 @media screen and (max-width: 480px) { 259 237 260 .bp-profile-field .clear-value, 238 261 .bp-profile-field .description, … … 249 272 margin-right: 0; 250 273 } 274 251 275 .field-visibility-settings { 252 276 margin-right: 50px; -
trunk/src/bp-members/admin/css/admin.css
r11247 r11587 9 9 10 10 div#profile-page.wrap form#your-profile h3:first-of-type { 11 margin-top: 5em;11 margin-top: 5em; 12 12 } 13 13 … … 25 25 margin-bottom: 0; 26 26 } 27 27 28 div#community-profile-page li.bp-members-profile-stats:before, 28 29 div#community-profile-page li.bp-friends-profile-stats:before, … … 31 32 div#community-profile-page a.bp-xprofile-avatar-user-admin:before, 32 33 div#community-profile-page a.bp-xprofile-avatar-user-edit:before { 33 font: normal 20px/1 'dashicons';34 font: 400 20px/1 dashicons; 34 35 speak: none; 35 36 display: inline-block; … … 62 63 63 64 div#community-profile-page a.bp-xprofile-avatar-user-admin:before { 64 content: "\f182";65 content: "\f182"; 65 66 } 66 67 … … 70 71 71 72 div#community-profile-page div#bp_xprofile_user_admin_avatar div.avatar { 72 width: 150px;73 margin: 0 auto;73 width: 150px; 74 margin: 0 auto; 74 75 } 75 76 … … 80 81 81 82 div#community-profile-page div#bp_xprofile_user_admin_avatar a { 82 display: block;83 margin: 1em 0;83 display: block; 84 margin: 1em 0; 84 85 } 85 86 86 87 div#community-profile-page p.not-activated { 87 margin: 1em 1em 0;88 color: red;88 margin: 1em 1em 0; 89 color: #f00; 89 90 } 90 91 … … 101 102 background: none; 102 103 } 104 103 105 .bp-profile-field { 104 106 border-bottom: dotted 1px #ccc; … … 107 109 padding: 10px; 108 110 } 111 109 112 .bp-profile-field:last-child { 110 113 border-bottom: 0; 111 114 } 115 112 116 .bp-profile-field p { 113 117 font-size: 14px; … … 128 132 vertical-align: top; 129 133 } 134 130 135 .bp-profile-field .description { /* description also sits in the right side column */ 131 136 margin: 10px 0 12px 200px; 132 137 text-align: left; 133 138 } 139 134 140 .clear-value { /* 'clear value' option also sits in the right side column */ 135 141 display: block; … … 137 143 margin-left: 200px; 138 144 } 145 139 146 .field_type_checkbox .checkbox > label + label { /* force checkboxes to new lines, in the right side column */ 140 147 display: block; … … 142 149 width: auto; 143 150 } 151 144 152 .field_type_radio .radio .input-options label, 145 153 .field_type_checkbox .checkbox .input-options label { 154 146 155 /* force checkboxes and radio buttons to new lines */ 147 156 display: block; 148 157 } 158 149 159 .field_type_checkbox .checkbox .input-options, 150 160 .field_type_datebox .datebox .input-options, 151 161 .field_type_radio .radio .input-options { 152 /* make the checkboxes, select menus, and radio buttons sit in the right side column */ 162 163 /* make the checkboxes, select menus, and radio buttons sit in the 164 right side column */ 153 165 display: inline-block; 154 166 } 167 155 168 .field-visibility-settings-notoggle, 156 169 .field-visibility-settings-toggle { /* visibility settings go in the left column */ … … 158 171 text-align: left; 159 172 } 173 160 174 .field-visibility-settings { /* visibility settings go in the left column */ 161 175 display: none; 162 176 margin-left: 200px; 163 177 } 178 164 179 .field-visibility-settings .button { /* visibility setting close button */ 165 180 margin-bottom: 15px; 166 181 } 182 167 183 #normal-sortables .field-visibility-settings legend { /* id required for css selector weight */ 168 184 font-size: 14px; 169 font-weight: 600;185 font-weight: 600; 170 186 } 171 187 … … 173 189 #your-profile .bp-profile-field .datebox legend, 174 190 #your-profile .bp-profile-field .radio legend { 175 float: left; /* Firefox will not apply display: inline-block to legends */191 float: left; /* Firefox will not apply display: inline-block to legends */ 176 192 font-size: 14px; 177 193 font-weight: 600; 178 line-height: 1.4 em;194 line-height: 1.4; 179 195 text-align: left; 180 196 vertical-align: middle; … … 192 208 193 209 @media screen and (max-width: 782px) { 210 194 211 #your-profile .bp-profile-field .checkbox legend, 195 212 #your-profile .bp-profile-field .datebox legend, … … 201 218 margin-bottom: 12px; 202 219 } 220 203 221 .bp-profile-field .checkbox label, 204 222 .bp-profile-field .radio label { 205 line-height: 1.4 em;223 line-height: 1.4; 206 224 margin-bottom: 12px; 207 225 vertical-align: middle; 208 226 } 227 209 228 .bp-profile-field .checkbox input[type="checkbox"], 210 229 .bp-profile-field .radio input[type="radio"] { 211 230 vertical-align: top; 212 231 } 232 213 233 .bp-profile-field .clear-value, 214 234 .bp-profile-field .description, … … 226 246 margin-left: 50px; 227 247 } 248 228 249 .field-visibility-settings { 229 250 margin-left: 100px; 230 251 } 252 231 253 #your-profile .field_multiselectbox select { 232 254 height: auto; … … 235 257 236 258 @media screen and (max-width: 480px) { 259 237 260 .bp-profile-field .clear-value, 238 261 .bp-profile-field .description, … … 249 272 margin-left: 0; 250 273 } 274 251 275 .field-visibility-settings { 252 276 margin-left: 50px; -
trunk/src/bp-messages/css/autocomplete/jquery.autocompletefb-rtl.css
r10808 r11587 1 1 .ac_results { 2 padding: 0 px;2 padding: 0; 3 3 overflow: hidden; 4 4 z-index: 99999; … … 14 14 border-bottom-left-radius: 3px; 15 15 } 16 .ac_results ul {17 width: 100%;18 list-style-position: outside;19 list-style: none;20 padding: 0;21 margin: 0;22 }23 16 24 .ac_results li { 25 margin: 0px; 26 padding: 5px 10px; 27 cursor: pointer; 28 display: block; 29 font-size: 1em; 30 line-height: 16px; 31 overflow: hidden; 32 } 33 .ac_results li img { 34 margin-left: 5px; 35 } 17 .ac_results ul { 18 width: 100%; 19 list-style: none; 20 list-style-position: outside; 21 padding: 0; 22 margin: 0; 23 } 24 25 .ac_results li { 26 margin: 0; 27 padding: 5px 10px; 28 cursor: pointer; 29 display: block; 30 font-size: 1em; 31 line-height: 16px; 32 overflow: hidden; 33 } 34 35 .ac_results li img { 36 margin-left: 5px; 37 } 36 38 37 39 .ac_odd { … … 45 47 46 48 ul.acfb-holder { 47 margin 48 height 49 height 49 margin: 0; 50 height: auto !important; 51 height: 1%; 50 52 overflow: hidden; 51 53 padding: 0; 52 54 list-style: none; 53 55 } 54 ul.acfb-holder li {55 float : right;56 margin : 0 0 4px 5px;57 list-style-type: none;58 }59 56 60 ul.acfb-holder li.friend-tab { 61 border-radius : 3px; 62 -moz-border-radius : 3px; 63 -webkit-border-radius : 3px; 64 border : 1px solid #ffe7c7; 65 padding : 2px 7px 2px; 66 background : #FFF9DF; 67 font-size: 1em; 68 } 69 li.friend-tab img.avatar { 70 border-width: 2px !important; 71 vertical-align: middle; 72 } 57 ul.acfb-holder li { 58 float: right; 59 margin: 0 0 4px 5px; 60 list-style-type: none; 61 } 73 62 74 li.friend-tab span.p { 75 padding-right: 5px; 76 font-size: 0.8em; 77 cursor: pointer; 78 } 63 ul.acfb-holder li.friend-tab { 64 border-radius: 3px; 65 -moz-border-radius: 3px; 66 -webkit-border-radius: 3px; 67 border: 1px solid #ffe7c7; 68 padding: 2px 7px; 69 background: #fff9df; 70 font-size: 1em; 71 } 79 72 80 input#send-to-input { width: 275px; } 73 li.friend-tab img.avatar { 74 border-width: 2px !important; 75 vertical-align: middle; 76 } 77 78 li.friend-tab span.p { 79 padding-right: 5px; 80 font-size: 0.8em; 81 cursor: pointer; 82 } 83 84 input#send-to-input { 85 width: 275px; 86 } -
trunk/src/bp-messages/css/autocomplete/jquery.autocompletefb.css
r9819 r11587 1 1 .ac_results { 2 padding: 0 px;2 padding: 0; 3 3 overflow: hidden; 4 4 z-index: 99999; … … 14 14 border-bottom-right-radius: 3px; 15 15 } 16 .ac_results ul {17 width: 100%;18 list-style-position: outside;19 list-style: none;20 padding: 0;21 margin: 0;22 }23 16 24 .ac_results li { 25 margin: 0px; 26 padding: 5px 10px; 27 cursor: pointer; 28 display: block; 29 font-size: 1em; 30 line-height: 16px; 31 overflow: hidden; 32 } 33 .ac_results li img { 34 margin-right: 5px; 35 } 17 .ac_results ul { 18 width: 100%; 19 list-style: none; 20 list-style-position: outside; 21 padding: 0; 22 margin: 0; 23 } 24 25 .ac_results li { 26 margin: 0; 27 padding: 5px 10px; 28 cursor: pointer; 29 display: block; 30 font-size: 1em; 31 line-height: 16px; 32 overflow: hidden; 33 } 34 35 .ac_results li img { 36 margin-right: 5px; 37 } 36 38 37 39 .ac_odd { … … 45 47 46 48 ul.acfb-holder { 47 margin 48 height 49 height 49 margin: 0; 50 height: auto !important; 51 height: 1%; 50 52 overflow: hidden; 51 53 padding: 0; 52 54 list-style: none; 53 55 } 54 ul.acfb-holder li {55 float : left;56 margin : 0 5px 4px 0;57 list-style-type: none;58 }59 56 60 ul.acfb-holder li.friend-tab { 61 border-radius : 3px; 62 -moz-border-radius : 3px; 63 -webkit-border-radius : 3px; 64 border : 1px solid #ffe7c7; 65 padding : 2px 7px 2px; 66 background : #FFF9DF; 67 font-size: 1em; 68 } 69 li.friend-tab img.avatar { 70 border-width: 2px !important; 71 vertical-align: middle; 72 } 57 ul.acfb-holder li { 58 float: left; 59 margin: 0 5px 4px 0; 60 list-style-type: none; 61 } 73 62 74 li.friend-tab span.p { 75 padding-left: 5px; 76 font-size: 0.8em; 77 cursor: pointer; 78 } 63 ul.acfb-holder li.friend-tab { 64 border-radius: 3px; 65 -moz-border-radius: 3px; 66 -webkit-border-radius: 3px; 67 border: 1px solid #ffe7c7; 68 padding: 2px 7px; 69 background: #fff9df; 70 font-size: 1em; 71 } 79 72 80 input#send-to-input { width: 275px; } 73 li.friend-tab img.avatar { 74 border-width: 2px !important; 75 vertical-align: middle; 76 } 77 78 li.friend-tab span.p { 79 padding-left: 5px; 80 font-size: 0.8em; 81 cursor: pointer; 82 } 83 84 input#send-to-input { 85 width: 275px; 86 } -
trunk/src/bp-templates/bp-legacy/css/buddypress-rtl.css
r11586 r11587 34 34 1 - Navigation 35 35 --------------------------------------------------------------*/ 36 36 37 /*-------------------------------------------------------------- 37 38 1.1 - Pagination … … 49 50 padding: 10px 0; 50 51 } 52 51 53 #buddypress div.pagination .pag-count { 52 54 float: right; 53 55 margin-right: 10px; 54 56 } 57 55 58 #buddypress div.pagination .pagination-links { 56 59 float: left; 57 60 margin-left: 10px; 58 61 } 62 59 63 #buddypress div.pagination .pagination-links span, 60 64 #buddypress div.pagination .pagination-links a { … … 62 66 padding: 0 5px; 63 67 } 68 64 69 #buddypress div.pagination .pagination-links a:hover { 65 font-weight: bold; 66 } 70 font-weight: 700; 71 } 72 67 73 #buddypress noscript div.pagination { 68 74 margin-bottom: 15px; 69 75 } 76 70 77 #buddypress #nav-above { 71 78 display: none; 72 79 } 80 73 81 #buddypress .paged #nav-above { 74 82 display: block; 75 83 } 84 76 85 /*-------------------------------------------------------------- 77 86 2 - WordPress 78 87 --------------------------------------------------------------*/ 88 79 89 /*-------------------------------------------------------------- 80 90 2.1 - Images … … 87 97 padding: 0 !important; 88 98 } 99 89 100 #buddypress .clear { 90 101 clear: right; … … 94 105 3.0 - BuddyPress 95 106 --------------------------------------------------------------*/ 107 96 108 /*-------------------------------------------------------------- 97 109 3.1 - Activity … … 109 121 padding: 0; 110 122 } 123 111 124 #buddypress .home-page form#whats-new-form { 112 125 border-bottom: none; 113 126 padding-bottom: 0; 114 127 } 128 115 129 #buddypress form#whats-new-form #whats-new-avatar { 116 130 float: right; 117 131 } 132 118 133 #buddypress form#whats-new-form #whats-new-content { 119 134 margin-right: 55px; 120 135 padding: 0 20px 20px 0; 121 136 } 137 122 138 #buddypress form#whats-new-form p.activity-greeting { 123 line-height: 0.5 em;139 line-height: 0.5; 124 140 margin-bottom: 15px; 125 141 margin-right: 75px; 126 142 } 143 127 144 #buddypress form#whats-new-form textarea { 128 145 background: #fff; … … 136 153 width: 100%; 137 154 } 155 138 156 body.no-js #buddypress form#whats-new-form textarea { 139 157 height: 50px; 140 158 } 159 141 160 #buddypress form#whats-new-form #whats-new-options select { 142 161 max-width: 200px; 143 162 margin-top: 12px; 144 163 } 164 145 165 #buddypress form#whats-new-form #whats-new-submit { 146 166 float: left; 147 167 margin-top: 12px; 148 168 } 169 149 170 #buddypress #whats-new-options:after { 150 171 clear: both; … … 152 173 display: table; 153 174 } 175 154 176 body.no-js #buddypress #whats-new-options { 155 177 height: auto; 156 178 } 179 157 180 #buddypress #whats-new:focus { 158 181 border-color: rgba(31, 179, 221, 0.9) !important; … … 168 191 list-style: none; 169 192 } 193 170 194 #buddypress .activity-list .activity-avatar { 171 195 float: right; 172 196 } 197 173 198 #buddypress ul.item-list.activity-list li.has-comments { 174 199 padding-bottom: 15px; 175 200 } 201 176 202 body.activity-permalink #buddypress ul.activity-list li.has-comments { 177 203 padding-bottom: 0; 178 204 } 205 179 206 #buddypress .activity-list li.mini { 180 207 font-size: 80%; 181 208 position: relative; 182 209 } 210 183 211 #buddypress .activity-list li.mini .activity-avatar img.avatar, 184 #buddypress .activity-list li.mini .activity-avatar img.FB_profile_pic { 212 #buddypress .activity-list li.mini .activity-avatar img.FB_profile_pic { /* stylelint-disable-line selector-class-pattern */ 185 213 height: 20px; 186 214 margin-right: 30px; 187 215 width: 20px; 188 216 } 217 189 218 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.avatar, 190 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.FB_profile_pic { 219 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.FB_profile_pic { /* stylelint-disable-line selector-class-pattern */ 191 220 height: auto; 192 221 margin-right: 0; 193 222 width: auto; 194 223 } 224 195 225 body.activity-permalink #buddypress .activity-list > li:first-child { 196 226 padding-top: 0; 197 227 } 228 198 229 #buddypress .activity-list li .activity-content { 199 230 position: relative; 200 231 } 232 201 233 #buddypress .activity-list li.mini .activity-content p { 202 234 margin: 0; 203 235 } 236 204 237 #buddypress .activity-list li.mini .activity-comments { 205 238 clear: both; 206 239 font-size: 120%; 207 240 } 241 208 242 body.activity-permalink #buddypress li.mini .activity-meta { 209 243 margin-top: 4px; 210 244 } 245 211 246 #buddypress .activity-list li .activity-inreplyto { 212 247 color: #767676; 213 248 font-size: 80%; 214 249 } 250 215 251 #buddypress .activity-list li .activity-inreplyto > p { 216 252 margin: 0; 217 253 display: inline; 218 254 } 255 219 256 #buddypress .activity-list li .activity-inreplyto blockquote, 220 257 #buddypress .activity-list li .activity-inreplyto div.activity-inner { … … 226 263 padding: 0; 227 264 } 265 228 266 #buddypress .activity-list .activity-content { 229 267 margin: 0 70px 0 0; 230 268 } 269 231 270 body.activity-permalink #buddypress .activity-list li .activity-content { 232 271 border: none; 233 272 font-size: 100%; 234 line-height: 1 50%;273 line-height: 1.5; 235 274 margin-right: 170px; 236 275 margin-left: 0; 237 276 padding: 0; 238 277 } 278 239 279 body.activity-permalink #buddypress .activity-list li .activity-header > p { 240 280 margin: 0; 241 padding: 5px 0 0 0; 242 } 281 padding: 5px 0 0; 282 } 283 243 284 #buddypress .activity-list .activity-content .activity-header, 244 285 #buddypress .activity-list .activity-content .comment-header { 245 286 color: #767676; 246 line-height: 220%; 247 } 287 line-height: 2.2; 288 } 289 248 290 #buddypress .activity-header { 249 291 margin-left: 20px; 250 292 } 293 251 294 #buddypress .activity-header a, 252 295 #buddypress .comment-meta a, … … 254 297 text-decoration: none; 255 298 } 299 256 300 #buddypress .activity-list .activity-content .activity-header img.avatar { 257 301 float: none !important; 258 302 margin: 0 0 -8px 5px !important; 259 303 } 304 260 305 #buddypress a.bp-secondary-action, 261 306 #buddypress span.highlight { … … 265 310 text-decoration: none; 266 311 } 312 267 313 #buddypress .activity-list .activity-content .activity-inner, 268 314 #buddypress .activity-list .activity-content blockquote { … … 270 316 overflow: hidden; 271 317 } 318 272 319 #buddypress .activity-list li.new_forum_post .activity-content .activity-inner, 273 320 #buddypress .activity-list li.new_forum_topic .activity-content .activity-inner { 274 border-right: 2px solid # EAEAEA;321 border-right: 2px solid #eaeaea; 275 322 margin-right: 5px; 276 323 padding-right: 10px; 277 324 } 325 278 326 body.activity-permalink #buddypress .activity-content .activity-inner, 279 327 body.activity-permalink #buddypress .activity-content blockquote { … … 281 329 margin-top: 5px; 282 330 } 331 283 332 #buddypress .activity-inner > p { 284 333 word-wrap: break-word; 285 334 } 335 286 336 #buddypress .activity-inner > .activity-inner { 287 337 margin: 0; 288 338 } 339 289 340 #buddypress .activity-inner > blockquote { 290 341 margin: 0; 291 342 } 343 292 344 #buddypress .activity-list .activity-content img.thumbnail { 293 345 border: 2px solid #eee; … … 295 347 margin: 0 0 5px 10px; 296 348 } 349 297 350 #buddypress .activity-read-more { 298 351 margin-right: 1em; 299 352 white-space: nowrap; 300 353 } 354 301 355 #buddypress .activity-list li.load-more, 302 356 #buddypress .activity-list li.load-newest { … … 307 361 text-align: center; 308 362 } 363 309 364 #buddypress .activity-list li.load-more a, 310 365 #buddypress .activity-list li.load-newest a { 311 color: #4 D4D4D;366 color: #4d4d4d; 312 367 } 313 368 … … 319 374 margin: 18px 0 0; 320 375 } 376 321 377 body.activity-permalink #buddypress div.activity-meta { 322 378 margin-bottom: 6px; 323 379 } 380 324 381 #buddypress div.activity-meta a { 325 382 padding: 4px 8px; 326 383 } 384 327 385 #buddypress a.activity-time-since { 328 386 color: #767676; 329 387 text-decoration: none; 330 388 } 389 331 390 #buddypress a.activity-time-since:hover { 332 391 color: #767676; 333 392 text-decoration: underline; 334 393 } 394 335 395 #buddypress a.bp-primary-action, 336 396 #buddypress #reply-title small a { … … 339 399 text-decoration: none; 340 400 } 401 341 402 #buddypress a.bp-primary-action span, 342 403 #buddypress #reply-title small a span { … … 347 408 padding: 0 5px; 348 409 } 410 349 411 #buddypress a.bp-primary-action:hover span, 350 412 #buddypress #reply-title small a:hover span { … … 352 414 color: #fff; 353 415 } 416 354 417 #buddypress div.activity-comments { 355 418 margin: 0 70px 0 0; … … 359 422 clear: both; 360 423 } 424 361 425 body.activity-permalink #buddypress div.activity-comments { 362 426 background: none; … … 364 428 width: auto; 365 429 } 430 366 431 #buddypress div.activity-comments > ul { 367 432 padding: 0 10px 0 0; 368 433 } 434 369 435 #buddypress div.activity-comments ul, 370 436 #buddypress div.activity-comments ul li { … … 372 438 list-style: none; 373 439 } 440 374 441 #buddypress div.activity-comments ul { 375 442 clear: both; 376 443 margin: 0; 377 444 } 445 378 446 #buddypress div.activity-comments ul li { 379 447 border-top: 1px solid #eee; 380 448 padding: 10px 0 0; 381 449 } 450 382 451 body.activity-permalink #buddypress .activity-list li.mini .activity-comments { 383 452 clear: none; 384 453 margin-top: 0; 385 454 } 455 386 456 body.activity-permalink #buddypress div.activity-comments ul li { 387 457 border-width: 1px; 388 padding: 10px 0 0 0; 389 } 458 padding: 10px 0 0; 459 } 460 390 461 #buddypress div.activity-comments > ul > li:first-child { 391 462 border-top: none; 392 463 } 464 393 465 #buddypress div.activity-comments ul li:last-child { 394 466 margin-bottom: 0; 395 467 } 468 396 469 #buddypress div.activity-comments ul li > ul { 397 470 margin-right: 30px; … … 399 472 padding-right: 10px; 400 473 } 474 401 475 body.activity-permalink #buddypress div.activity-comments ul li > ul { 402 476 margin-top: 10px; 403 477 } 478 404 479 body.activity-permalink #buddypress div.activity-comments > ul { 405 480 padding: 0 15px 0 10px; 406 481 } 482 407 483 #buddypress div.activity-comments div.acomment-avatar img { 408 484 border-width: 1px; … … 412 488 width: 25px; 413 489 } 490 414 491 #buddypress div.activity-comments div.acomment-content { 415 492 font-size: 80%; 416 493 margin: 5px 40px 0 0; 417 494 } 495 418 496 #buddypress div.acomment-content .time-since, 419 497 #buddypress div.acomment-content .activity-delete-link, … … 421 499 display: none; 422 500 } 501 423 502 body.activity-permalink #buddypress div.activity-comments div.acomment-content { 424 503 font-size: 90%; 425 504 } 505 426 506 #buddypress div.activity-comments div.acomment-meta { 427 507 color: #767676; 428 508 font-size: 80%; 429 509 } 510 430 511 #buddypress div.activity-comments form.ac-form { 431 512 display: none; 432 513 padding: 10px; 433 514 } 515 434 516 #buddypress div.activity-comments li form.ac-form { 435 517 margin-left: 15px; 436 518 clear: both; 437 519 } 520 438 521 #buddypress div.activity-comments form.root { 439 522 margin-right: 0; 440 523 } 524 441 525 #buddypress div.activity-comments div#message { 442 526 margin-top: 15px; 443 527 margin-bottom: 0; 444 528 } 529 445 530 #buddypress div.activity-comments form .ac-textarea { 446 531 background: #fff; … … 449 534 padding: 8px; 450 535 } 536 451 537 #buddypress div.activity-comments form textarea { 452 538 border: none; … … 462 548 width: 100%; 463 549 } 550 464 551 #buddypress div.activity-comments form input { 465 552 margin-top: 5px; 466 553 } 554 467 555 #buddypress div.activity-comments form div.ac-reply-avatar { 468 556 float: right; 469 557 } 558 470 559 #buddypress div.ac-reply-avatar img { 471 560 border: 1px solid #eee; 472 561 } 562 473 563 #buddypress div.activity-comments form div.ac-reply-content { 474 564 color: #767676; … … 476 566 padding-right: 15px; 477 567 } 568 478 569 #buddypress div.activity-comments form div.ac-reply-content a { 479 570 text-decoration: none; 480 571 } 572 481 573 #buddypress .acomment-options { 482 574 float: right; 483 575 margin: 5px 40px 5px 0; 484 576 } 577 485 578 #buddypress .acomment-options a { 486 579 color: #767676; 487 580 } 581 488 582 #buddypress .acomment-options a:hover { 489 583 color: inherit; … … 497 591 margin: -39px 0 0 0; 498 592 } 499 #buddypress div.dir-search input[type=text], 500 #buddypress li.groups-members-search input[type=text] { 593 594 #buddypress div.dir-search input[type="text"], 595 #buddypress li.groups-members-search input[type="text"] { 501 596 font-size: 90%; 502 597 padding: 1px 3px; 503 598 } 599 504 600 #buddypress .current-member-type { 505 601 font-style: italic; 506 602 } 603 507 604 #buddypress .dir-form { 508 605 clear: both; … … 515 612 margin: 0 0 15px; 516 613 } 614 517 615 #buddypress #message.info { 518 616 margin-bottom: 0; 519 617 } 618 520 619 #buddypress div#message.updated { 521 620 clear: both; 522 621 display: block; 523 622 } 623 524 624 #buddypress div#message p, 525 625 #sitewide-notice p { … … 528 628 padding: 10px 15px; 529 629 } 630 530 631 #buddypress div#message.error p { 531 632 background-color: #fdc; … … 534 635 color: #800; 535 636 } 637 536 638 #buddypress div#message.warning p { 537 639 background-color: #ffe0af; … … 540 642 color: #800; 541 643 } 644 542 645 #buddypress div#message.updated p { 543 646 background-color: #efc; … … 545 648 color: #250; 546 649 } 650 547 651 #buddypress #pass-strength-result { 548 652 background-color: #eee; … … 556 660 width: 150px; 557 661 } 662 558 663 #buddypress .standard-form #basic-details-section #pass-strength-result { 559 664 width: 35%; 560 665 } 666 561 667 #buddypress #pass-strength-result.error, 562 668 #buddypress #pass-strength-result.bad { … … 565 671 display: block; 566 672 } 673 567 674 #buddypress #pass-strength-result.good { 568 675 background-color: #ffec8b; … … 570 677 display: block; 571 678 } 679 572 680 #buddypress #pass-strength-result.short { 573 681 background-color: #ffa0a0; … … 575 683 display: block; 576 684 } 685 577 686 #buddypress #pass-strength-result.strong { 578 687 background-color: #c3ff88; … … 580 689 display: block; 581 690 } 691 582 692 #buddypress .standard-form#signup_form div div.error { 583 693 background: #faa; 584 694 color: #a00; 585 margin: 0 0 10px 0;695 margin: 0 0 10px; 586 696 padding: 6px; 587 697 width: 90%; 588 698 } 699 589 700 #buddypress div.accept, 590 701 #buddypress div.reject { … … 592 703 margin-right: 10px; 593 704 } 705 594 706 #buddypress ul.button-nav li { 595 707 float: right; … … 597 709 list-style: none; 598 710 } 711 599 712 #buddypress ul.button-nav li.current a { 600 font-weight: bold; 601 } 713 font-weight: 700; 714 } 715 602 716 #sitewide-notice #message { 603 717 right: 2%; … … 607 721 z-index: 9999; 608 722 } 723 609 724 #sitewide-notice.admin-bar-on #message { 610 725 top: 3.3em; 611 726 } 727 612 728 #sitewide-notice strong { 613 729 display: block; … … 625 741 626 742 #buddypress .standard-form textarea, 627 #buddypress .standard-form input[type= text],628 #buddypress .standard-form input[type= color],629 #buddypress .standard-form input[type= date],630 #buddypress .standard-form input[type= datetime],631 #buddypress .standard-form input[type= datetime-local],632 #buddypress .standard-form input[type= email],633 #buddypress .standard-form input[type= month],634 #buddypress .standard-form input[type= number],635 #buddypress .standard-form input[type= range],636 #buddypress .standard-form input[type= search],637 #buddypress .standard-form input[type= tel],638 #buddypress .standard-form input[type= time],639 #buddypress .standard-form input[type= url],640 #buddypress .standard-form input[type= week],743 #buddypress .standard-form input[type="text"], 744 #buddypress .standard-form input[type="color"], 745 #buddypress .standard-form input[type="date"], 746 #buddypress .standard-form input[type="datetime"], 747 #buddypress .standard-form input[type="datetime-local"], 748 #buddypress .standard-form input[type="email"], 749 #buddypress .standard-form input[type="month"], 750 #buddypress .standard-form input[type="number"], 751 #buddypress .standard-form input[type="range"], 752 #buddypress .standard-form input[type="search"], 753 #buddypress .standard-form input[type="tel"], 754 #buddypress .standard-form input[type="time"], 755 #buddypress .standard-form input[type="url"], 756 #buddypress .standard-form input[type="week"], 641 757 #buddypress .standard-form select, 642 #buddypress .standard-form input[type= password],643 #buddypress .dir-search input[type= search],644 #buddypress .dir-search input[type= text],645 #buddypress .groups-members-search input[type= search],646 #buddypress .groups-members-search input[type= text] {758 #buddypress .standard-form input[type="password"], 759 #buddypress .dir-search input[type="search"], 760 #buddypress .dir-search input[type="text"], 761 #buddypress .groups-members-search input[type="search"], 762 #buddypress .groups-members-search input[type="text"] { 647 763 border: 1px solid #ccc; 648 764 background: #fafafa; … … 653 769 padding: 6px; 654 770 } 771 655 772 #buddypress .standard-form select { 656 773 padding: 3px; 657 774 } 658 #buddypress .standard-form input[type=password] { 775 776 #buddypress .standard-form input[type="password"] { 659 777 margin-bottom: 5px; 660 778 } 779 661 780 #buddypress .standard-form label, 662 781 #buddypress .standard-form span.label, 663 782 #buddypress .standard-form legend { 664 783 display: block; 665 font-weight: bold;666 margin: 15px 0 5px 0;784 font-weight: 700; 785 margin: 15px 0 5px; 667 786 width: auto; 668 787 } 788 669 789 #buddypress .standard-form p label, 670 790 #buddypress .standard-form #invite-list label { 671 font-weight: normal;791 font-weight: 400; 672 792 margin: auto; 673 793 } 794 674 795 #buddypress .standard-form .checkbox label, 675 796 #buddypress .standard-form .radio label { 676 797 color: #767676; 677 798 font-size: 100%; 678 font-weight: normal; 679 margin: 5px 0 0 0; 680 } 799 font-weight: 400; 800 margin: 5px 0 0; 801 } 802 681 803 #buddypress .standard-form .checkbox label input, 682 804 #buddypress .standard-form .radio label input { 683 805 margin-left: 3px; 684 806 } 807 685 808 #buddypress .standard-form#sidebar-login-form label { 686 809 margin-top: 5px; 687 810 } 688 #buddypress .standard-form input[type=text] { 811 812 #buddypress .standard-form input[type="text"] { 689 813 width: 75%; 690 814 } 691 #buddypress .standard-form#sidebar-login-form input[type=text], 692 #buddypress .standard-form#sidebar-login-form input[type=password] { 815 816 #buddypress .standard-form#sidebar-login-form input[type="text"], 817 #buddypress .standard-form#sidebar-login-form input[type="password"] { 693 818 padding: 4px; 694 819 width: 95%; 695 820 } 696 #buddypress .standard-form #basic-details-section input[type=password], 821 822 #buddypress .standard-form #basic-details-section input[type="password"], 697 823 #buddypress .standard-form #blog-details-section input#signup_blog_url { 698 824 width: 35%; 699 825 } 700 #buddypress .standard-form#signup_form input[type=text], 826 827 #buddypress .standard-form#signup_form input[type="text"], 701 828 #buddypress .standard-form#signup_form textarea, 702 829 #buddypress .form-allowed-tags, 703 #buddypress #commentform input[type= text],830 #buddypress #commentform input[type="text"], 704 831 #buddypress #commentform textarea { 705 832 width: 90%; 706 833 } 834 707 835 #buddypress .standard-form#signup_form div.submit { 708 836 float: left; 709 837 } 838 710 839 #buddypress div#signup-avatar img { 711 840 margin: 0 0 10px 15px; 712 841 } 842 713 843 #buddypress .standard-form textarea { 714 844 width: 75%; 715 845 height: 120px; 716 846 } 847 717 848 #buddypress .standard-form textarea#message_content { 718 849 height: 200px; 719 850 } 851 720 852 #buddypress .standard-form#send-reply textarea { 721 853 width: 97.5%; 722 854 } 855 723 856 #buddypress .standard-form p.description { 724 857 color: #767676; … … 726 859 margin: 5px 0; 727 860 } 861 728 862 #buddypress .standard-form div.submit { 729 863 clear: both; 730 padding: 15px 0 0 0; 731 } 864 padding: 15px 0 0; 865 } 866 732 867 #buddypress .standard-form p.submit { 733 868 margin-bottom: 0; 734 padding: 15px 0 0 0; 735 } 869 padding: 15px 0 0; 870 } 871 736 872 #buddypress .standard-form div.submit input { 737 873 margin-left: 15px; 738 874 } 875 739 876 #buddypress .standard-form div.radio ul { 740 877 margin: 10px 38px 15px 0; 741 878 list-style: disc; 742 879 } 880 743 881 #buddypress .standard-form div.radio ul li { 744 882 margin-bottom: 5px; 745 883 } 884 746 885 #buddypress .standard-form a.clear-value { 747 886 display: block; … … 749 888 outline: none; 750 889 } 890 751 891 #buddypress .standard-form #basic-details-section, 752 892 #buddypress .standard-form #blog-details-section, … … 755 895 width: 48%; 756 896 } 897 757 898 #buddypress .standard-form #profile-details-section { 758 899 float: left; 759 900 } 901 760 902 #buddypress .standard-form #blog-details-section, 761 903 #buddypress #notifications-bulk-management { 762 904 clear: right; 763 905 } 906 764 907 body.no-js #buddypress #notifications-bulk-management #select-all-notifications, 765 908 body.no-js #buddypress label[for="message-type-select"], … … 770 913 display: none; 771 914 } 915 772 916 #buddypress .standard-form input:focus, 773 917 #buddypress .standard-form textarea:focus, … … 776 920 color: #555; 777 921 } 922 778 923 #buddypress form#send-invite-form { 779 924 margin-top: 20px; 780 925 } 926 781 927 #buddypress div#invite-list { 782 928 background: #f5f5f5; … … 787 933 width: 160px; 788 934 } 935 789 936 #buddypress .standard-form button, 790 937 #buddypress a.button, 791 #buddypress input[type= submit],792 #buddypress input[type= button],793 #buddypress input[type= reset],938 #buddypress input[type="submit"], 939 #buddypress input[type="button"], 940 #buddypress input[type="reset"], 794 941 #buddypress ul.button-nav li a, 795 942 #buddypress .generic-button a, … … 806 953 text-decoration: none; 807 954 } 955 808 956 #buddypress .standard-form button:hover, 809 957 #buddypress a.button:hover, 810 958 #buddypress a.button:focus, 811 #buddypress input[type= submit]:hover,812 #buddypress input[type= button]:hover,813 #buddypress input[type= reset]:hover,959 #buddypress input[type="submit"]:hover, 960 #buddypress input[type="button"]:hover, 961 #buddypress input[type="reset"]:hover, 814 962 #buddypress ul.button-nav li a:hover, 815 963 #buddypress ul.button-nav li.current a, … … 827 975 } 828 976 829 #buddypress form.standard-form .left-menu #invite-list ul {830 margin: 1%;977 #buddypress form.standard-form .left-menu #invite-list ul { 978 margin: 1%; 831 979 list-style: none; 832 980 } 833 981 834 982 #buddypress form.standard-form .left-menu #invite-list ul li { 835 margin: 0 1% 0 0;983 margin: 0 1% 0 0; 836 984 } 837 985 … … 841 989 842 990 #buddypress form.standard-form .main-column ul#friend-list { 843 clear: none;991 clear: none; 844 992 float: right; 845 993 } … … 847 995 #buddypress form.standard-form .main-column ul#friend-list h3, 848 996 #buddypress form.standard-form .main-column ul#friend-list h4 { 849 clear: none;997 clear: none; 850 998 } 851 999 … … 853 1001 #buddypress .wp-editor-wrap a.button, 854 1002 #buddypress .wp-editor-wrap button, 855 #buddypress .wp-editor-wrap input[type= submit],856 #buddypress .wp-editor-wrap input[type= button],857 #buddypress .wp-editor-wrap input[type= reset] {1003 #buddypress .wp-editor-wrap input[type="submit"], 1004 #buddypress .wp-editor-wrap input[type="button"], 1005 #buddypress .wp-editor-wrap input[type="reset"] { 858 1006 padding: 0 8px 1px; 859 1007 } 860 1008 861 1009 /* Form classes & generic attr styling */ 862 #buddypress form *[disabled="disabled"] {1010 #buddypress form *[disabled="disabled"] { 863 1011 cursor: default; 864 opacity: .4;1012 opacity: 0.4; 865 1013 } 866 1014 … … 917 1065 #buddypress a.loading, 918 1066 #buddypress input.loading { 919 -webkit-animation: loader-pulsate .5s infinite ease-in-out alternate;920 -moz-animation: loader-pulsate .5s infinite ease-in-out alternate;1067 -webkit-animation: loader-pulsate 0.5s infinite ease-in-out alternate; 1068 -moz-animation: loader-pulsate 0.5s infinite ease-in-out alternate; 921 1069 border-color: #aaa; 922 1070 } 1071 923 1072 @-webkit-keyframes loader-pulsate { 1073 924 1074 from { 925 1075 border-color: #aaa; … … 927 1077 box-shadow: 0 0 6px #ccc; 928 1078 } 1079 929 1080 to { 930 1081 border-color: #ccc; … … 933 1084 } 934 1085 } 1086 935 1087 @-moz-keyframes loader-pulsate { 1088 936 1089 from { 937 1090 border-color: #aaa; … … 939 1092 box-shadow: 0 0 6px #ccc; 940 1093 } 1094 941 1095 to { 942 1096 border-color: #ccc; … … 950 1104 color: #767676; 951 1105 } 1106 952 1107 #buddypress input[type="submit"].pending, 953 1108 #buddypress input[type="button"].pending, … … 956 1111 #buddypress input[type="button"].disabled, 957 1112 #buddypress input[type="reset"].disabled, 958 #buddypress input[type="submit"][disabled= disabled],1113 #buddypress input[type="submit"][disabled="disabled"], 959 1114 #buddypress button.pending, 960 1115 #buddypress button.disabled, … … 965 1120 cursor: default; 966 1121 } 1122 967 1123 #buddypress input[type="submit"]:hover.pending, 968 1124 #buddypress input[type="button"]:hover.pending, … … 986 1142 width: auto; 987 1143 } 1144 988 1145 #buddypress ul#topic-post-list li { 989 1146 padding: 15px; 990 1147 position: relative; 991 1148 } 1149 992 1150 #buddypress ul#topic-post-list li.alt { 993 1151 background: #f5f5f5; 994 1152 } 1153 995 1154 #buddypress ul#topic-post-list li div.poster-meta { 996 1155 color: #767676; 997 1156 margin-bottom: 10px; 998 1157 } 1158 999 1159 #buddypress ul#topic-post-list li div.post-content { 1000 1160 margin-right: 54px; 1001 1161 } 1162 1002 1163 #buddypress div.topic-tags { 1003 1164 font-size: 80%; 1004 1165 } 1166 1005 1167 #buddypress div.admin-links { 1006 1168 color: #767676; … … 1010 1172 left: 25px; 1011 1173 } 1174 1012 1175 #buddypress div#topic-meta { 1013 1176 margin: 0; … … 1015 1178 position: relative; 1016 1179 } 1180 1017 1181 #buddypress div#topic-meta div.admin-links { 1018 1182 left: 19px; 1019 1183 top: -36px; 1020 1184 } 1185 1021 1186 #buddypress div#topic-meta h3 { 1022 1187 margin: 5px 0; 1023 1188 } 1189 1024 1190 #buddypress div#new-topic-post { 1025 1191 display: none; 1026 margin: 20px 0 0 0; 1027 padding: 1px 0 0 0; 1028 } 1192 margin: 20px 0 0; 1193 padding: 1px 0 0; 1194 } 1195 1029 1196 #buddypress table.notifications, 1030 1197 #buddypress table.notifications-settings, … … 1036 1203 width: 100%; 1037 1204 } 1205 1038 1206 #buddypress table.notifications thead tr, 1039 1207 #buddypress table.notifications-settings thead tr, … … 1045 1213 background: #eaeaea; 1046 1214 } 1215 1047 1216 #buddypress table#message-threads { 1048 1217 clear: both; 1049 1218 } 1219 1050 1220 #buddypress table.profile-fields { 1051 1221 margin-bottom: 20px; 1052 1222 } 1223 1053 1224 #buddypress table.profile-fields:last-child { 1054 1225 margin-bottom: 0; 1055 1226 } 1227 1056 1228 #buddypress table.profile-fields p { 1057 1229 margin: 0; 1058 1230 } 1231 1059 1232 #buddypress table.profile-fields p:last-child { 1060 1233 margin-top: 0; 1061 1234 } 1235 1062 1236 #buddypress table.notifications tr td, 1063 1237 #buddypress table.notifications-settings tr td, … … 1076 1250 vertical-align: middle; 1077 1251 } 1252 1078 1253 #buddypress table.notifications tr td.label, 1079 1254 #buddypress table.notifications-settings tr td.label, … … 1083 1258 #buddypress table.forum tr td.label { 1084 1259 border-left: 1px solid #eaeaea; 1085 font-weight: bold;1260 font-weight: 700; 1086 1261 width: 25%; 1087 1262 } 1263 1088 1264 #buddypress #message-threads .thread-info { 1089 1265 min-width: 40%; 1090 1266 } 1267 1091 1268 #buddypress table tr td.thread-info p { 1092 1269 margin: 0; 1093 1270 } 1271 1094 1272 #buddypress table tr td.thread-info p.thread-excerpt { 1095 1273 color: #767676; … … 1097 1275 margin-top: 3px; 1098 1276 } 1277 1099 1278 #buddypress table.forum td { 1100 1279 text-align: center; 1101 1280 } 1281 1102 1282 #buddypress table.notifications tr.alt td, 1103 1283 #buddypress table.notifications-settings tr.alt td, … … 1110 1290 color: #707070; 1111 1291 } 1292 1112 1293 #buddypress table.notification-settings { 1113 1294 margin-bottom: 20px; 1114 1295 text-align: right; 1115 1296 } 1297 1116 1298 #buddypress #groups-notification-settings { 1117 1299 margin-bottom: 0; 1118 1300 } 1301 1119 1302 #buddypress table.notifications th.icon, 1120 1303 #buddypress table.notifications td:first-child, … … 1123 1306 display: none; 1124 1307 } 1308 1125 1309 #buddypress table.notification-settings th.title, 1126 1310 #buddypress table.profile-settings th.title { 1127 1311 width: 80%; 1128 1312 } 1313 1129 1314 #buddypress table.notification-settings .yes, 1130 1315 #buddypress table.notification-settings .no { … … 1132 1317 width: 40px; 1133 1318 } 1319 1134 1320 #buddypress table.forum { 1135 1321 margin: 0; … … 1137 1323 clear: both; 1138 1324 } 1325 1139 1326 #buddypress table.forum tr.sticky td { 1140 1327 font-size: 110%; … … 1143 1330 border-bottom: 1px solid #ffe8c4; 1144 1331 } 1332 1145 1333 #buddypress table.forum tr.closed td.td-title { 1146 1334 padding-right: 35px; 1147 1335 } 1336 1148 1337 #buddypress table.forum td p.topic-text { 1149 1338 color: #767676; 1150 1339 font-size: 100%; 1151 1340 } 1341 1152 1342 #buddypress table.forum tr > td:first-child, 1153 1343 #buddypress table.forum tr > th:first-child { 1154 1344 padding-right: 15px; 1155 1345 } 1346 1156 1347 #buddypress table.forum tr > td:last-child, 1157 1348 #buddypress table.forum tr > th:last-child { 1158 1349 padding-left: 15px; 1159 1350 } 1351 1160 1352 #buddypress table.forum tr th#th-title, 1161 1353 #buddypress table.forum tr th#th-poster, … … 1166 1358 text-align: right; 1167 1359 } 1360 1168 1361 #buddypress table.forum tr td.td-title a.topic-title { 1169 1362 font-size: 110%; 1170 1363 } 1364 1171 1365 #buddypress table.forum td.td-freshness { 1172 1366 white-space: nowrap; 1173 1367 } 1368 1174 1369 #buddypress table.forum td.td-freshness span.time-since { 1175 1370 font-size: 80%; 1176 1371 color: #767676; 1177 1372 } 1373 1178 1374 #buddypress table.forum td img.avatar { 1179 1375 float: none; 1180 1376 margin: 0 0 -8px 5px; 1181 1377 } 1378 1182 1379 #buddypress table.forum td.td-poster, 1183 1380 #buddypress table.forum td.td-group { 1184 1381 min-width: 140px; 1185 1382 } 1383 1186 1384 #buddypress table.forum th#th-title { 1187 1385 width: 80%; 1188 1386 } 1387 1189 1388 #buddypress table.forum th#th-freshness { 1190 1389 width: 25%; 1191 1390 } 1391 1192 1392 #buddypress table.forum th#th-postcount { 1193 1393 width: 15%; 1194 1394 } 1395 1195 1396 #buddypress table.forum p.topic-meta { 1196 1397 font-size: 80%; 1197 margin: 5px 0 0 0;1398 margin: 5px 0 0; 1198 1399 } 1199 1400 … … 1204 1405 margin: 20px 0; 1205 1406 } 1407 1206 1408 #buddypress span.activity { 1207 1409 display: inline-block; … … 1209 1411 padding: 0; 1210 1412 } 1413 1211 1414 #buddypress span.user-nicename { 1212 1415 color: #767676; 1213 1416 display: inline-block; 1214 1417 font-size: 120%; 1215 font-weight: bold; 1216 } 1418 font-weight: 700; 1419 } 1420 1217 1421 #buddypress div#message p, 1218 1422 #sitewide-notice p { … … 1220 1424 border: 1px solid #cb2; 1221 1425 color: #440; 1222 font-weight: normal;1426 font-weight: 400; 1223 1427 margin-top: 3px; 1224 1428 text-decoration: none; 1225 1429 } 1430 1226 1431 .bp-site-wide-message #message p, 1227 1432 .admin-bar-on #message p { … … 1229 1434 position: relative; 1230 1435 } 1436 1231 1437 .bp-site-wide-message #message button, 1232 1438 .admin-bar-on #message button { … … 1237 1443 top: 0; 1238 1444 } 1445 1239 1446 .admin-bar-on #message button { 1240 1447 left: 10px; 1241 top:7px; 1242 } 1448 top: 7px; 1449 } 1450 1243 1451 #buddypress #item-header:after { 1244 1452 clear: both; … … 1246 1454 display: table; 1247 1455 } 1456 1248 1457 #buddypress div#item-header div#item-header-content { 1249 1458 float: right; 1250 1459 margin-right: 0; 1251 1460 } 1461 1252 1462 #buddypress div#item-header h2 { 1253 line-height: 120%; 1254 margin: 0 0 15px 0; 1255 } 1463 line-height: 1.2; 1464 margin: 0 0 15px; 1465 } 1466 1256 1467 #buddypress div#item-header h2 a { 1257 1468 color: #767676; 1258 1469 text-decoration: none; 1259 1470 } 1471 1260 1472 #buddypress div#item-header img.avatar { 1261 1473 float: right; 1262 1474 margin: 0 0 19px 15px; 1263 1475 } 1476 1264 1477 #buddypress div#item-header h2 { 1265 1478 margin-bottom: 5px; 1266 1479 } 1480 1267 1481 #buddypress div#item-header h2 span.highlight { 1268 1482 font-size: 60%; 1269 font-weight: normal;1270 line-height: 1 70%;1483 font-weight: 400; 1484 line-height: 1.7; 1271 1485 vertical-align: middle; 1272 1486 display: inline-block; 1273 1487 } 1488 1274 1489 #buddypress div#item-header h2 span.highlight span { 1275 1490 background: #a1dcfa; 1276 1491 color: #fff; 1277 1492 cursor: pointer; 1278 font-weight: bold;1493 font-weight: 700; 1279 1494 font-size: 80%; 1280 1495 margin-bottom: 2px; … … 1285 1500 vertical-align: middle; 1286 1501 } 1502 1287 1503 #buddypress div#item-header div#item-meta { 1288 1504 font-size: 80%; 1289 1505 color: #767676; 1290 1506 overflow: hidden; 1291 margin: 15px 0 5px 0;1507 margin: 15px 0 5px; 1292 1508 padding-bottom: 10px; 1293 1509 } 1510 1294 1511 #buddypress div#item-header div#item-actions { 1295 1512 float: left; … … 1298 1515 width: 20%; 1299 1516 } 1517 1300 1518 #buddypress div#item-header div#item-actions h2, 1301 1519 #buddypress div#item-header div#item-actions h3 { 1302 margin: 0 0 5px 0; 1303 } 1520 margin: 0 0 5px; 1521 } 1522 1304 1523 #buddypress div#item-header ul { 1305 1524 margin-bottom: 15px; 1306 1525 overflow: hidden; 1307 1526 } 1527 1308 1528 #buddypress div#item-header ul h5, 1309 1529 #buddypress div#item-header ul span, … … 1311 1531 display: none; 1312 1532 } 1533 1313 1534 #buddypress div#item-header ul li { 1314 1535 float: left; 1315 1536 list-style: none; 1316 1537 } 1538 1317 1539 #buddypress div#item-header ul img.avatar, 1318 1540 #buddypress div#item-header ul.avatars img.avatar { … … 1321 1543 width: 30px; 1322 1544 } 1545 1323 1546 #buddypress div#item-header div.generic-button, 1324 1547 #buddypress div#item-header a.button { … … 1326 1549 margin: 10px 0 0 10px; 1327 1550 } 1551 1328 1552 body.no-js #buddypress div#item-header .js-self-profile-button { 1329 display:none; 1330 } 1553 display: none; 1554 } 1555 1331 1556 #buddypress div#item-header div#message.info { 1332 line-height: 80%; 1333 } 1557 line-height: 0.8; 1558 } 1559 1334 1560 #buddypress ul.item-list { 1335 1561 border-top: 1px solid #eaeaea; … … 1340 1566 padding: 0; 1341 1567 } 1568 1342 1569 body.activity-permalink #buddypress ul.item-list, 1343 1570 body.activity-permalink #buddypress ul.item-list li.activity-item { 1344 1571 border: none; 1345 1572 } 1573 1346 1574 #buddypress ul.item-list li { 1347 1575 border-bottom: 1px solid #eaeaea; … … 1351 1579 list-style: none; 1352 1580 } 1581 1353 1582 #buddypress ul.single-line li { 1354 1583 border: none; 1355 1584 } 1585 1356 1586 #buddypress ul.item-list li img.avatar { 1357 1587 float: right; 1358 1588 margin: 0 0 0 10px; 1359 1589 } 1590 1360 1591 #buddypress ul.item-list li div.item-title, 1361 1592 #buddypress ul.item-list li h3, 1362 1593 #buddypress ul.item-list li h4 { 1363 font-weight: normal;1594 font-weight: 400; 1364 1595 font-size: 90%; 1365 1596 margin: 0; 1366 1597 width: 75%; 1367 1598 } 1599 1368 1600 #buddypress ul.item-list li div.item-title span { 1369 1601 color: #767676; 1370 1602 font-size: 80%; 1371 1603 } 1604 1372 1605 #buddypress ul.item-list li div.item-desc { 1373 1606 color: #767676; … … 1376 1609 width: 50%; 1377 1610 } 1611 1378 1612 #buddypress ul.item-list li.group-no-avatar div.item-desc { 1379 1613 margin-right: 0; 1380 1614 } 1615 1381 1616 #buddypress ul.item-list li div.action { 1382 1617 position: absolute; … … 1385 1620 text-align: left; 1386 1621 } 1622 1387 1623 #buddypress ul.item-list li div.meta { 1388 1624 color: #767676; … … 1390 1626 margin-top: 10px; 1391 1627 } 1628 1392 1629 #buddypress ul.item-list li h5 span.small { 1393 1630 float: left; 1394 1631 font-size: 80%; 1395 font-weight: normal; 1396 } 1632 font-weight: 400; 1633 } 1634 1397 1635 #buddypress div.item-list-tabs { 1398 1636 background: transparent; … … 1405 1643 padding: 0; 1406 1644 } 1645 1407 1646 #buddypress div.item-list-tabs ul li { 1408 1647 float: right; … … 1410 1649 list-style: none; 1411 1650 } 1651 1412 1652 #buddypress div.item-list-tabs#subnav ul li { 1413 1653 margin-top: 0; 1414 1654 } 1655 1415 1656 #buddypress div.item-list-tabs ul li.last { 1416 1657 float: left; 1417 1658 margin: 7px 0 0; 1418 1659 } 1660 1419 1661 #buddypress div.item-list-tabs#subnav ul li.last { 1420 1662 margin-top: 4px; 1421 1663 } 1664 1422 1665 #buddypress div.item-list-tabs ul li.last select { 1423 1666 max-width: 185px; 1424 1667 } 1668 1425 1669 #buddypress div.item-list-tabs ul li a, 1426 1670 #buddypress div.item-list-tabs ul li span { … … 1429 1673 text-decoration: none; 1430 1674 } 1675 1431 1676 #buddypress div.item-list-tabs ul li a span { 1432 1677 background: #eee; … … 1441 1686 vertical-align: middle; 1442 1687 } 1688 1443 1689 #buddypress div.item-list-tabs ul li.selected a, 1444 1690 #buddypress div.item-list-tabs ul li.current a { 1445 1691 background-color: #eee; 1446 1692 color: #555; 1447 opacity: .9; 1448 font-weight: bold; 1449 } 1693 opacity: 0.9; 1694 font-weight: 700; 1695 } 1696 1450 1697 #buddypress div.item-list-tabs ul li.selected a span, 1451 1698 #buddypress div.item-list-tabs ul li.current a span, … … 1453 1700 background-color: #eee; 1454 1701 } 1702 1455 1703 #buddypress div.item-list-tabs ul li.selected a span, 1456 1704 #buddypress div.item-list-tabs ul li.current a span { 1457 1705 background-color: #fff; 1458 1706 } 1707 1459 1708 #buddypress div#item-nav ul li.loading a { 1460 1709 background-position: 12% 50%; 1461 1710 } 1711 1462 1712 #buddypress div.item-list-tabs#object-nav { 1463 1713 margin-top: 0; 1464 1714 } 1715 1465 1716 #buddypress div.item-list-tabs#subnav { 1466 1717 background: transparent; 1467 margin: 10px 0 10px;1718 margin: 10px 0; 1468 1719 overflow: hidden; 1469 1720 } 1721 1470 1722 #buddypress #admins-list li, 1471 1723 #buddypress #mods-list li, … … 1474 1726 list-style: none; 1475 1727 } 1728 1476 1729 #buddypress .group-members-list { 1477 1730 width: 100%; … … 1480 1733 overflow: auto; 1481 1734 } 1735 1482 1736 #buddypress #item-buttons:empty { 1483 1737 display: none; … … 1522 1776 border-top: 1px solid #ffe8c4; 1523 1777 border-bottom: 1px solid #ffe8c4; 1524 font-weight: bold; 1525 } 1778 font-weight: 700; 1779 } 1780 1526 1781 #buddypress table#message-threads tr.unread td .thread-excerpt, 1527 1782 #buddypress table#message-threads tr.unread td .activity, 1528 1783 #buddypress table#message-threads tr.unread td.thread-options { 1529 font-weight: normal; 1530 } 1784 font-weight: 400; 1785 } 1786 1531 1787 #buddypress li span.unread-count, 1532 1788 #buddypress tr.unread span.unread-count { 1533 background: #d d0000;1789 background: #d00; 1534 1790 color: #fff; 1535 font-weight: bold;1791 font-weight: 700; 1536 1792 padding: 2px 8px; 1537 1793 } 1794 1538 1795 #buddypress div.item-list-tabs ul li a span.unread-count { 1539 1796 padding: 1px 6px; 1540 1797 color: #fff; 1541 1798 } 1799 1542 1800 #buddypress div#message-thread div.message-box { 1543 1801 margin: 0; 1544 1802 padding: 15px; 1545 1803 } 1804 1546 1805 #buddypress div#message-thread div.alt { 1547 1806 background: #f4f4f4; 1548 1807 } 1808 1549 1809 #buddypress div#message-thread p#message-recipients { 1550 margin: 10px 0 20px 0; 1551 } 1810 margin: 10px 0 20px; 1811 } 1812 1552 1813 #buddypress div#message-thread img.avatar { 1553 1814 float: right; … … 1555 1816 vertical-align: middle; 1556 1817 } 1818 1557 1819 #buddypress div#message-thread strong { 1558 1820 font-size: 100%; 1559 1821 margin: 0; 1560 1822 } 1823 1561 1824 #buddypress div#message-thread strong a { 1562 1825 text-decoration: none; 1563 1826 } 1827 1564 1828 #buddypress div#message-thread strong span.activity { 1565 1829 margin-top: 4px; 1566 1830 } 1567 #buddypress div#message-thread div.message-metadata::after { 1831 1832 #buddypress div#message-thread div.message-metadata:after { 1568 1833 clear: both; 1569 1834 content: ""; 1570 1835 display: table; 1571 1836 } 1837 1572 1838 #buddypress div#message-thread div.message-content { 1573 1839 margin-right: 45px; 1574 1840 } 1841 1575 1842 #buddypress div#message-thread div.message-options { 1576 1843 text-align: left; 1577 1844 } 1845 1578 1846 #buddypress #message-threads img.avatar { 1579 1847 max-width: none; 1580 1848 } 1849 1581 1850 #buddypress div.message-search { 1582 1851 float: left; 1583 1852 margin: 0 20px; 1584 1853 } 1854 1585 1855 .message-metadata { 1586 1856 position: relative; 1587 1857 } 1588 .message-metadata .bp-tooltip:hover::after, 1589 .message-metadata .bp-tooltip:active::after, 1590 .message-metadata .bp-tooltip:focus::after { 1858 1859 .message-metadata .bp-tooltip:hover:after, 1860 .message-metadata .bp-tooltip:active:after, 1861 .message-metadata .bp-tooltip:focus:after { 1591 1862 margin-top: 10px; 1592 1863 max-width: 240px; … … 1594 1865 text-align: left; 1595 1866 } 1867 1596 1868 .message-star-actions { 1597 1869 position: absolute; … … 1599 1871 top: 0; 1600 1872 } 1873 1601 1874 #buddypress a.message-action-star, 1602 1875 #buddypress a.message-action-unstar { … … 1605 1878 outline: none; 1606 1879 } 1880 1607 1881 a.message-action-star { 1608 opacity: .7; 1609 } 1882 opacity: 0.7; 1883 } 1884 1610 1885 a.message-action-star:hover { 1611 1886 opacity: 1; 1612 1887 } 1888 1613 1889 .message-action-star span.icon:before, 1614 1890 .message-action-unstar span.icon:before { … … 1616 1892 font-size: 18px; 1617 1893 } 1894 1618 1895 .message-action-star span.icon:before { 1619 1896 color: #767676; 1620 1897 content: "\f154"; 1621 1898 } 1899 1622 1900 .message-action-unstar span.icon:before { 1623 1901 color: #fcdd77; … … 1633 1911 margin-top: 15px; 1634 1912 } 1913 1635 1914 #buddypress #profile-edit-form ul.button-nav { 1636 1915 margin-top: 15px; 1637 1916 } 1917 1638 1918 body.no-js #buddypress .field-visibility-settings-toggle, 1639 1919 body.no-js #buddypress .field-visibility-settings-close { 1640 1920 display: none; 1641 1921 } 1922 1642 1923 #buddypress .field-visibility-settings { 1643 1924 display: none; 1644 1925 margin-top: 10px; 1645 1926 } 1646 body.no-js #buddypress .field-visibility-settings { 1647 display: block; 1648 } 1927 1928 body.no-js #buddypress .field-visibility-settings { 1929 display: block; 1930 } 1931 1649 1932 #buddypress .current-visibility-level { 1650 font-weight: bold;1933 font-weight: 700; 1651 1934 font-style: normal; 1652 1935 } 1936 1653 1937 #buddypress .field-visibility-settings, 1654 1938 #buddypress .field-visibility-settings-toggle, … … 1656 1940 color: #707070; 1657 1941 } 1942 1658 1943 #buddypress .field-visibility-settings-toggle a, 1659 1944 #buddypress .field-visibility-settings a { 1660 1945 font-size: 80%; 1661 1946 } 1947 1662 1948 body.register #buddypress div.page ul { 1663 1949 list-style: none; 1664 1950 } 1951 1665 1952 #buddypress .standard-form .field-visibility-settings label { 1666 1953 margin: 0; 1667 font-weight: normal; 1668 } 1954 font-weight: 400; 1955 } 1956 1669 1957 #buddypress .field-visibility-settings legend, 1670 1958 #buddypress .field-visibility-settings-toggle { 1671 1959 font-style: italic; 1672 1960 } 1961 1673 1962 #buddypress .field-visibility-settings .radio { 1674 1963 list-style: none; 1675 1964 margin-bottom: 0; 1676 1965 } 1966 1677 1967 #buddypress .field-visibility select { 1678 1968 margin: 0; 1679 1969 } 1970 1680 1971 #buddypress .wp-editor-container { 1681 1972 border: 1px solid #dedede; 1682 1973 } 1974 1683 1975 #buddypress .html-active button.switch-html { 1684 1976 border-bottom-color: transparent; … … 1688 1980 color: #707070; 1689 1981 } 1982 1690 1983 #buddypress .tmce-active button.switch-tmce { 1691 1984 border-bottom-color: transparent; … … 1695 1988 color: #707070; 1696 1989 } 1990 1697 1991 #buddypress .standard-form .wp-editor-container textarea { 1698 1992 width: 100%; … … 1713 2007 .widget.buddypress div.item-options { 1714 2008 font-size: 90%; 1715 margin: 0 0 1em 0;2009 margin: 0 0 1em; 1716 2010 padding: 1em 0; 1717 2011 } 1718 2012 1719 2013 .widget.buddypress div.item { 1720 margin: 0 0 1em 0;2014 margin: 0 0 1em; 1721 2015 } 1722 2016 … … 1727 2021 } 1728 2022 1729 .widget.buddypress div.avatar-block: :after {2023 .widget.buddypress div.avatar-block:after { 1730 2024 clear: both; 1731 2025 content: ""; … … 1757 2051 .widget.buddypress #bp-login-widget-form label { 1758 2052 display: block; 1759 margin: 1rem 0 .5rem;2053 margin: 1rem 0 0.5rem; 1760 2054 } 1761 2055 … … 1778 2072 1779 2073 .widget.buddypress .bp-login-widget-user-links > div { 1780 margin-bottom: .5rem;2074 margin-bottom: 0.5rem; 1781 2075 } 1782 2076 1783 2077 .widget.buddypress .bp-login-widget-user-links > div.bp-login-widget-user-link a { 1784 font-weight: bold;2078 font-weight: 700; 1785 2079 } 1786 2080 … … 1807 2101 } 1808 2102 1809 .bp-tooltip: :after {2103 .bp-tooltip:after { 1810 2104 background: #fff; 1811 2105 border: 1px solid #aaa; 1812 2106 border-collapse: separate; 1813 2107 border-radius: 1px; 1814 box-shadow: -1px 1px 0 px 1px rgba(132,132,132,0.3);2108 box-shadow: -1px 1px 0 1px rgba(132, 132, 132, 0.3); 1815 2109 color: #000; 1816 2110 content: attr(data-bp-tooltip); … … 1818 2112 font-family: sans-serif; 1819 2113 font-size: 11px; 1820 font-weight: normal;2114 font-weight: 400; 1821 2115 letter-spacing: normal; 1822 2116 line-height: 1.5; … … 1839 2133 } 1840 2134 1841 .bp-tooltip:hover: :before,1842 .bp-tooltip:hover: :after,1843 .bp-tooltip:active: :before,1844 .bp-tooltip:active: :after,1845 .bp-tooltip:focus: :before,1846 .bp-tooltip:focus: :after {2135 .bp-tooltip:hover:before, 2136 .bp-tooltip:hover:after, 2137 .bp-tooltip:active:before, 2138 .bp-tooltip:active:after, 2139 .bp-tooltip:focus:before, 2140 .bp-tooltip:focus:after { 1847 2141 display: inline-block; 1848 2142 opacity: 1; … … 1852 2146 } 1853 2147 1854 .bp-site-wide-message .bp-tooltip:hover: :after,1855 .bp-site-wide-message .bp-tooltip:active: :after,1856 .bp-site-wide-message .bp-tooltip:focus: :after,1857 .admin-bar-on .bp-tooltip:hover: :after,1858 .admin-bar-on .bp-tooltip:active: :after,1859 .admin-bar-on .bp-tooltip:focus: :after {2148 .bp-site-wide-message .bp-tooltip:hover:after, 2149 .bp-site-wide-message .bp-tooltip:active:after, 2150 .bp-site-wide-message .bp-tooltip:focus:after, 2151 .admin-bar-on .bp-tooltip:hover:after, 2152 .admin-bar-on .bp-tooltip:active:after, 2153 .admin-bar-on .bp-tooltip:focus:after { 1860 2154 left: 50px; 1861 2155 } … … 1864 2158 4.0 - Media Queries 1865 2159 --------------------------------------------------------------*/ 2160 1866 2161 /*-------------------------------------------------------------- 1867 2162 4.1 - Smartphones - landscape 1868 2163 --------------------------------------------------------------*/ 1869 @media only screen and (max-width: 480px ){ 2164 @media only screen and (max-width: 480px ) { 2165 1870 2166 #buddypress div.dir-search { 1871 2167 float: left; … … 1873 2169 text-align: left; 1874 2170 } 2171 1875 2172 #buddypress div.dir-search input[type="text"] { 1876 2173 margin-bottom: 1em; 1877 2174 width: 50%; 1878 2175 } 2176 1879 2177 a.bp-title-button { 1880 2178 margin-right: 10px; 1881 2179 } 1882 #buddypress form.standard-form .main-column div.action{ 2180 2181 #buddypress form.standard-form .main-column div.action { 1883 2182 position: relative; 1884 margin-bottom: 1em;2183 margin-bottom: 1em; 1885 2184 } 2185 1886 2186 #buddypress form.standard-form .main-column ul#friend-list h3, 1887 #buddypress form.standard-form .main-column ul#friend-list h4 {1888 width: 100%;2187 #buddypress form.standard-form .main-column ul#friend-list h4 { 2188 width: 100%; 1889 2189 } 1890 2190 } … … 1894 2194 --------------------------------------------------------------*/ 1895 2195 @media only screen and (max-width: 320px) { 2196 1896 2197 #buddypress div.dir-search { 1897 2198 clear: right; … … 1900 2201 text-align: right; 1901 2202 } 2203 1902 2204 #buddypress li#groups-order-select { 1903 2205 clear: right; 1904 2206 float: right; 1905 2207 } 2208 1906 2209 #buddypress ul.item-list li div.action { 1907 2210 clear: right; … … 1914 2217 text-align: right; 1915 2218 } 2219 1916 2220 #buddypress ul.item-list li div.item-desc { 1917 2221 clear: right; … … 1920 2224 width: auto; 1921 2225 } 2226 1922 2227 #buddypress li div.item { 1923 2228 margin-right: 70px; 1924 2229 width: auto; 1925 2230 } 2231 1926 2232 #buddypress ul.item-list li div.meta { 1927 2233 margin-top: 0; 1928 2234 } 2235 1929 2236 #buddypress .item-desc p { 1930 2237 margin: 0 0 10px; 1931 2238 } 2239 1932 2240 #buddypress div.pagination .pag-count { 1933 2241 margin-right: 0; … … 1939 2247 --------------------------------------------------------------*/ 1940 2248 @media only screen and (max-width: 240px) { 2249 1941 2250 #buddypress div.dir-search { 1942 2251 float: right; 1943 2252 margin: 0; 1944 2253 } 2254 1945 2255 #buddypress div.dir-search input[type="text"] { 1946 2256 width: 50%; 1947 2257 } 2258 1948 2259 #buddypress li#groups-order-select { 1949 2260 float: right; 1950 2261 } 2262 1951 2263 #buddypress ul.item-list li img.avatar { 1952 2264 width: 30px; 1953 2265 height: auto; 1954 2266 } 2267 1955 2268 #buddypress ul.item-list li div.action, 1956 #buddypress li div.item {2269 #buddypress li div.item { 1957 2270 margin-right: 45px; 1958 2271 } 2272 1959 2273 h1 a.bp-title-button { 1960 2274 clear: right; -
trunk/src/bp-templates/bp-legacy/css/buddypress.css
r11586 r11587 34 34 1 - Navigation 35 35 --------------------------------------------------------------*/ 36 36 37 /*-------------------------------------------------------------- 37 38 1.1 - Pagination … … 49 50 padding: 10px 0; 50 51 } 52 51 53 #buddypress div.pagination .pag-count { 52 54 float: left; 53 55 margin-left: 10px; 54 56 } 57 55 58 #buddypress div.pagination .pagination-links { 56 59 float: right; 57 60 margin-right: 10px; 58 61 } 62 59 63 #buddypress div.pagination .pagination-links span, 60 64 #buddypress div.pagination .pagination-links a { … … 62 66 padding: 0 5px; 63 67 } 68 64 69 #buddypress div.pagination .pagination-links a:hover { 65 font-weight: bold; 66 } 70 font-weight: 700; 71 } 72 67 73 #buddypress noscript div.pagination { 68 74 margin-bottom: 15px; 69 75 } 76 70 77 #buddypress #nav-above { 71 78 display: none; 72 79 } 80 73 81 #buddypress .paged #nav-above { 74 82 display: block; 75 83 } 84 76 85 /*-------------------------------------------------------------- 77 86 2 - WordPress 78 87 --------------------------------------------------------------*/ 88 79 89 /*-------------------------------------------------------------- 80 90 2.1 - Images … … 87 97 padding: 0 !important; 88 98 } 99 89 100 #buddypress .clear { 90 101 clear: left; … … 94 105 3.0 - BuddyPress 95 106 --------------------------------------------------------------*/ 107 96 108 /*-------------------------------------------------------------- 97 109 3.1 - Activity … … 109 121 padding: 0; 110 122 } 123 111 124 #buddypress .home-page form#whats-new-form { 112 125 border-bottom: none; 113 126 padding-bottom: 0; 114 127 } 128 115 129 #buddypress form#whats-new-form #whats-new-avatar { 116 130 float: left; 117 131 } 132 118 133 #buddypress form#whats-new-form #whats-new-content { 119 134 margin-left: 55px; 120 135 padding: 0 0 20px 20px; 121 136 } 137 122 138 #buddypress form#whats-new-form p.activity-greeting { 123 line-height: 0.5 em;139 line-height: 0.5; 124 140 margin-bottom: 15px; 125 141 margin-left: 75px; 126 142 } 143 127 144 #buddypress form#whats-new-form textarea { 128 145 background: #fff; … … 136 153 width: 100%; 137 154 } 155 138 156 body.no-js #buddypress form#whats-new-form textarea { 139 157 height: 50px; 140 158 } 159 141 160 #buddypress form#whats-new-form #whats-new-options select { 142 161 max-width: 200px; 143 162 margin-top: 12px; 144 163 } 164 145 165 #buddypress form#whats-new-form #whats-new-submit { 146 166 float: right; 147 167 margin-top: 12px; 148 168 } 169 149 170 #buddypress #whats-new-options:after { 150 171 clear: both; … … 152 173 display: table; 153 174 } 175 154 176 body.no-js #buddypress #whats-new-options { 155 177 height: auto; 156 178 } 179 157 180 #buddypress #whats-new:focus { 158 181 border-color: rgba(31, 179, 221, 0.9) !important; … … 168 191 list-style: none; 169 192 } 193 170 194 #buddypress .activity-list .activity-avatar { 171 195 float: left; 172 196 } 197 173 198 #buddypress ul.item-list.activity-list li.has-comments { 174 199 padding-bottom: 15px; 175 200 } 201 176 202 body.activity-permalink #buddypress ul.activity-list li.has-comments { 177 203 padding-bottom: 0; 178 204 } 205 179 206 #buddypress .activity-list li.mini { 180 207 font-size: 80%; 181 208 position: relative; 182 209 } 210 183 211 #buddypress .activity-list li.mini .activity-avatar img.avatar, 184 #buddypress .activity-list li.mini .activity-avatar img.FB_profile_pic { 212 #buddypress .activity-list li.mini .activity-avatar img.FB_profile_pic { /* stylelint-disable-line selector-class-pattern */ 185 213 height: 20px; 186 214 margin-left: 30px; 187 215 width: 20px; 188 216 } 217 189 218 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.avatar, 190 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.FB_profile_pic { 219 #buddypress .activity-permalink .activity-list li.mini .activity-avatar img.FB_profile_pic { /* stylelint-disable-line selector-class-pattern */ 191 220 height: auto; 192 221 margin-left: 0; 193 222 width: auto; 194 223 } 224 195 225 body.activity-permalink #buddypress .activity-list > li:first-child { 196 226 padding-top: 0; 197 227 } 228 198 229 #buddypress .activity-list li .activity-content { 199 230 position: relative; 200 231 } 232 201 233 #buddypress .activity-list li.mini .activity-content p { 202 234 margin: 0; 203 235 } 236 204 237 #buddypress .activity-list li.mini .activity-comments { 205 238 clear: both; 206 239 font-size: 120%; 207 240 } 241 208 242 body.activity-permalink #buddypress li.mini .activity-meta { 209 243 margin-top: 4px; 210 244 } 245 211 246 #buddypress .activity-list li .activity-inreplyto { 212 247 color: #767676; 213 248 font-size: 80%; 214 249 } 250 215 251 #buddypress .activity-list li .activity-inreplyto > p { 216 252 margin: 0; 217 253 display: inline; 218 254 } 255 219 256 #buddypress .activity-list li .activity-inreplyto blockquote, 220 257 #buddypress .activity-list li .activity-inreplyto div.activity-inner { … … 226 263 padding: 0; 227 264 } 265 228 266 #buddypress .activity-list .activity-content { 229 267 margin: 0 0 0 70px; 230 268 } 269 231 270 body.activity-permalink #buddypress .activity-list li .activity-content { 232 271 border: none; 233 272 font-size: 100%; 234 line-height: 1 50%;273 line-height: 1.5; 235 274 margin-left: 170px; 236 275 margin-right: 0; 237 276 padding: 0; 238 277 } 278 239 279 body.activity-permalink #buddypress .activity-list li .activity-header > p { 240 280 margin: 0; 241 padding: 5px 0 0 0; 242 } 281 padding: 5px 0 0; 282 } 283 243 284 #buddypress .activity-list .activity-content .activity-header, 244 285 #buddypress .activity-list .activity-content .comment-header { 245 286 color: #767676; 246 line-height: 220%; 247 } 287 line-height: 2.2; 288 } 289 248 290 #buddypress .activity-header { 249 291 margin-right: 20px; 250 292 } 293 251 294 #buddypress .activity-header a, 252 295 #buddypress .comment-meta a, … … 254 297 text-decoration: none; 255 298 } 299 256 300 #buddypress .activity-list .activity-content .activity-header img.avatar { 257 301 float: none !important; 258 302 margin: 0 5px -8px 0 !important; 259 303 } 304 260 305 #buddypress a.bp-secondary-action, 261 306 #buddypress span.highlight { … … 265 310 text-decoration: none; 266 311 } 312 267 313 #buddypress .activity-list .activity-content .activity-inner, 268 314 #buddypress .activity-list .activity-content blockquote { … … 270 316 overflow: hidden; 271 317 } 318 272 319 #buddypress .activity-list li.new_forum_post .activity-content .activity-inner, 273 320 #buddypress .activity-list li.new_forum_topic .activity-content .activity-inner { 274 border-left: 2px solid # EAEAEA;321 border-left: 2px solid #eaeaea; 275 322 margin-left: 5px; 276 323 padding-left: 10px; 277 324 } 325 278 326 body.activity-permalink #buddypress .activity-content .activity-inner, 279 327 body.activity-permalink #buddypress .activity-content blockquote { … … 281 329 margin-top: 5px; 282 330 } 331 283 332 #buddypress .activity-inner > p { 284 333 word-wrap: break-word; 285 334 } 335 286 336 #buddypress .activity-inner > .activity-inner { 287 337 margin: 0; 288 338 } 339 289 340 #buddypress .activity-inner > blockquote { 290 341 margin: 0; 291 342 } 343 292 344 #buddypress .activity-list .activity-content img.thumbnail { 293 345 border: 2px solid #eee; … … 295 347 margin: 0 10px 5px 0; 296 348 } 349 297 350 #buddypress .activity-read-more { 298 351 margin-left: 1em; 299 352 white-space: nowrap; 300 353 } 354 301 355 #buddypress .activity-list li.load-more, 302 356 #buddypress .activity-list li.load-newest { … … 307 361 text-align: center; 308 362 } 363 309 364 #buddypress .activity-list li.load-more a, 310 365 #buddypress .activity-list li.load-newest a { 311 color: #4 D4D4D;366 color: #4d4d4d; 312 367 } 313 368 … … 319 374 margin: 18px 0 0; 320 375 } 376 321 377 body.activity-permalink #buddypress div.activity-meta { 322 378 margin-bottom: 6px; 323 379 } 380 324 381 #buddypress div.activity-meta a { 325 382 padding: 4px 8px; 326 383 } 384 327 385 #buddypress a.activity-time-since { 328 386 color: #767676; 329 387 text-decoration: none; 330 388 } 389 331 390 #buddypress a.activity-time-since:hover { 332 391 color: #767676; 333 392 text-decoration: underline; 334 393 } 394 335 395 #buddypress a.bp-primary-action, 336 396 #buddypress #reply-title small a { … … 339 399 text-decoration: none; 340 400 } 401 341 402 #buddypress a.bp-primary-action span, 342 403 #buddypress #reply-title small a span { … … 347 408 padding: 0 5px; 348 409 } 410 349 411 #buddypress a.bp-primary-action:hover span, 350 412 #buddypress #reply-title small a:hover span { … … 352 414 color: #fff; 353 415 } 416 354 417 #buddypress div.activity-comments { 355 418 margin: 0 0 0 70px; … … 359 422 clear: both; 360 423 } 424 361 425 body.activity-permalink #buddypress div.activity-comments { 362 426 background: none; … … 364 428 width: auto; 365 429 } 430 366 431 #buddypress div.activity-comments > ul { 367 432 padding: 0 0 0 10px; 368 433 } 434 369 435 #buddypress div.activity-comments ul, 370 436 #buddypress div.activity-comments ul li { … … 372 438 list-style: none; 373 439 } 440 374 441 #buddypress div.activity-comments ul { 375 442 clear: both; 376 443 margin: 0; 377 444 } 445 378 446 #buddypress div.activity-comments ul li { 379 447 border-top: 1px solid #eee; 380 448 padding: 10px 0 0; 381 449 } 450 382 451 body.activity-permalink #buddypress .activity-list li.mini .activity-comments { 383 452 clear: none; 384 453 margin-top: 0; 385 454 } 455 386 456 body.activity-permalink #buddypress div.activity-comments ul li { 387 457 border-width: 1px; 388 padding: 10px 0 0 0; 389 } 458 padding: 10px 0 0; 459 } 460 390 461 #buddypress div.activity-comments > ul > li:first-child { 391 462 border-top: none; 392 463 } 464 393 465 #buddypress div.activity-comments ul li:last-child { 394 466 margin-bottom: 0; 395 467 } 468 396 469 #buddypress div.activity-comments ul li > ul { 397 470 margin-left: 30px; … … 399 472 padding-left: 10px; 400 473 } 474 401 475 body.activity-permalink #buddypress div.activity-comments ul li > ul { 402 476 margin-top: 10px; 403 477 } 478 404 479 body.activity-permalink #buddypress div.activity-comments > ul { 405 480 padding: 0 10px 0 15px; 406 481 } 482 407 483 #buddypress div.activity-comments div.acomment-avatar img { 408 484 border-width: 1px; … … 412 488 width: 25px; 413 489 } 490 414 491 #buddypress div.activity-comments div.acomment-content { 415 492 font-size: 80%; 416 493 margin: 5px 0 0 40px; 417 494 } 495 418 496 #buddypress div.acomment-content .time-since, 419 497 #buddypress div.acomment-content .activity-delete-link, … … 421 499 display: none; 422 500 } 501 423 502 body.activity-permalink #buddypress div.activity-comments div.acomment-content { 424 503 font-size: 90%; 425 504 } 505 426 506 #buddypress div.activity-comments div.acomment-meta { 427 507 color: #767676; 428 508 font-size: 80%; 429 509 } 510 430 511 #buddypress div.activity-comments form.ac-form { 431 512 display: none; 432 513 padding: 10px; 433 514 } 515 434 516 #buddypress div.activity-comments li form.ac-form { 435 517 margin-right: 15px; 436 518 clear: both; 437 519 } 520 438 521 #buddypress div.activity-comments form.root { 439 522 margin-left: 0; 440 523 } 524 441 525 #buddypress div.activity-comments div#message { 442 526 margin-top: 15px; 443 527 margin-bottom: 0; 444 528 } 529 445 530 #buddypress div.activity-comments form .ac-textarea { 446 531 background: #fff; … … 449 534 padding: 8px; 450 535 } 536 451 537 #buddypress div.activity-comments form textarea { 452 538 border: none; … … 462 548 width: 100%; 463 549 } 550 464 551 #buddypress div.activity-comments form input { 465 552 margin-top: 5px; 466 553 } 554 467 555 #buddypress div.activity-comments form div.ac-reply-avatar { 468 556 float: left; 469 557 } 558 470 559 #buddypress div.ac-reply-avatar img { 471 560 border: 1px solid #eee; 472 561 } 562 473 563 #buddypress div.activity-comments form div.ac-reply-content { 474 564 color: #767676; … … 476 566 padding-left: 15px; 477 567 } 568 478 569 #buddypress div.activity-comments form div.ac-reply-content a { 479 570 text-decoration: none; 480 571 } 572 481 573 #buddypress .acomment-options { 482 574 float: left; 483 575 margin: 5px 0 5px 40px; 484 576 } 577 485 578 #buddypress .acomment-options a { 486 579 color: #767676; 487 580 } 581 488 582 #buddypress .acomment-options a:hover { 489 583 color: inherit; … … 497 591 margin: -39px 0 0 0; 498 592 } 499 #buddypress div.dir-search input[type=text], 500 #buddypress li.groups-members-search input[type=text] { 593 594 #buddypress div.dir-search input[type="text"], 595 #buddypress li.groups-members-search input[type="text"] { 501 596 font-size: 90%; 502 597 padding: 1px 3px; 503 598 } 599 504 600 #buddypress .current-member-type { 505 601 font-style: italic; 506 602 } 603 507 604 #buddypress .dir-form { 508 605 clear: both; … … 515 612 margin: 0 0 15px; 516 613 } 614 517 615 #buddypress #message.info { 518 616 margin-bottom: 0; 519 617 } 618 520 619 #buddypress div#message.updated { 521 620 clear: both; 522 621 display: block; 523 622 } 623 524 624 #buddypress div#message p, 525 625 #sitewide-notice p { … … 528 628 padding: 10px 15px; 529 629 } 630 530 631 #buddypress div#message.error p { 531 632 background-color: #fdc; … … 534 635 color: #800; 535 636 } 637 536 638 #buddypress div#message.warning p { 537 639 background-color: #ffe0af; … … 540 642 color: #800; 541 643 } 644 542 645 #buddypress div#message.updated p { 543 646 background-color: #efc; … … 545 648 color: #250; 546 649 } 650 547 651 #buddypress #pass-strength-result { 548 652 background-color: #eee; … … 556 660 width: 150px; 557 661 } 662 558 663 #buddypress .standard-form #basic-details-section #pass-strength-result { 559 664 width: 35%; 560 665 } 666 561 667 #buddypress #pass-strength-result.error, 562 668 #buddypress #pass-strength-result.bad { … … 565 671 display: block; 566 672 } 673 567 674 #buddypress #pass-strength-result.good { 568 675 background-color: #ffec8b; … … 570 677 display: block; 571 678 } 679 572 680 #buddypress #pass-strength-result.short { 573 681 background-color: #ffa0a0; … … 575 683 display: block; 576 684 } 685 577 686 #buddypress #pass-strength-result.strong { 578 687 background-color: #c3ff88; … … 580 689 display: block; 581 690 } 691 582 692 #buddypress .standard-form#signup_form div div.error { 583 693 background: #faa; 584 694 color: #a00; 585 margin: 0 0 10px 0;695 margin: 0 0 10px; 586 696 padding: 6px; 587 697 width: 90%; 588 698 } 699 589 700 #buddypress div.accept, 590 701 #buddypress div.reject { … … 592 703 margin-left: 10px; 593 704 } 705 594 706 #buddypress ul.button-nav li { 595 707 float: left; … … 597 709 list-style: none; 598 710 } 711 599 712 #buddypress ul.button-nav li.current a { 600 font-weight: bold; 601 } 713 font-weight: 700; 714 } 715 602 716 #sitewide-notice #message { 603 717 left: 2%; … … 607 721 z-index: 9999; 608 722 } 723 609 724 #sitewide-notice.admin-bar-on #message { 610 725 top: 3.3em; 611 726 } 727 612 728 #sitewide-notice strong { 613 729 display: block; … … 625 741 626 742 #buddypress .standard-form textarea, 627 #buddypress .standard-form input[type= text],628 #buddypress .standard-form input[type= color],629 #buddypress .standard-form input[type= date],630 #buddypress .standard-form input[type= datetime],631 #buddypress .standard-form input[type= datetime-local],632 #buddypress .standard-form input[type= email],633 #buddypress .standard-form input[type= month],634 #buddypress .standard-form input[type= number],635 #buddypress .standard-form input[type= range],636 #buddypress .standard-form input[type= search],637 #buddypress .standard-form input[type= tel],638 #buddypress .standard-form input[type= time],639 #buddypress .standard-form input[type= url],640 #buddypress .standard-form input[type= week],743 #buddypress .standard-form input[type="text"], 744 #buddypress .standard-form input[type="color"], 745 #buddypress .standard-form input[type="date"], 746 #buddypress .standard-form input[type="datetime"], 747 #buddypress .standard-form input[type="datetime-local"], 748 #buddypress .standard-form input[type="email"], 749 #buddypress .standard-form input[type="month"], 750 #buddypress .standard-form input[type="number"], 751 #buddypress .standard-form input[type="range"], 752 #buddypress .standard-form input[type="search"], 753 #buddypress .standard-form input[type="tel"], 754 #buddypress .standard-form input[type="time"], 755 #buddypress .standard-form input[type="url"], 756 #buddypress .standard-form input[type="week"], 641 757 #buddypress .standard-form select, 642 #buddypress .standard-form input[type= password],643 #buddypress .dir-search input[type= search],644 #buddypress .dir-search input[type= text],645 #buddypress .groups-members-search input[type= search],646 #buddypress .groups-members-search input[type= text] {758 #buddypress .standard-form input[type="password"], 759 #buddypress .dir-search input[type="search"], 760 #buddypress .dir-search input[type="text"], 761 #buddypress .groups-members-search input[type="search"], 762 #buddypress .groups-members-search input[type="text"] { 647 763 border: 1px solid #ccc; 648 764 background: #fafafa; … … 653 769 padding: 6px; 654 770 } 771 655 772 #buddypress .standard-form select { 656 773 padding: 3px; 657 774 } 658 #buddypress .standard-form input[type=password] { 775 776 #buddypress .standard-form input[type="password"] { 659 777 margin-bottom: 5px; 660 778 } 779 661 780 #buddypress .standard-form label, 662 781 #buddypress .standard-form span.label, 663 782 #buddypress .standard-form legend { 664 783 display: block; 665 font-weight: bold;666 margin: 15px 0 5px 0;784 font-weight: 700; 785 margin: 15px 0 5px; 667 786 width: auto; 668 787 } 788 669 789 #buddypress .standard-form p label, 670 790 #buddypress .standard-form #invite-list label { 671 font-weight: normal;791 font-weight: 400; 672 792 margin: auto; 673 793 } 794 674 795 #buddypress .standard-form .checkbox label, 675 796 #buddypress .standard-form .radio label { 676 797 color: #767676; 677 798 font-size: 100%; 678 font-weight: normal; 679 margin: 5px 0 0 0; 680 } 799 font-weight: 400; 800 margin: 5px 0 0; 801 } 802 681 803 #buddypress .standard-form .checkbox label input, 682 804 #buddypress .standard-form .radio label input { 683 805 margin-right: 3px; 684 806 } 807 685 808 #buddypress .standard-form#sidebar-login-form label { 686 809 margin-top: 5px; 687 810 } 688 #buddypress .standard-form input[type=text] { 811 812 #buddypress .standard-form input[type="text"] { 689 813 width: 75%; 690 814 } 691 #buddypress .standard-form#sidebar-login-form input[type=text], 692 #buddypress .standard-form#sidebar-login-form input[type=password] { 815 816 #buddypress .standard-form#sidebar-login-form input[type="text"], 817 #buddypress .standard-form#sidebar-login-form input[type="password"] { 693 818 padding: 4px; 694 819 width: 95%; 695 820 } 696 #buddypress .standard-form #basic-details-section input[type=password], 821 822 #buddypress .standard-form #basic-details-section input[type="password"], 697 823 #buddypress .standard-form #blog-details-section input#signup_blog_url { 698 824 width: 35%; 699 825 } 700 #buddypress .standard-form#signup_form input[type=text], 826 827 #buddypress .standard-form#signup_form input[type="text"], 701 828 #buddypress .standard-form#signup_form textarea, 702 829 #buddypress .form-allowed-tags, 703 #buddypress #commentform input[type= text],830 #buddypress #commentform input[type="text"], 704 831 #buddypress #commentform textarea { 705 832 width: 90%; 706 833 } 834 707 835 #buddypress .standard-form#signup_form div.submit { 708 836 float: right; 709 837 } 838 710 839 #buddypress div#signup-avatar img { 711 840 margin: 0 15px 10px 0; 712 841 } 842 713 843 #buddypress .standard-form textarea { 714 844 width: 75%; 715 845 height: 120px; 716 846 } 847 717 848 #buddypress .standard-form textarea#message_content { 718 849 height: 200px; 719 850 } 851 720 852 #buddypress .standard-form#send-reply textarea { 721 853 width: 97.5%; 722 854 } 855 723 856 #buddypress .standard-form p.description { 724 857 color: #767676; … … 726 859 margin: 5px 0; 727 860 } 861 728 862 #buddypress .standard-form div.submit { 729 863 clear: both; 730 padding: 15px 0 0 0; 731 } 864 padding: 15px 0 0; 865 } 866 732 867 #buddypress .standard-form p.submit { 733 868 margin-bottom: 0; 734 padding: 15px 0 0 0; 735 } 869 padding: 15px 0 0; 870 } 871 736 872 #buddypress .standard-form div.submit input { 737 873 margin-right: 15px; 738 874 } 875 739 876 #buddypress .standard-form div.radio ul { 740 877 margin: 10px 0 15px 38px; 741 878 list-style: disc; 742 879 } 880 743 881 #buddypress .standard-form div.radio ul li { 744 882 margin-bottom: 5px; 745 883 } 884 746 885 #buddypress .standard-form a.clear-value { 747 886 display: block; … … 749 888 outline: none; 750 889 } 890 751 891 #buddypress .standard-form #basic-details-section, 752 892 #buddypress .standard-form #blog-details-section, … … 755 895 width: 48%; 756 896 } 897 757 898 #buddypress .standard-form #profile-details-section { 758 899 float: right; 759 900 } 901 760 902 #buddypress .standard-form #blog-details-section, 761 903 #buddypress #notifications-bulk-management { 762 904 clear: left; 763 905 } 906 764 907 body.no-js #buddypress #notifications-bulk-management #select-all-notifications, 765 908 body.no-js #buddypress label[for="message-type-select"], … … 770 913 display: none; 771 914 } 915 772 916 #buddypress .standard-form input:focus, 773 917 #buddypress .standard-form textarea:focus, … … 776 920 color: #555; 777 921 } 922 778 923 #buddypress form#send-invite-form { 779 924 margin-top: 20px; 780 925 } 926 781 927 #buddypress div#invite-list { 782 928 background: #f5f5f5; … … 787 933 width: 160px; 788 934 } 935 789 936 #buddypress .standard-form button, 790 937 #buddypress a.button, 791 #buddypress input[type= submit],792 #buddypress input[type= button],793 #buddypress input[type= reset],938 #buddypress input[type="submit"], 939 #buddypress input[type="button"], 940 #buddypress input[type="reset"], 794 941 #buddypress ul.button-nav li a, 795 942 #buddypress .generic-button a, … … 806 953 text-decoration: none; 807 954 } 955 808 956 #buddypress .standard-form button:hover, 809 957 #buddypress a.button:hover, 810 958 #buddypress a.button:focus, 811 #buddypress input[type= submit]:hover,812 #buddypress input[type= button]:hover,813 #buddypress input[type= reset]:hover,959 #buddypress input[type="submit"]:hover, 960 #buddypress input[type="button"]:hover, 961 #buddypress input[type="reset"]:hover, 814 962 #buddypress ul.button-nav li a:hover, 815 963 #buddypress ul.button-nav li.current a, … … 827 975 } 828 976 829 #buddypress form.standard-form .left-menu #invite-list ul {830 margin: 1%;977 #buddypress form.standard-form .left-menu #invite-list ul { 978 margin: 1%; 831 979 list-style: none; 832 980 } 833 981 834 982 #buddypress form.standard-form .left-menu #invite-list ul li { 835 margin: 0 0 0 1%;983 margin: 0 0 0 1%; 836 984 } 837 985 … … 841 989 842 990 #buddypress form.standard-form .main-column ul#friend-list { 843 clear: none;991 clear: none; 844 992 float: left; 845 993 } … … 847 995 #buddypress form.standard-form .main-column ul#friend-list h3, 848 996 #buddypress form.standard-form .main-column ul#friend-list h4 { 849 clear: none;997 clear: none; 850 998 } 851 999 … … 853 1001 #buddypress .wp-editor-wrap a.button, 854 1002 #buddypress .wp-editor-wrap button, 855 #buddypress .wp-editor-wrap input[type= submit],856 #buddypress .wp-editor-wrap input[type= button],857 #buddypress .wp-editor-wrap input[type= reset] {1003 #buddypress .wp-editor-wrap input[type="submit"], 1004 #buddypress .wp-editor-wrap input[type="button"], 1005 #buddypress .wp-editor-wrap input[type="reset"] { 858 1006 padding: 0 8px 1px; 859 1007 } 860 1008 861 1009 /* Form classes & generic attr styling */ 862 #buddypress form *[disabled="disabled"] {1010 #buddypress form *[disabled="disabled"] { 863 1011 cursor: default; 864 opacity: .4;1012 opacity: 0.4; 865 1013 } 866 1014 … … 917 1065 #buddypress a.loading, 918 1066 #buddypress input.loading { 919 -webkit-animation: loader-pulsate .5s infinite ease-in-out alternate;920 -moz-animation: loader-pulsate .5s infinite ease-in-out alternate;1067 -webkit-animation: loader-pulsate 0.5s infinite ease-in-out alternate; 1068 -moz-animation: loader-pulsate 0.5s infinite ease-in-out alternate; 921 1069 border-color: #aaa; 922 1070 } 1071 923 1072 @-webkit-keyframes loader-pulsate {