Commit c22c543a authored by Sven Franck's avatar Sven Franck Committed by Romain Courteaud

erp5_web_renderjs_ui: various CSS fixes, added filter icon to searchfield

parent b7de275b
......@@ -390,7 +390,7 @@ form label span {\n
}\n
\n
\n
/* layout form with left|right|center|bottom */\n
/* layout form with left|right|center|bottom XXX: One big mess to re-factor!!!\n
.center {\n
width: 100%;\n
padding: 0 .5em;\n
......@@ -399,6 +399,7 @@ form label span {\n
box-sizing: border-box;\n
text-align: left;\n
}\n
*/\n
.left,\n
.right,\n
.center,\n
......@@ -408,8 +409,8 @@ form label span {\n
}\n
.center,\n
.bottom {\n
display: block;\n
width: 96%;\n
display: block;\n
}\n
.left,\n
.right {\n
......@@ -427,12 +428,6 @@ form label span {\n
float: left;\n
}\n
\n
/* extend textarea and fullwidth element container */\n
.center .ui-field-contain,\n
.bottom .ui-field-contain {\n
width: 99.4%;\n
}\n
\n
/* stretch textarea */\n
.left textara,\n
.right textarea {\n
......@@ -441,15 +436,36 @@ form label span {\n
vertical-align: middle;\n
}\n
\n
/* override border-radius for all inputs to match buttons */\n
html.ui-mobile head + body .ui-input-text.ui-corner-all {\n
/* override border-radius for all inputs to match buttons XXX Punting with center */\n
html.ui-mobile head + body .center .ui-input-text.ui-corner-all {\n
-webkit-border-radius: .325em;\n
border-radius: .325em;\n
}\n
/* field-containers with add on button have no right corners */\n
html.ui-mobile head + body .center .ui-field-contain > :first-child:nth-last-child(2) {\n
-webkit-border-top-right-radius: 0;\n
border-top-right-radius: 0;\n
-webkit-border-bottom-right-radius: 0;\n
border-bottom-right-radius: 0;\n
}\n
\n
/* remove left corners and margin from side button */\n
html.ui-mobile head + body .ui-field-contain > :first-child:nth-last-child(2) ~ .ui-btn {\n
-webkit-border-top-left-radius: 0;\n
border-top-left-radius: 0;\n
-webkit-border-bottom-left-radius: 0;\n
border-bottom-left-radius: 0;\n
margin: 0;\n
border-left-width: 0;\n
}\n
\n
\n
\n
/* indent all field-containers so they could hold right hand icons */\n
html.ui-mobile head + body div.ui-field-contain {\n
padding-right: 2.375em;\n
html.ui-mobile head + body .left div.ui-field-contain,\n
html.ui-mobile head + body .right div.ui-field-contain,\n
html.ui-mobile head + body .center div.ui-field-contain {\n
padding-right: 2em; /* used to be 2.375em */\n
}\n
\n
/* labels field (leaving space right side of input for button) */\n
......@@ -537,7 +553,7 @@ html.ui-mobile head + body div.ui-field-contain > a.ui-btn {\n
border-radius: 0 0.325em 0.325em 0;\n
height: 2.2em;\n
margin: 0 .4em 0 0;\n
width: 2.25em;\n
width: 2.2em;\n
position: absolute;\n
top: 0;\n
right: 0;\n
......@@ -583,14 +599,12 @@ html.ui-mobile head + body .ui-field-contain > :last-child {\n
box-sizing: padding-box;\n
}\n
\n
/* set width (XXX Assuming listbox is always in bottom, otherwise need to edit*/\n
/* set width (XXX assume listbox ONLY is in bottom, otherwise padded side */\n
.left,\n
.right,\n
.bottom {\n
width: auto;\n
}\n
.bottom,\n
.center {\n
width: 96%;\n
width: auto;\n
}\n
\n
/* reset min/max width and shrink labels ... */\n
......@@ -698,7 +712,7 @@ html.ui-mobile head + body .ui-field-contain > :last-child {\n
\n
/* extend textarea and fullwidth element container */\n
.center .ui-field-contain {\n
width: 94.4%;\n
width: auto;\n
}\n
}\n
\n
......@@ -730,8 +744,7 @@ html.ui-mobile head + body .ui-field-contain > :last-child {\n
/* JQM switches margin to padding on the field-container to show the border,\n
adjust add-on icon position matching padding-top: .8em */\n
html.ui-mobile head + body div.ui-field-contain > a.ui-btn {\n
/* top: .9em; */\n
top: 2.55em;\n
top: 22%;\n
}\n
\n
/* <label><input> */\n
......@@ -767,7 +780,7 @@ html.ui-mobile head + body .ui-field-contain > :last-child {\n
\n
/* extend textarea and fullwidth element container */\n
.center .ui-field-contain {\n
width: 90.4%;\n
width: auto;\n
}\n
}\n
/*\n
......@@ -780,12 +793,17 @@ html.ui-mobile head + body .ui-field-contain > :last-child {\n
border-bottom-left-radius: 0;\n
-webkit-border-bottom-right-radius: 0;\n
border-bottom-right-radius: 0;\n
\n
}\n
.ui-collapsible-set > .ui-last-child .ui-listview > .ui-last-child {\n
-webkit-border-bottom-left-radius: inherit;\n
border-bottom-left-radius: inherit;\n
-webkit-border-bottom-right-radius: inherit;\n
border-bottom-right-radius: inherit;\n
}\n
\n
/*\n
-------------------------------------------------------------------------\n
------------------------------ Table ------------------------------------\n
------------------------------ Table --------t----------------------------\n
-------------------------------------------------------------------------\n
*/\n
\n
......@@ -828,11 +846,6 @@ html body .ui-table-header .ui-title {\n
margin: 0 30%\n
}\n
\n
/* max width for buttons XXX: assumes single buttons in controlgroup */\n
html body div.ui-table-header div.ui-controlgroup {\n
max-width: none;\n
min-width: 0;\n
}\n
\n
/* radius */\n
.ui-table-inset {\n
......@@ -1061,7 +1074,7 @@ html .ui-table-header:before {\n
}\n
\n
/* convert to listview look */\n
@media (max-width: 48em) {\n
@media (max-width: 62em) {\n
\n
/* show or hide table header/footer */\n
html table thead,\n
......@@ -1082,6 +1095,15 @@ html .ui-table-header:before {\n
overflow: hidden;\n
clip: rect(1px,1px,1px,1px);\n
}\n
\n
/* remove bottom border */\n
html div.ui-table-header {\n
border-bottom-width: 0;\n
}\n
/* overwrite JQM icon positioning */\n
html .ui-table-header .ui-controlgroup-controls .ui-btn:after {\n
left: .6em;\n
}\n
\n
/* fix pagination width */\n
html .ui-field-contain tfoot .ui-controlgroup-controls {\n
......@@ -1220,6 +1242,8 @@ html .ui-table-header:before {\n
padding: 0;\n
pointer-events: none;\n
line-height: 1em;\n
max-height: 1.05em;\n
overflow: hidden;\n
}\n
\n
/* pad non-empty cells just a little */\n
......@@ -1386,12 +1410,6 @@ html body div.ui-select div span {\n
------------------------------- Panel -----------------------------------\n
-------------------------------------------------------------------------\n
*/\n
/* unset margin inside panel if panel wraps content in .ui-panel-inner\n
html .ui-panel .ui-panel-inner .ui-header,\n
html .ui-panel .ui-panel-inner .ui-content {\n
margin: -1em;\n
}\n
*/\n
/* reposition panel content section */\n
html .ui-panel .ui-header ~ .ui-content {\n
margin-top: 1em;\n
......@@ -1925,16 +1943,19 @@ html .ui-footer .ui-title {\n
margin: 0 45px;\n
}\n
\n
/* max width for buttons */\n
.ui-header .ui-controlgroup {\n
/* max width for buttons */ \n
.ui-header .ui-controlgroup,\n
.ui-panel .ui-header .ui-controlgroup {\n
max-width: 45px;\n
min-width: 45px;\n
}\n
\n
\n
/* logo dimensions, left/right padding needed, because img does not fill space*/\n
html .ui-header img.ui-title {\n
max-height: 24px;\n
padding: 0.5em 1.7em;\n
margin: 0 30%;\n
}\n
\n
/* fix icon size on title (depends on font size of title) XXX: move up!*/\n
......@@ -2099,17 +2120,26 @@ html .ui-header .ui-btn {\n
/* reset on larger screens */\n
@media (min-width: 48em) {\n
\n
/* hard-lock margin */\n
/* hard-lock margin XXX Thierry: this is to expand title to edge of button */\n
html .ui-header .ui-title,\n
html .ui-footer .ui-title {\n
margin: 0 8%;\n
}\n
html .ui-header img.ui-title {\n
margin: 0 30%;\n
}\n
\n
/* max width for buttons XXX: assumes single buttons in controlgroup */\n
.ui-header .ui-controlgroup {\n
max-width: 8%;\n
min-width: 8%;\n
}\n
\n
/* unset for everywhere else a header is used.*/\n
html body div.ui-table-header div.ui-controlgroup {\n
max-width: none;\n
min-width: 0;\n
}\n
\n
\n
.responsive.ui-btn:after,\n
......@@ -2203,8 +2233,8 @@ html .ui-bar-a label,\n
html .ui-btn-a label,\n
html .ui-body-a thead th,\n
html .ui-bar-a thead th,\n
html body div.ui-bar-a.ui-table-header a.ui-btn,\n
html body div.ui-bar-a.ui-table-header .ui-title {\n
html.ui-mobile .ui-bar-a .ui-override-theme.ui-btn,\n
html.ui-mobile .ui-bar-a .ui-override-theme.ui-title {\n
color: #085078;\n
}\n
/* Custom Icon Color and background opacity */\n
......@@ -2429,8 +2459,8 @@ html .ui-bar-c label,\n
html .ui-btn-c label,\n
html .ui-body-c thead th,\n
html .ui-bar-c thead th,\n
html body div.ui-bar-c.ui-table-header a.ui-btn,\n
html body div.ui-bar-c.ui-table-header .ui-title {\n
html.ui-mobile .ui-bar-c .ui-override-theme.ui-btn,\n
html.ui-mobile .ui-bar-c .ui-override-theme.ui-title {\n
color: #777777;\n
}\n
/* Custom Icon Color and background opacity */\n
......@@ -2619,8 +2649,8 @@ html .ui-bar-d label,\n
html .ui-btn-d label, \n
html .ui-body-d thead th,\n
html .ui-bar-d thead th,\n
html body div.ui-bar-d.ui-table-header a.ui-btn,\n
html body div.ui-bar-d.ui-table-header .ui-title {\n
html.ui-mobile .ui-bar-d .ui-override-theme.ui-btn,\n
html.ui-mobile .ui-bar-d .ui-override-theme.ui-title {\n
color: #444444;\n
}\n
/* Custom Icon Color and background opacity */\n
......@@ -4412,7 +4442,7 @@ html .ui-btn[class*="ui-icon-"]:after,\n
html .ui-btn[class*="ui-icon-"]:after {\n
font-size: 1.25em;\n
}\n
@media (max-width: 30em) {\n
@media (max-width: 32em) {\n
html .ui-btn[class*="ui-icon-"]:after,\n
html .ui-btn[class*="ui-icon-"]:after {\n
font-size: 1.5em;\n
......@@ -4575,7 +4605,7 @@ html .ui-btn[class*="ui-icon-"]:after {\n
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>938.20529.55980.2884</string> </value>
<value> <string>938.24623.58665.31163</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -4593,7 +4623,7 @@ html .ui-btn[class*="ui-icon-"]:after {\n
</tuple>
<state>
<tuple>
<float>1413562906.22</float>
<float>1413808329.54</float>
<string>GMT</string>
</tuple>
</state>
......
......@@ -129,13 +129,13 @@
<div class="ui-table-header ui-header ui-bar-c ui-corner-all">\n
<div class="ui-controlgroup ui-controlgroup-horizontal ui-btn-left">\n
<div class="ui-controlgroup-controls">\n
<a class="ui-responsive ui-btn ui-btn-icon-left ui-icon-eye ui-first-child" href="#">Hide Rows</a>\n
<a class="ui-responsive ui-btn ui-btn-icon-left ui-icon-eye ui-first-child ui-override-theme" href="#">Hide Rows</a>\n
</div>\n
</div>\n
<h1 class="ui-title">0 items selected</h1>\n
<h1 class="ui-title ui-override-theme">0 items selected</h1>\n
<div class="ui-controlgroup ui-controlgroup-horizontal ui-btn-right">\n
<div class="ui-controlgroup-controls">\n
<a class="ui-responsive ui-btn ui-btn-icon-left ui-icon-sort-amount-desc ui-last-child" href="#">Apply Filter</a>\n
<a class="ui-responsive ui-btn ui-btn-icon-left ui-icon-sort-amount-desc ui-last-child ui-override-theme" href="#">Sort</a>\n
</div>\n
</div>\n
</div>\n
......@@ -283,7 +283,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>938.20466.7800.9574</string> </value>
<value> <string>938.24428.2343.61525</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -301,7 +301,7 @@
</tuple>
<state>
<tuple>
<float>1413558987.65</float>
<float>1413799240.67</float>
<string>GMT</string>
</tuple>
</state>
......
......@@ -130,7 +130,7 @@
</form>\n
</div>\n
</div>\n
<img class="ui-title" alt="ERP5" src="data:image/png;base64,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" />\n
<img class="ui-title" alt="ERP5" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJcAAAA/CAMAAADaDqrIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowMEM5NUE4MzQ5NjQxMUUzOUZEQUU2NUY1RTI1RjdCQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowMEM5NUE4NDQ5NjQxMUUzOUZEQUU2NUY1RTI1RjdCQiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjAwQzk1QTgxNDk2NDExRTM5RkRBRTY1RjVFMjVGN0JCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAwQzk1QTgyNDk2NDExRTM5RkRBRTY1RjVFMjVGN0JCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+J9MJsAAAAwBQTFRF///////M//+Z//9m//8z//8A/8z//8zM/8yZ/8xm/8wz/8wA/5n//5nM/5mZ/5lm/5kz/5kA/2b//2bM/2aZ/2Zm/2Yz/2YA/zP//zPM/zOZ/zNm/zMz/zMA/wD//wDM/wCZ/wBm/wAz/wAAzP//zP/MzP+ZzP9mzP8zzP8AzMz/zMzMzMyZzMxmzMwzzMwAzJn/zJnMzJmZzJlmzJkzzJkAzGb/zGbMzGaZzGZmzGYzzGYAzDP/zDPMzDOZzDNmzDMzzDMAzAD/zADMzACZzABmzAAzzAAAmf//mf/Mmf+Zmf9mmf8zmf8Amcz/mczMmcyZmcxmmcwzmcwAmZn/mZnMmZmZmZlmmZkzmZkAmWb/mWbMmWaZmWZmmWYzmWYAmTP/mTPMmTOZmTNmmTMzmTMAmQD/mQDMmQCZmQBmmQAzmQAAZv//Zv/MZv+ZZv9mZv8zZv8AZsz/ZszMZsyZZsxmZswzZswAZpn/ZpnMZpmZZplmZpkzZpkAZmb/ZmbMZmaZZmZmZmYzZmYAZjP/ZjPMZjOZZjNmZjMzZjMAZgD/ZgDMZgCZZgBmZgAzZgAAM///M//MM/+ZM/9mM/8zM/8AM8z/M8zMM8yZM8xmM8wzM8wAM5n/M5nMM5mZM5lmM5kzM5kAM2b/M2bMM2aZM2ZmM2YzM2YAMzP/MzPMMzOZMzNmMzMzMzMAMwD/MwDMMwCZMwBmMwAzMwAAAP//AP/MAP+ZAP9mAP8zAP8AAMz/AMzMAMyZAMxmAMwzAMwAAJn/AJnMAJmZAJlmAJkzAJkAAGb/AGbMAGaZAGZmAGYzAGYAADP/ADPMADOZADNmADMzADMAAAD/AADMAACZAABmAAAzAAAAHHa7K3/AOojESZHJWZvNaKTSd63Whrbblb/fpMjks9Howtrt4e320uTx8Pb6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdfKHSQAAAOh0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////ALItoLoAAAJkSURBVHja7NlZsqsgEABQ979C5kGGddxo4os0Q8BAynoFn0nUU23TNGRB9xzLdE3XdE3XdP2fLnIzF2VSrsYvC72HizAh9eZ5DVuOl15S4/jWwC+kDC8HPzCSJVHcRY8QXV2PwQuujUYTsYrvYlBv1yKLrsXHsPghnvR3Lazoip/JKuwpF8sm6/bY01Ow9CBlTXi53PNoRcUktEZT1NV1PIPnXAjtMJIMlzerFIzU1dVWF7aPj3Tetae4gjdxktG2et/qQjJ4kZFrv6ED4bK4eR1qduHzvEi4+PbGwD0EGu9CQQLFrv1F4jBc6BcuW3YhkPiPX1hOfxQvnHfh0HVMRqc4HuqiQf5k3mO6dq1s8Hx0H/Le5kq9YaNcxAcrZLpOvAv+ClcgNcZFtnrucd5Fwx4mXj0drnbBYXMuJmFDAV3Uhm4qlbHh3ddOrmholHNxFTVC+xTl2mf6pI4uVe4LwSp0DPGOmh/hAnM94bKZjkHlWuiLeV+cTab4luMKk82wy/Px2fLJskvKUk03hRf9RZ0wiYiZ4uVwVwTb9E71y0XboTYXGuTaa33Y47W5zBjXM3P11y7TfR2ycFdxyaW7uwSc5m0un9ix91m3TWJfW+1ijfW+wcVAfjS5dOP62LyvZZdcLHnA1MkFAtbgwq+Vm47po8OA1buwyy/a1ec5urzveAes2sV8kfW963mFaHNhlT0b6+Yi5+StchH1CtaK0ThXELDPLiyOPZHldzm/J1z9O/B14g7/K+DtkP7U8ivSeD4xaPCTSQvy+YIfubZWzRgtRe1iMP+3mq7pmq7p6jv+BBgAPrgi/TzwWzkAAAAASUVORK5CYII="/>\n
<div class="ui-controlgroup ui-controlgroup-horizontal ui-btn-right">\n
<div class="ui-controlgroup-controls"></div>\n
</div>\n
......@@ -293,7 +293,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>938.16031.20346.59170</string> </value>
<value> <string>938.17417.34725.59835</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -311,7 +311,7 @@
</tuple>
<state>
<tuple>
<float>1413375931.78</float>
<float>1413798804.43</float>
<string>GMT</string>
</tuple>
</state>
......
......@@ -126,13 +126,15 @@
<form class="save_form document_form">\n
<div class="center">\n
<div class="ui-field-contain">\n
<!-- XXX needs a theme set -->\n
<!-- XXX needs a theme set for now -->\n
<div class="ui-input-text ui-body-c ui-corner-all ui-shadow-inset ui-input-has-clear">\n
<input type="text" data-enhanced="true" value="" name="search" />\n
<div class="ui-btn ui-input-clear ui-input-btn ui-corner-all ui-icon-search ui-btn-icon-notext">\n
Submit<input data-enhanced="true" type="submit" value="Submit">\n
</div>\n
</div>\n
<!-- XXX needs a theme set for now -->\n
<a href="#" class="ui-btn ui-btn-c ui-btn-icon-notext ui-icon-filter ui-override-theme">Filters</a>\n
</div>\n
</div>\n
</form>\n
......@@ -274,7 +276,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>937.51294.57239.19217</string> </value>
<value> <string>938.24471.49375.27665</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -292,7 +294,7 @@
</tuple>
<state>
<tuple>
<float>1411563524.79</float>
<float>1413799940.71</float>
<string>GMT</string>
</tuple>
</state>
......
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