[eGroupWare-svn] r55876 - in /trunk: jdots/js/ pixelegg/css/ pixelegg/mobile/
[email protected] Wed, 27 Apr 2016 09:58:53 -0000
Newsgroups
gmane.comp.web.egroupware.cvs
Message-ID
<[email protected] >
Author: hnategh
Date: Wed Apr 27 11:58:52 2016
New Revision: 55876
URL: http://svn.stylite.de/viewvc/egroupware?rev=55876&view=rev
Log:
Mobile theme:
- Fix jumping issue in edit dialog, happened only on iOS Safari
- Fix search widget height
Modified:
trunk/jdots/js/fw_mobile.js
trunk/pixelegg/css/mobile.css
trunk/pixelegg/css/mobile.less
trunk/pixelegg/mobile/fw_mobile.css
trunk/pixelegg/mobile/fw_mobile.less
Modified: trunk/jdots/js/fw_mobile.js
URL: http://svn.stylite.de/viewvc/egroupware/trunk/jdots/js/fw_mobile.js?rev=55876&r1=55875&r2=55876&view=diff
==============================================================================
--- trunk/jdots/js/fw_mobile.js (original)
+++ trunk/jdots/js/fw_mobile.js Wed Apr 27 11:58:52 2016
@@ -197,6 +197,11 @@
},0);
}
});
+
+ // An iframe scrolling fix for iOS Safari
+ if (framework.getUserAgent() === 'iOS') {
+ window.setTimeout(function(){jQuery(self.$iFrame).height(popupWindow.document.body.scrollHeight);}, 500);
+ }
});
Modified: trunk/pixelegg/css/mobile.css
URL: http://svn.stylite.de/viewvc/egroupware/trunk/pixelegg/css/mobile.css?rev=55876&r1=55875&r2=55876&view=diff
==============================================================================
--- trunk/pixelegg/css/mobile.css (original)
+++ trunk/pixelegg/css/mobile.css Wed Apr 27 11:58:52 2016
@@ -6697,8 +6697,6 @@
position: absolute;
display: none;
z-index: 999;
- -webkit-overflow-scrolling: touch;
- overflow-y: scroll;
}
body .egw_fw_mobile_popup_container .egw_fw_mobile_popupFrame {
width: 100%;
Modified: trunk/pixelegg/css/mobile.less
URL: http://svn.stylite.de/viewvc/egroupware/trunk/pixelegg/css/mobile.less?rev=55876&r1=55875&r2=55876&view=diff
==============================================================================
--- trunk/pixelegg/css/mobile.less (original)
+++ trunk/pixelegg/css/mobile.less Wed Apr 27 11:58:52 2016
@@ -793,8 +793,6 @@
position:absolute;
display: none;
z-index: 999;
- -webkit-overflow-scrolling: touch;
- overflow-y:scroll;
.egw_fw_mobile_popupFrame {
width: 100%;
height: 100%;
Modified: trunk/pixelegg/mobile/fw_mobile.css
URL: http://svn.stylite.de/viewvc/egroupware/trunk/pixelegg/mobile/fw_mobile.css?rev=55876&r1=55875&r2=55876&view=diff
==============================================================================
--- trunk/pixelegg/mobile/fw_mobile.css (original)
+++ trunk/pixelegg/mobile/fw_mobile.css Wed Apr 27 11:58:52 2016
@@ -6708,8 +6708,6 @@
position: absolute;
display: none;
z-index: 999;
- -webkit-overflow-scrolling: touch;
- overflow-y: scroll;
}
body .egw_fw_mobile_popup_container .egw_fw_mobile_popupFrame {
width: 100%;
@@ -7742,6 +7740,9 @@
}
body .popupMainDiv {
padding-top: 60px !important;
+ padding-left: 8px;
+ padding-right: 8px;
+ overflow-x: hidden;
/* Exceptional cases to not get the general left padding*/
}
body .popupMainDiv * {
@@ -7837,6 +7838,9 @@
}
body .popupMainDiv form.et2_container div table.et2_grid tbody tr .row td .et2_box_widget input {
margin: 0 5px 0 0;
+ }
+ body div#popupMainDiv {
+ padding: 0;
}
body .dialogHeadbar button[class*="et2_button_with_image"]:not([class*="et2_toolbar_hasCaption"]) {
-webkit-filter: brightness(0) invert(1) !important;
@@ -8040,7 +8044,7 @@
}
body .et2_searchbox.expanded input {
width: 100%;
- height: 45px;
+ height: 42px;
margin: 0;
top: 0;
outline: none;
@@ -8051,12 +8055,11 @@
top: 0px;
left: -50px;
background-color: white;
- height: 49px;
+ height: 50px;
width: 50px;
background-image: url("../images/cancelled.svg");
background-position: center;
background-repeat: no-repeat;
- border-bottom: 1px solid #e6e6e6;
background-size: 24px 24px;
}
body .et2_searchbox.expanded .flex {
Modified: trunk/pixelegg/mobile/fw_mobile.less
URL: http://svn.stylite.de/viewvc/egroupware/trunk/pixelegg/mobile/fw_mobile.less?rev=55876&r1=55875&r2=55876&view=diff
==============================================================================
--- trunk/pixelegg/mobile/fw_mobile.less (original)
+++ trunk/pixelegg/mobile/fw_mobile.less Wed Apr 27 11:58:52 2016
@@ -889,6 +889,9 @@
.et2_button_icon {height:32px;}
.popupMainDiv {
padding-top: 60px !important;
+ padding-left:8px;
+ padding-right:8px;
+ overflow-x:hidden;
* {
.mob-fontsize-n;
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
@@ -968,6 +971,7 @@
form.et2_container div table.et2_grid tbody tr .row td .et2_box_widget input {margin:0 5px 0 0;}
}
+ div#popupMainDiv {padding:0;}
.dialogHeadbar {
button[class*="et2_button_with_image"]:not([class*="et2_toolbar_hasCaption"]) {
.white-svg;
@@ -1191,7 +1195,7 @@
}
input {
width:100%;
- height:45px;
+ height:42px;
margin:0;
top:0;
outline: none;
@@ -1202,12 +1206,11 @@
top: 0px;
left: -50px;
background-color: white;
- height: 49px;
+ height: 50px;
width: 50px;
background-image: url("../images/cancelled.svg");
background-position: center;
background-repeat: no-repeat;
- border-bottom: 1px solid #e6e6e6;
background-size: 24px 24px;
}
.flex{
------------------------------------------------------------------------------
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z