Update 1.2.92

This commit is contained in:
ultimatemember
2015-05-02 02:49:05 +03:00
parent 3c960b187c
commit 77cde02dd8
43 changed files with 1184 additions and 111 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
.um .um-single-image-preview > img {
max-height: 300px;
display: block;
display: inline-block;
overflow: hidden;
margin: auto;
-moz-border-radius: 3px;
+16 -5
View File
@@ -5,7 +5,12 @@
position: fixed;
top: 0;
left: 0;
z-index: 1564;
z-index: 1999992;
}
.um-popup * {
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}
.um-popup {
@@ -19,11 +24,13 @@
width: 500px;
background: #fff;
box-shadow: 0 1px 3px #111;
z-index: 1565;
z-index: 1999993;
box-sizing: border-box;
overflow: auto;
color: #888;
padding: 10px 0;
padding: 0 !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}
.um-popup.loading {
@@ -31,6 +38,10 @@
min-height: 100px;
}
.um-popup a {
outline: none !important;
}
/*
- Overlay
*/
@@ -42,7 +53,7 @@
position: fixed;
top: 0;
left: 0;
z-index: 100000;
z-index: 1999992;
}
/*
@@ -76,7 +87,7 @@
position: fixed;
left: 50%;
display: none;
z-index: 100010;
z-index: 1999993;
box-sizing: border-box;
bottom: -50px;
}
+18 -1
View File
@@ -341,6 +341,8 @@ font-weight: normal;
color: #888;
}
.um-profile-note a{border:none!important}
.um-profile-note a:hover {
text-decoration: underline !important;
}
@@ -380,7 +382,7 @@ font-weight: normal;
.um-profile-nav-item.without-icon i {display: none}
.um-profile-nav-item a:hover {background: #555}
.um-profile-nav-item i {font-size: 18px;height: 18px;line-height: 18px;position: absolute;display: block;top: 8px;left: 10px}
.um-profile-nav-item i {font-size: 18px;height: 18px;line-height: 18px;position: absolute;display: block;top: 7px;left: 10px}
.um-profile-nav-item span.title {padding-left: 5px}
.um-profile-nav-item span.count {
font-size: 12px;
@@ -509,4 +511,19 @@ font-weight: normal;
max-width: 250px;
display: inline-block;
margin: 0 auto;
}
.um-tab-notifier {
position: absolute;
background: none repeat scroll 0% 0% rgb(198, 81, 81);
right: 0px;
top: 0px;
width: 18px;
height: 18px;
border-radius: 999px;
line-height: 18px;
top: 2px;
right: 8px;
font-size: 11px;
font-weight: 400;
}
+3 -3
View File
@@ -731,10 +731,10 @@ div.uimob960 .um-gutter-sizer {width: 4%}
@media screen and (max-width: 600px) {
.um-popup {
width: 90%;
margin-left: 5%;
width: 96%;
margin-left: 2%;
left: 0;
top: 5%;
top: 15px;
}
}
+3 -3
View File
@@ -115,7 +115,7 @@ Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014
height: auto !important;
width: auto !important;
opacity: 0 !important;
z-index: 100030 !important;
z-index: 1999997 !important;
/* styles required for IE to work */
background-color: #fff !important;
filter: alpha(opacity=0) !important;
@@ -125,7 +125,7 @@ Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014
width: 100%;
margin-top: -1px;
position: absolute;
z-index: 100040 !important;
z-index: 1999998 !important;
top: 100%;
background: #fff;
@@ -216,7 +216,7 @@ Version: 3.4.8 Timestamp: Thu May 1 09:50:32 EDT 2014
padding-right: 4px !important;
position: relative !important;
z-index: 100050 !important;
z-index: 1999999 !important;
white-space: nowrap !important;
}
+2 -2
View File
@@ -1,4 +1,4 @@
.tipsy { padding: 5px; position: absolute; z-index: 100020; }
.tipsy { padding: 5px; position: absolute; z-index: 9999999999; }
.tipsy-inner {
font-size: 13px !important;
@@ -6,7 +6,7 @@
background-color: #333333 !important;
color: #fff !important;
max-width: 250px !important;
padding: 10px 12px !important;
padding: 6px 10px !important;
text-align: left !important;
word-wrap: break-word !important;
-webkit-font-smoothing: antialiased !important;
+2 -1
View File
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

+11 -5
View File
@@ -770,16 +770,22 @@ function remove_Modal() {
function show_Modal( contents ) {
if ( jQuery('.um-popup-overlay').length ) {
jQuery('.um-popup').removeClass('loading').html( contents );
jQuery('.um-popup').mCustomScrollbar({
theme:"dark-3"
});
}
}
function responsive_Modal() {
if ( jQuery('.um-popup-overlay').length ) {
jQuery('.um-popup').css({
'max-height': ( 80 / 100 ) * jQuery(window).height() + 'px'
ag_height = jQuery(window).height() - jQuery('.um-popup-header').outerHeight() - jQuery('.um-popup-footer').outerHeight() - 40;
if ( ag_height > 350 ) {
ag_height = 350;
}
jQuery('.um-popup-autogrow').css({
'height': ag_height + 'px'
});
jQuery('.um-popup-autogrow').mCustomScrollbar({
theme:"dark-3"
}).mCustomScrollbar("scrollTo", "bottom",{ scrollInertia:0});
}
}
+1 -1
View File
@@ -6,7 +6,7 @@ jQuery(window).load(function() {
});
jQuery(window).resize(function() {
responsive_Modal();
jQuery('.um-modal .um-single-image-preview.crop:visible img').cropper("destroy");
um_responsive();
+4 -4
View File
@@ -25,10 +25,10 @@ jQuery(document).ready(function() {
jQuery(this).parents( parent ).find( child ).trigger('click');
});
jQuery('.um-tip-n').tipsy({gravity: 'n', opacity: 1, live: 'a.live', offset: 3 });
jQuery('.um-tip-w').tipsy({gravity: 'w', opacity: 1, live: 'a.live', offset: 3 });
jQuery('.um-tip-e').tipsy({gravity: 'e', opacity: 1, live: 'a.live', offset: 3 });
jQuery('.um-tip-s').tipsy({gravity: 's', opacity: 1, live: 'a.live', offset: 3 });
jQuery('.um-tip-n').tipsy({gravity: 'n', opacity: 1, live: 'a.live', offset: 3, delayIn: 500 });
jQuery('.um-tip-w').tipsy({gravity: 'w', opacity: 1, live: 'a.live', offset: 3, delayIn: 500 });
jQuery('.um-tip-e').tipsy({gravity: 'e', opacity: 1, live: 'a.live', offset: 3, delayIn: 500 });
jQuery('.um-tip-s').tipsy({gravity: 's', opacity: 1, live: 'a.live', offset: 3, delayIn: 500 });
jQuery(document).on('change', '.um-field input[type=radio]', function(){
var field = jQuery(this).parents('.um-field');
+3 -3
View File
File diff suppressed because one or more lines are too long