Update 1.0.85

This commit is contained in:
ultimatemember
2015-03-14 23:39:33 +02:00
parent 506593f409
commit 5815557192
27 changed files with 238 additions and 77 deletions
+14
View File
@@ -26,4 +26,18 @@
.um-misc-ul,
.um-misc-ul li {
font-size: 14px;
}
/* profile misc */
.um-profile-connect.um-member-connect {
padding: 5px 0 10px 0;
}
.um-profile-connect.um-member-connect a {
text-align: center;
width: 36px;
line-height: 36px;
height: 36px;
font-size: 20px;
}
+25 -5
View File
@@ -347,12 +347,13 @@ font-weight: normal;
text-align: center;
}
.um-profile-nav-item.active a {
.um-profile-nav-item.active a,
.um-profile-nav-item.active a:hover {
background: #3ba1da;
color: #FFF!important;
}
.um-profile-nav-item.active a span.count {background: transparent}
.um-profile-nav-item.active a span.count {background: transparent;padding: 4px 0;color: #fff}
.um-profile-nav-item a {
color: #fff!important;
@@ -377,9 +378,10 @@ font-weight: normal;
.um-profile-nav-item span.count {
font-size: 12px;
font-weight: 300;
background: #777;
background: #ddd;
color: #666;
border-radius: 3px;
padding: 2px 4px;
padding: 4px 8px;
margin-left: 3px;
}
@@ -446,12 +448,30 @@ font-weight: normal;
.um-item-link i {
font-size: 24px;
color: #ccc;
color: #666;
margin-right: 10px;
position: relative;
top: 3px;
}
.um-item-img {
padding: 10px 0 0 0;
}
.um-item-img a {
display: inline-block;
padding: 8px;
border-radius: 3px;
border: 1px solid #ddd;
}
.um-item-img a:hover {border-color: #bbb}
.um-item-img img {
max-width: 100%;
border-radius: 3px;
}
.um-item-meta {color: #888}
.um-item-meta span {
+1 -1
View File
File diff suppressed because one or more lines are too long
+2
View File
@@ -29,8 +29,10 @@ jQuery(document).ready(function() {
});
jQuery(document).on('click', '.um-photo-modal', function(e){
e.preventDefault();
var photo_src = jQuery(this).attr('data-src');
um_new_modal('um_view_photo', 'fit', true, photo_src );
return false;
});
jQuery(document).on('click', '.um-reset-profile-photo', function(e){
+1 -1
View File
File diff suppressed because one or more lines are too long