From: <tu...@us...> - 2018-01-02 05:27:02
|
Revision: 7898 http://sourceforge.net/p/web-erp/reponame/7898 Author: turbopt Date: 2018-01-02 05:27:00 +0000 (Tue, 02 Jan 2018) Log Message: ----------- css/default/default.css: Add text alignment in a couple of styles to match the same use as other CSS files to avoid formatting issues when the default theme is used. Also, converted several property names to lowercase. Modified Paths: -------------- trunk/css/default/default.css trunk/doc/Change.log Modified: trunk/css/default/default.css =================================================================== --- trunk/css/default/default.css 2017-12-22 21:45:32 UTC (rev 7897) +++ trunk/css/default/default.css 2018-01-02 05:27:00 UTC (rev 7898) @@ -159,15 +159,15 @@ } div.warn { -background-color:#f5dbfd; -color:maroon; -border:1px solid maroon; + background-color:#f5dbfd; + color:maroon; + border:1px solid maroon; } div.success { -background-color:#b9ecb4; -color:darkgreen; -border:1px solid darkgreen; + background-color:#b9ecb4; + color:darkgreen; + border:1px solid darkgreen; } div.info { @@ -176,33 +176,33 @@ border:1px solid navy; } -DIV.page_help_text { +div.page_help_text { background:lightgrey url(images/help.png) top left no-repeat; - BORDER:#a52a2a 1px solid; + border:#a52a2a 1px solid; padding-top:2px; padding-bottom:2px; - PADDING-LEFT:10px; - Z-INDEX:1; + padding-left:10px; + z-index:1; width:80%; - FLOAT:none; - VISIBILITY:visible; - MARGIN:0 auto; - POSITION:static; + float:none; + visibility:visible; + margin:0 auto; + position:static; font-family:Arial, Verdana, Helvetica, sans-serif; font-weight:normal; color:black; - TEXT-ALIGN:center; + text-align:center; } -DIV.system_check { - BORDER:#a52a2a 1px solid; - PADDING-LEFT:3px; - Z-INDEX:1; +div.system_check { + border:#a52a2a 1px solid; + padding-left:3px; + z-index:1; width:40%; - FLOAT:none; - VISIBILITY:visible; - MARGIN:0 auto; - POSITION:static; + float:none; + visibility:visible; + margin:0 auto; + position:static; background:lightgray; font-family:Arial, Verdana, Helvetica, sans-serif; padding-top:1px; @@ -209,7 +209,7 @@ padding-bottom:1px; font-weight:normal; color:black; - TEXT-ALIGN:left; + text-align:left; } .dpTbl { /* date picker background */ @@ -250,16 +250,6 @@ margin:0 auto; } -/* Table type is used for UI tables type 2 */ -/*.table2 { -width:90%; -background:#eee; -border:0px 0px 2px 2px #222 solid; -margin:0 auto; -} - -*/ - .tableheader { font-weight:normal; background-color:#800000; @@ -369,12 +359,13 @@ #BodyDiv { clear:both; + text-align:center; } #BodyWrapDiv { background:#CCCCCC; /*border:thin solid #ccc;*/ - clear:both; + /*clear:both;*/ } /*** BODY - MAIN MENU ***/ @@ -425,6 +416,7 @@ display:table; float:right; overflow:hidden; + text-align:left; width:88.5%; } @@ -470,7 +462,7 @@ .menu_group_item p { color:#00f; /* This is the color for bullets, I like it to be the same as the anchor color, but it's up to you */ text-indent:-12px; /* this makes the bullet to appear as the li tag previously used */ - margin:0 0 0 12px; /* One thing that I didn´t like of the li was that it had no left margin applied */ + margin:0 0 0 12px; /* One thing that I didn't like of the li was that it had no left margin applied */ } #InquiriesDiv div { /* header for standard reports/forms, custom reports */ Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2017-12-22 21:45:32 UTC (rev 7897) +++ trunk/doc/Change.log 2018-01-02 05:27:00 UTC (rev 7898) @@ -1,5 +1,6 @@ webERP Change Log +2/1/18: PaulT: css/default/default.css: Add text alignment in a couple of styles to match the same use in other CSS to avoid formatting issues when the default theme is used. Also, set several property names to lowercase. 20/12/17 PaulT: FormMaker.php, ReportMaker.php, WriteForm.inc: A few more PHP 7.1 array compatibility changes. 20/12/17 PaulT: RCFunctions.inc, FormMaker.php: PHP 7.1 array compatibility change. 19/12/17 PaulT: PDFOrderStatus.php: Remove redundant ConnectDB.inc include reference. (already included by session.php at the top of the file) |