Commit 68240541796f0fb9e0fb0b5f7b95f431626ce53e
1 parent
71e940e1
KTS-2891
"Search widget is too big as it is invisible when the screen resolution is low" Fixed. Added support for Safari Committed By: Conrad Vermeulen Reviewed By: Jonathan Bryne git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8098 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
0 deletions
resources/js/search2widget.js
| @@ -191,6 +191,8 @@ function createSearchBar(div, suffix) | @@ -191,6 +191,8 @@ function createSearchBar(div, suffix) | ||
| 191 | if (suffix == 1) | 191 | if (suffix == 1) |
| 192 | { | 192 | { |
| 193 | el.applyStyles('position:relative; top: -15px; margin-right: 15px'); | 193 | el.applyStyles('position:relative; top: -15px; margin-right: 15px'); |
| 194 | + if (Ext.isSafari) | ||
| 195 | + el.applyStyles('top: 0px'); | ||
| 194 | } | 196 | } |
| 195 | else | 197 | else |
| 196 | { | 198 | { |