Commit fc3d0dfdb892e52987f4ec2924f452895540382c

Authored by Arthur Sturzbecher
1 parent 52e342ff

Fixing software statistic icons

Signed-off-by: ArthurJahn <stutrzbecher@gmail.com>
Signed-off-by: melissawen <melissa.srw@gmail.com>
Showing 2 changed files with 22 additions and 11 deletions   Show diff stats
css/community-pages.css
... ... @@ -438,6 +438,7 @@ float: left;
438 438 display: none;
439 439 }
440 440  
  441 +.profile-type-is-community .action-profile_design-index #content .software-tab-data-block,
441 442 .profile-type-is-community .action-profile-index #content .software-tab-data-block{
442 443 display: block;
443 444 }
... ... @@ -448,11 +449,13 @@ float: left;
448 449 display: none;
449 450 }
450 451  
451   -/********Bloco de informacao da comunidade********/
  452 +/*Block with Community information - Need to develop solution - Only display on profile page */
  453 +
452 454 .profile-type-is-community .community-block{
453 455 display: none;
454 456 }
455 457  
  458 +.profile-type-is-community .action-profile_design-index #content .community-block,
456 459 .profile-type-is-community .action-profile-index #content .community-block{
457 460 display: block;
458 461 border: 1px solid #ECEDF1;
... ... @@ -494,7 +497,7 @@ float: left;
494 497 text-align: center;
495 498 }
496 499  
497   -/* Members block */
  500 +/*Block with Members information - Need to develop solution - Only display on profile page */
498 501  
499 502 .profile-type-is-community #content .members-block{
500 503 display: none;
... ... @@ -502,6 +505,7 @@ float: left;
502 505 border-radius: 4px;
503 506 }
504 507  
  508 +.profile-type-is-community .action-profile_design-index #content .members-block,
505 509 .profile-type-is-community .action-profile-index #content .members-block{
506 510 display: block;
507 511 }
... ...
css/software-pages.css
... ... @@ -460,29 +460,36 @@
460 460 }
461 461  
462 462 .software-metrics-block span.arrow-globe-icon {
463   - content: url('../images/arrow-globe-icon.png');
  463 + background: url('../images/arrow-globe-icon.png') no-repeat center center;
  464 + width: 25px;
  465 + height: 18px;
464 466 padding-right: 5px;
465 467 }
466 468  
467 469 .software-metrics-block span.downloads-icon {
468   - content: url('../images/downloads-icon.png');
469   - padding-right: 14px;
470   - padding-left: 1px;
  470 + background: url('../images/downloads-icon.png') no-repeat center center;
  471 + width: 25px;
  472 + height: 18px;
  473 + padding-right: 5px;
471 474 }
472 475  
473 476 .software-metrics-block span.face-icon {
474   - content: url('../images/beneficiados-icon.png');
475   - padding-right: 14px;
476   - padding-left: 1px;
  477 + background: url('../images/beneficiados-icon.png') no-repeat center center;
  478 + width: 25px;
  479 + height: 18px;
  480 + padding-right: 5px;
477 481 }
478 482  
479 483 .software-metrics-block span.pig-safe-icon {
480   - content: url('../images/economizados-icon.png');
481   - padding-right: 11px;
  484 + background: url('../images/economizados-icon.png') no-repeat center center;
  485 + width: 25px;
  486 + height: 18px;
  487 + padding-right: 5px;
482 488 }
483 489  
484 490 .software-metrics-block .metrics-list li a {
485 491 letter-spacing: -0.1px;
  492 + line-height: 17px;
486 493 }
487 494  
488 495 .software-metrics-block .admin-estimation {
... ...