Commit c488365340743af7f678818c905be5228728a2af

Authored by Victor Costa
2 parents 7367f307 248ceba9

Merge branch 'master' of github.com:SerproLivre/participa-theme

Showing 2 changed files with 34 additions and 5 deletions   Show diff stats
style.css
... ... @@ -276,6 +276,7 @@ p {
276 276 .action-environment_design-index .communities-block .common-profile-list-block .profile-image img {
277 277 max-width: 76px;
278 278 max-height: 76px;
  279 + vertical-align: middle;
279 280 }
280 281  
281 282 .action-home-index .communities-block .common-profile-list-block span.org,
... ... @@ -290,6 +291,13 @@ p {
290 291 display: inline-block;
291 292 }
292 293  
  294 +.action-home-index .communities-block .common-profile-list-block .profile-image .helper,
  295 +.action-environment_design-index .communities-block .common-profile-list-block .profile-image .helper {
  296 + vertical-align: middle;
  297 + height: 100%;
  298 + display: inline-block;
  299 +}
  300 +
293 301  
294 302 /*****************/
295 303  
... ... @@ -512,7 +520,7 @@ p {
512 520 .action-environment_design-index #content .container-block-plugin_container-block .display-content-block .image img {
513 521 height: 100%;
514 522 max-height: 200px;
515   - max-width: 295px;
  523 + max-width: 250px;
516 524 }
517 525  
518 526  
... ... @@ -998,7 +1006,7 @@ input.button.with-text {
998 1006 clear: right;
999 1007 margin: 0 9px 9px;
1000 1008 max-width: 214px;
1001   - height: 405px;
  1009 + height: 426px;
1002 1010 padding: 0;
1003 1011 width: 214px;
1004 1012 }
... ... @@ -1021,7 +1029,7 @@ input.button.with-text {
1021 1029 /**/
1022 1030  
1023 1031 #content .track_list .item_card .track_content{
1024   - height: 355px;
  1032 + height: 390px;
1025 1033 overflow: hidden;
1026 1034 }
1027 1035  
... ... @@ -1057,6 +1065,7 @@ input.button.with-text {
1057 1065 text-align: left;
1058 1066 margin: 0 8px;
1059 1067 color: #444;
  1068 + text-transform: uppercase;
1060 1069 }
1061 1070  
1062 1071  
... ... @@ -1066,6 +1075,7 @@ input.button.with-text {
1066 1075 margin: 0 8px;
1067 1076 text-align: left;
1068 1077 color: black;
  1078 + font-size: 12px;
1069 1079 }
1070 1080  
1071 1081 /**/
... ... @@ -1124,7 +1134,7 @@ input.button.with-text {
1124 1134 padding: 3px 0 0 30px;
1125 1135 text-align: left;
1126 1136 font-size: 10pt;
1127   - display: block;
  1137 + /*display: block;*/
1128 1138 color: #444;
1129 1139 }
1130 1140 .track_list .item_card .track_stats .comments{
... ... @@ -1138,8 +1148,12 @@ input.button.with-text {
1138 1148 font-size: 7pt;
1139 1149 /*float: right;*/
1140 1150 color: #444;
1141   -
1142 1151 }
  1152 +.track_list .item_card .track_stats .comments .label {
  1153 + display: none;
  1154 + visibility: hidden;
  1155 +}
  1156 +
1143 1157 /**/
1144 1158  
1145 1159  
... ... @@ -1369,6 +1383,12 @@ input.button.with-text {
1369 1383 font-family: Arial, sans-serif;
1370 1384 }
1371 1385  
  1386 +.action-home-index #content .community-track-plugin_track-card-list-block .view_all a{
  1387 + position: absolute;
  1388 + right: -12px;
  1389 + top: -33px;
  1390 +}
  1391 +
1372 1392 .action-home-index #content .article-block .short-post .read-more a {
1373 1393 background: url("images/button-read-more-vazio.png") no-repeat scroll left 50% transparent;
1374 1394 color: #333;
... ... @@ -1954,3 +1974,10 @@ body.contraste #social-icons #sb_flickr {
1954 1974 #article .dislike-action .like-action-counter {
1955 1975 color: #CC0000;
1956 1976 }
  1977 +
  1978 +.vote-actions {
  1979 + position: relative;
  1980 + right: 0;
  1981 + top: 0;
  1982 +}
  1983 +
... ...
theme.js
... ... @@ -13,6 +13,8 @@
13 13  
14 14 });
15 15  
  16 + $( ".profile-image" ).prepend( "<span class='helper'></span>" );
  17 +
16 18 })(jQuery);
17 19  
18 20  
... ...