From 24bb40cd1d25e28ccfc4709c7c462bcfa5aab12b Mon Sep 17 00:00:00 2001 From: Youmin Ha Date: Wed, 27 Feb 2013 16:32:45 +0900 Subject: [PATCH] collapsible: Set listitem position to relative Normal li elements have position:relative by JQM, but the collapsible listitems don't have it. This patch fixed the bug which comes from this position problem. Resolves N_SE-24667. Change-Id: If4bc92a55fa06f8a0b67cbfb9fcd29842a013d66 --- src/themes/tizen/common/jquery.mobile.collapsible.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/themes/tizen/common/jquery.mobile.collapsible.less b/src/themes/tizen/common/jquery.mobile.collapsible.less index 7802a84..b6e4a0e 100644 --- a/src/themes/tizen/common/jquery.mobile.collapsible.less +++ b/src/themes/tizen/common/jquery.mobile.collapsible.less @@ -21,6 +21,9 @@ .ui-collapsible-set .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn { border-top-width: 1px; } +.ui-collapsible-heading, .ui-collapsible-content > li { + position: relative; +} .ui-collapsible-heading { font-size: @list-font-size-main; display: block; -- 2.7.4