diff --git a/css/legacy/body.css b/css/legacy/body.css index 9926f4c99e..b9d4140d89 100644 --- a/css/legacy/body.css +++ b/css/legacy/body.css @@ -135,7 +135,7 @@ div.fix_ff_cursor { overflow: auto; } div.comment { color: #444; } .small { - font-size: 11px; + font-size: 12px; } .help { diff --git a/css/legacy/fields.css b/css/legacy/fields.css index ed3d2b4797..d1090e89c4 100644 --- a/css/legacy/fields.css +++ b/css/legacy/fields.css @@ -24,6 +24,10 @@ .input_area input, select, textarea { font-size: 14px; padding: 2px; + + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; } .input_area input { @@ -41,9 +45,16 @@ width: 80%; padding: 2px 0px; font-size: 12px; + background-color: #eee; + padding: 2px; + border: 1px solid #ddd; + + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; } .disp_area_no_val { - height: 14px; + min-height: 14px; } .no_img { diff --git a/css/legacy/forms.css b/css/legacy/forms.css index 6e005ea472..af04d08a69 100644 --- a/css/legacy/forms.css +++ b/css/legacy/forms.css @@ -12,6 +12,11 @@ div.form-title { margin-right: 7px; } +div.form-intro-area { + padding: 9px 9px 0px 9px; + margin: 0px 0px 15px 0px; +} + div.form-section-head { margin: 11px -15px 3px -15px; border-top: 1px solid #ccc; @@ -21,7 +26,7 @@ div.form-section-head { div.form-layout-row:first-child .form-section-head { border-top: 0px solid #ccc !important; margin-top: 0px; - padding-top: 15px; + padding-top: 0px; } div.form-section-head h3 { @@ -48,18 +53,6 @@ div.page_break { border-top: 1px dashed #888; } -div.grid_tbarlinks { - border-bottom: 0px; - background-color: #CCC; - padding: 4px 4px 2px 4px; - width: 190px; - float: right; - - -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; - -webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -} - - div.dialog_frm { position: relative; margin: 10px; diff --git a/css/legacy/grid.css b/css/legacy/grid.css index 98eeffd6c7..dab62822b3 100644 --- a/css/legacy/grid.css +++ b/css/legacy/grid.css @@ -1,46 +1,36 @@ - -/* Grid */ - - -/* --- Simple --- */ -.grid_wrapper_simple { - width: 100%; - margin-bottom: 8px; - border: 1px solid #AA9; -} - -.grid_head_wrapper_simple { - padding: 0px; - border-bottom: 2px solid #AAA; -} - -.grid_head_wrapper_simple td { - border-right: 1px solid #AA9; -} - -.grid_head_wrapper_simple td div { - padding: 2px; -} - -.grid_tab_wrapper_simple { -} - -.grid_cell_simple { - padding: 2px; - background-color: #fff; - border-right: 1px solid #AA9; -} - - -/* --- Normal --- */ .grid_wrapper { position: relative; overflow: auto; border: 1px solid #AAA; width: 100%; margin-bottom: 8px; - background-color: #fff; + background-color: #f8f8f8; +} + +div.grid_tbarlinks { + border-bottom: 0px; + padding: 4px 4px 2px 4px; + width: 190px; + float: right; + margin-right: 12px; + + -webkit-border-top-left-radius: 5px; + -webkit-border-top-right-radius: 5px; + -moz-border-radius-topleft: 5px; + -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + + background: #dddddd; /* Old browsers */ + background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #dddddd 0%,#bbbbbb 100%); /* IE10+ */ + background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#bbbbbb',GradientType=0 ); /* IE6-9 */ + } .grid_tab_wrapper { @@ -71,11 +61,19 @@ } .grid_head_table td { - background-color: #EEE; border-right: 1px solid #AAA; border-bottom: 1px solid #AAA; height: 40px; padding: 0px; + + background: #eeeeee; /* Old browsers */ + background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* IE10+ */ + background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */ } .grid_head_table td div { diff --git a/css/legacy/messages.css b/css/legacy/messages.css index 88190813af..de09f4a3ff 100644 --- a/css/legacy/messages.css +++ b/css/legacy/messages.css @@ -30,20 +30,9 @@ div.notice { } .help_box, .help-box { - background-color:#FFC; - font-size: 13px; - color: #864; - padding: 7px; + background-color: #ffe; + color: #874; + padding: 9px 9px 9px 9px; + border: 1px dashed #fc7; margin: 11px 0px; - border: 1px solid #EEB; } - -.help_box_big { - background-color:#FFC; - color: #864; - padding: 7px; - margin: 7px 0px; - border: 1px solid #EEB; - text-align: center; - font-size: 14px; -} \ No newline at end of file diff --git a/js/legacy/webpage/search.js b/js/legacy/webpage/search.js index 3a773b1416..c0e50165af 100644 --- a/js/legacy/webpage/search.js +++ b/js/legacy/webpage/search.js @@ -38,10 +38,10 @@ function makeselector() { var d = new Dialog(540,440, 'Search'); d.make_body([ + ['HTML', 'Help'], ['Data', 'Beginning With', 'Tip: You can use wildcard "%"'], ['Select', 'Search By'], ['Button', 'Search'], - ['HTML', 'Help'], ['HTML', 'Result'] ]); @@ -64,7 +64,8 @@ function makeselector() { d.set_query_description() if(!d.sel_type)d.sel_type = 'Value'; - d.set_title('Select a "'+ d.sel_type +'" for field "'+label+'"'); + d.set_title("Select"); + d.set_query_description('Select a "'+ d.sel_type +'" for field "'+label+'"'); } d.set_search = function(dt) { if(d.style!='Search') { @@ -83,9 +84,10 @@ function makeselector() { } }) - d.set_query_description = function() { - if(d.input && d.input.query_description) { - d.rows['Help'].innerHTML ='