Commit f62ecb11 authored by Gabriel Monnerat's avatar Gabriel Monnerat

refactor style of listbox DomainTree

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42049 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 056bbbda
...@@ -148,7 +148,7 @@ $(document).ready(function(){\n ...@@ -148,7 +148,7 @@ $(document).ready(function(){\n
});\n });\n
$("tbody tr td.listbox-table-domain-tree-cell a").each(function(){\n $("tbody tr td.listbox-table-domain-tree-cell a").each(function(){\n
if ($(this).text().length == 16){\n if ($(this).text().length == 16){\n
$(this).css("padding-right", "101px")\n $(this).css("padding-right", "82px")\n
}\n }\n
if ($(this).text().length > 16){\n if ($(this).text().length > 16){\n
$(this).css("padding-right", "35px")\n $(this).css("padding-right", "35px")\n
...@@ -162,6 +162,18 @@ $(document).ready(function(){\n ...@@ -162,6 +162,18 @@ $(document).ready(function(){\n
if ($(this).text() == "Trash")\n if ($(this).text() == "Trash")\n
$(this).html($(this).text() + createBlankSpace(13));\n $(this).html($(this).text() + createBlankSpace(13));\n
})\n })\n
var listboxTreeHeight = $("div.listbox-tree").css("height").replace("px", "");\n
var domainTreeHeight = $("div.listbox-domain-tree-container").css("height").replace("px", "");\n
if (parseInt(listboxTreeHeight) > parseInt(domainTreeHeight)){\n
window.onload = function() {\n
$("div.listbox-tree").css("height", $("div.listbox-domain-tree-container").css("height"));\n
}\n
}\n
if (parseInt(domainTreeHeight) > 233) {\n
window.onload = function() {\n
$("div.listbox-tree").css("overflow-y", "scroll");\n
}\n
}\n
$("body").css("overflow", "hidden");\n $("body").css("overflow", "hidden");\n
var navigation_html = $("div.listbox-footer div.listbox-page-navigation").html();\n var navigation_html = $("div.listbox-footer div.listbox-page-navigation").html();\n
$("div.listbox-footer div.listbox-page-navigation").remove();\n $("div.listbox-footer div.listbox-page-navigation").remove();\n
......
...@@ -822,7 +822,10 @@ div.listbox-domain-tree-container select {\n ...@@ -822,7 +822,10 @@ div.listbox-domain-tree-container select {\n
\n \n
div.listbox-tree {\n div.listbox-tree {\n
font-size: 13px;\n font-size: 13px;\n
width: 103%;\n width: 98.7%;\n
overflow-y: hidden;\n
overflow-x: hidden;\n
height: 233px;\n
}\n }\n
\n \n
div.listbox-tree-mode-selection {\n div.listbox-tree-mode-selection {\n
...@@ -835,7 +838,7 @@ table.listbox-table-domain-tree {\n ...@@ -835,7 +838,7 @@ table.listbox-table-domain-tree {\n
\n \n
td.listbox-table-domain-tree-cell a {\n td.listbox-table-domain-tree-cell a {\n
padding-bottom: 3px;\n padding-bottom: 3px;\n
padding-right: 102px;\n padding-right: 69px;\n
padding-top: 3px;\n padding-top: 3px;\n
}\n }\n
\n \n
......
150 151
\ No newline at end of file \ 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