Commit 99b94a44 authored by Fabien Morin's avatar Fabien Morin

- use showPopik only in web mode (because the javascript function is defined...

- use showPopik only in web mode (because the javascript function is defined in erp5_web portal_skins)
- enhance a bit css for quick search

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26178 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a5fc5bc0
......@@ -259,8 +259,8 @@ tal:define=" listbox_max_lines python: int(here.getMaxLineNumber());\n
\n
<td>\n
<div class="item_nohighlight"\n
tal:attributes="onmouseover string: showPopik(\'${hidden_pop_dom_id}\', true);\n
onmouseout string: showPopik(\'${hidden_pop_dom_id}\', false);">\n
tal:attributes="onmouseover python: is_web_mode and \'showPopik(\\\'%s\\\', true)\' % hidden_pop_dom_id or None;\n
onmouseout python: is_web_mode and \'showPopik(\\\'%s\\\', false)\' % hidden_pop_dom_id or None;">\n
\n
<div class="search_popup" \n
style="z-index:100;"\n
......
......@@ -1243,7 +1243,8 @@ div.popup_row a{\n
color: green!important;\n
}\n
div.searchResultHeader {\n
border-top: 1px solid <dtml-var document_border_color>;\n
margin-top: 0em;\n
border: 1px solid <dtml-var document_border_color>;\n
background-color: <dtml-var listbox_label_background_color>;\n
padding: .2em;\n
}\n
......@@ -1256,7 +1257,8 @@ div.searchResultHeader .left {float: left}\n
table.documentList {\n
width: 100%;\n
margin-bottom: 1em;\n
border: 1px solid;\n
border-style: solid;\n
border-width: 0 1px 1px 1px;\n
border-color:<dtml-var document_border_color>;\n
}\n
\n
......@@ -1395,13 +1397,6 @@ div.searchResultHeader #style_toggle_icon,\n
vertical-align:bottom;\n
}\n
\n
div.searchResultHeader {\n
border-style: solid;\n
border-width: 1px 1px 0 1px;\n
border-color:<dtml-var document_border_color>;\n
margin-top: 0em;\n
}\n
\n
div.search .centeredInner {\n
text-align: center;\n
}\n
......
680
\ No newline at end of file
681
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment