Commit 6e90cf7aa82c4c3b9e7e5aa16e63bafdd1453b3f

Authored by Rodrigo Souto
1 parent a0071fb7

profile-suggestions: add border on every suggestion

public/designs/themes/base/style.css
... ... @@ -1278,6 +1278,20 @@ hr.pre-posts, hr.sep-posts {
1278 1278  
1279 1279 /******** controller-friends action-friends-index ********/
1280 1280  
  1281 +.profile-list li,
  1282 +.common-profile-list-block .vcard {
  1283 + border: 1px solid transparent;
  1284 +}
  1285 +
  1286 +.profile-list li:hover,
  1287 +.common-profile-list-block .vcard:hover {
  1288 + border: 1px solid #CCC;
  1289 + -moz-border-radius: 5px;
  1290 + -webkit-border-radius: 5px;
  1291 + background: #EEE;
  1292 + text-decoration: none;
  1293 +}
  1294 +
1281 1295 .common-profile-list-block .vcard a,
1282 1296 .common-profile-list-block .vcard a:hover {
1283 1297 background: transparent;
... ...
public/stylesheets/application.css
... ... @@ -4147,7 +4147,6 @@ h1#agenda-title {
4147 4147 .common-profile-list-block .profiles-suggestions .profile-list li {
4148 4148 width: 100%;
4149 4149 max-width: 100%;
4150   - height: 70px;
4151 4150 max-height: 100%;
4152 4151 overflow: hidden;
4153 4152 text-overflow: ellipsis;
... ...