|
From: Jon O. <jon...@us...> - 2008-06-16 19:06:56
|
Update of /cvsroot/mxbb/core/templates/_core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5510 Modified Files: admin_mx_portal.tpl page_header.tpl Added Files: admin.css Log Message: like you have done for prosilver and subsilver2, i've added admin/admin.css css file for adminCP fixes Index: page_header.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/admin/page_header.tpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** page_header.tpl 21 Feb 2008 20:03:25 -0000 1.3 --- page_header.tpl 16 Jun 2008 19:06:50 -0000 1.4 *************** *** 11,14 **** --- 11,15 ---- <!-- Then load MX-Publisher template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > + <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}admin/admin.css" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> <!-- IF GECKO --> --- NEW FILE: admin.css --- fieldset { border: 0px; } div#admintabs { display:inline; } div#admintabs ul { margin: 0px; padding: 0px; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #000; line-height: 30px; white-space: nowrap; } div#admintabs li { margin: 2px; padding: 2px; list-style-type: none; display: inline; border: 1px solid #777; background-color: #fff; } div#admintabs li a { text-decoration: none; padding: 2px 10px; color: #000; } div#admintabs li a:link { color: #000: } div#admintabs li a:visited { color: #000; } div#admintabs li a:hover { color: #777; } div#admintabs li.activetab { border: 1px solid #777; background-color: #ddd; } div#admintabs li.activetab a, div#tabs li.activetab a:link, div#tabs li.activetab a:visited, div#tabs li.activetab a:hover { color: #777; } Index: admin_mx_portal.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/admin/admin_mx_portal.tpl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** admin_mx_portal.tpl 16 Jun 2008 18:28:46 -0000 1.4 --- admin_mx_portal.tpl 16 Jun 2008 19:06:50 -0000 1.5 *************** *** 1,53 **** - <style type="text/css"> - <!-- - fieldset { - border: 0px; - } - div#admintabs { - display:inline; - } - div#admintabs ul { - margin: 0px; - padding: 0px; - font-family: Arial, Helvetica, sans-serif; - font-size: 12px; - font-weight: bold; - color: #000; - line-height: 30px; - white-space: nowrap; - } - div#admintabs li { - margin: 2px; - padding: 2px; - list-style-type: none; - display: inline; - border: 1px solid #777; - background-color: #fff; - } - div#admintabs li a { - text-decoration: none; - padding: 2px 10px; - color: #000; - } - div#admintabs li a:link { - color: #000: - } - div#admintabs li a:visited { - color: #000; - } - div#admintabs li a:hover { - color: #777; - } - div#admintabs li.activetab { - border: 1px solid #777; - background-color: #ddd; - } - div#admintabs li.activetab a, div#tabs li.activetab a:link, div#tabs li.activetab a:visited, div#tabs li.activetab a:hover { - color: #777; - } - --> - </style> - - <h1>{L_CONFIGURATION_TITLE}</h1> --- 1,2 ---- |