Commit 42fde235 authored by Ivan Tyagov's avatar Ivan Tyagov

Use configuration to generate parts of CSS file.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44501 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 313dc916
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
*/\n */\n
\n \n
<tal:block define="dummy python: request.RESPONSE.setHeader(\'Content-Type\', \'text/css;; charset=utf-8\');\n <tal:block define="dummy python: request.RESPONSE.setHeader(\'Content-Type\', \'text/css;; charset=utf-8\');\n
viewable_area_maximal_width python:here.getLayoutProperty(\'layout_viewable_area_maximal_width\', \'1000\');\n
menu_opacity python:here.getLayoutProperty(\'layout_navigation_menu_opacity\', \'0.80\');\n menu_opacity python:here.getLayoutProperty(\'layout_navigation_menu_opacity\', \'0.80\');\n
menu_width python:here.getLayoutProperty(\'layout_navigation_menu_width\', \'145px\');\n menu_width python:here.getLayoutProperty(\'layout_navigation_menu_width\', \'145px\');\n
menu_indent python:here.getLayoutProperty(\'layout_navigation_menu_indent\', \'155px\');\n menu_indent python:here.getLayoutProperty(\'layout_navigation_menu_indent\', \'155px\');\n
...@@ -114,16 +115,13 @@ table {\n ...@@ -114,16 +115,13 @@ table {\n
\n \n
a:link, \n a:link, \n
a:active, \n a:active, \n
a:visited { \n a:visited,\n
a:hover { \n
color: #000; \n color: #000; \n
font-weight:normal; \n font-weight:normal; \n
text-decoration: none;\n text-decoration: none;\n
}\n }\n
\n \n
a:hover { \n
color: #000; \n
}\n
\n
.transition_message{\n .transition_message{\n
background-color:#FF654A;\n background-color:#FF654A;\n
font-weight:bold;\n font-weight:bold;\n
...@@ -144,10 +142,12 @@ fieldset.hidden_fieldset { \n ...@@ -144,10 +142,12 @@ fieldset.hidden_fieldset { \n
#main_content{\n #main_content{\n
width:auto;\n width:auto;\n
}\n }\n
\n #main_form{\n
height: 100%;\n
}\n
#mainwrapper {\n #mainwrapper {\n
min-height: 100%;\n min-height: 100%;\n
width:1000px;\n width:<tal:block tal:replace="viewable_area_maximal_width">1000</tal:block>px;\n
margin: 0 auto;\n margin: 0 auto;\n
}\n }\n
\n \n
...@@ -426,7 +426,7 @@ div#mainwrapper div.wrapper div.gadget fieldset.widget legend{\n ...@@ -426,7 +426,7 @@ div#mainwrapper div.wrapper div.gadget fieldset.widget legend{\n
}\n }\n
\n \n
#footer {\n #footer {\n
width:1000px; \n width:<tal:block tal:replace="viewable_area_maximal_width">1000</tal:block>px; \n
margin: 0 auto;\n margin: 0 auto;\n
}\n }\n
\n \n
...@@ -685,7 +685,7 @@ div.actions button {\n ...@@ -685,7 +685,7 @@ div.actions button {\n
/* Download Document in various format widget */\n /* Download Document in various format widget */\n
div.download-document-format-list-container{\n div.download-document-format-list-container{\n
color:#000000;\n color:#000000;\n
left:525px;\n left:560px;\n
top:0px;\n top:0px;\n
position:absolute;\n position:absolute;\n
z-index:3; /* Collapse menu z-index is 1 */\n z-index:3; /* Collapse menu z-index is 1 */\n
......
1786 1787
\ 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