From 02b2c3f176084340fb99e3353d0eb64199efe9d9 Mon Sep 17 00:00:00 2001 From: tokul Date: Fri, 30 Dec 2005 18:19:11 +0000 Subject: [PATCH] adding css template git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10521 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- templates/default/stylesheet.tpl | 125 +++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 templates/default/stylesheet.tpl diff --git a/templates/default/stylesheet.tpl b/templates/default/stylesheet.tpl new file mode 100644 index 00000000..3be697e5 --- /dev/null +++ b/templates/default/stylesheet.tpl @@ -0,0 +1,125 @@ + + *
  • SQM_BACKGROUND - background color + *
  • SQM_BACKGROUND_LEFT - background of folder tree + *
  • SQM_TEXT_STANDARD - text color + *
  • SQM_TEXT_STANDARD_LEFT - text color of folder tree + *
  • todo: other constants should be documented here + * + * + * Optional template variables + * + * Variables are set to empty string, when value is not set. + * + * @copyright © 1999-2005 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail + * @subpackage templates + */ + +/* retrieve the template vars */ +extract($t); + +?> +body, td, th, dd, dt, h1, h2, h3, h4, h5, h6, p, ol, ul, li { + +} +body, small { + +} + +body { + color: ; + background-color: ; +} +body.leftmain { + color: ; + background-color: ; +} + +/* right links (a:link, a:visited, a:hover, a:active) */ +a { + color: ; +} +/* left links */ +/* TODO: recheck link css */ +a.leftmain { + color: ; +} + +td, th { + +} +textarea, pre { + font-family: monospace; + +} + +/* formating of error template */ +.thead_caption { + font-weight: bold; + text-align: center; +} + +.error_list { +} +.error_table { + color: ; + border: 2px solid ; + background-color: ; + width: 100%; +} +.error_thead { + background-color: ; +} +.error_thead_caption { + background-color: ; +} +.error_row { + color: ; +} +.error_val { + color: ; + width: 80%; + border: 2px solid ; + +} +.error_key { + width: 20%; + border: 2px solid ; + color: ; + font-weight: bold; + font-style: italic; + background-color: ; +} + +/* form fields */ +input.sqmtextfield{ +} +input.sqmpwfield { +} +input.sqmcheckbox { +} +input.sqmradiobox { +} +input.sqmhiddenfield { +} +input.sqmsubmitfield { +} +input.sqmresetfield { +} +input.sqmtextarea { +} -- 2.25.1