From 7c9bffa6b950681d9a7d026d28d87efd5b601f4c Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 14 Dec 2011 11:53:02 +0000 Subject: Larry's identities settings and about page git-svn-id: https://svn.roundcube.net/trunk@5605 208e9e7b-5314-0410-a742-e7e81cd9613c --- .../program/steps/settings/edit_identity.inc | 6 +- roundcubemail/skins/larry/includes/header.html | 1 + .../skins/larry/includes/settingstabs.html | 1 - roundcubemail/skins/larry/settings.css | 29 ++++++-- roundcubemail/skins/larry/styles.css | 82 ++++++++++++++++++---- roundcubemail/skins/larry/templates/about.html | 36 ++++++++++ roundcubemail/skins/larry/templates/error.html | 2 +- .../skins/larry/templates/identities.html | 34 +++++++++ .../skins/larry/templates/identityedit.html | 45 ++++++++++++ roundcubemail/skins/larry/templates/mail.html | 2 +- 10 files changed, 214 insertions(+), 24 deletions(-) create mode 100644 roundcubemail/skins/larry/templates/about.html create mode 100644 roundcubemail/skins/larry/templates/identities.html create mode 100644 roundcubemail/skins/larry/templates/identityedit.html diff --git a/roundcubemail/program/steps/settings/edit_identity.inc b/roundcubemail/program/steps/settings/edit_identity.inc index df5cf9328..bf64d4265 100644 --- a/roundcubemail/program/steps/settings/edit_identity.inc +++ b/roundcubemail/program/steps/settings/edit_identity.inc @@ -5,7 +5,7 @@ | program/steps/settings/edit_identity.inc | | | | This file is part of the Roundcube Webmail client | - | Copyright (C) 2005-2007, The Roundcube Dev Team | + | Copyright (C) 2005-2011, The Roundcube Dev Team | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -131,10 +131,10 @@ function rcube_identity_form($attrib) $value = !empty($colprop['value']) ? $colprop['value'] : rcmail_get_edit_field($col, $IDENTITY_RECORD[$col], $colprop, $colprop['type']); - $table->add('title', sprintf('', $colprop['id'], Q($label))); + $table->add('title', html::label($colprop['id'], Q($label))); $table->add(null, $value); } - $content = $table->show(); + $content = $table->show($attrib); } else { $content = $fieldset['content']; diff --git a/roundcubemail/skins/larry/includes/header.html b/roundcubemail/skins/larry/includes/header.html index 9295b7e9d..2fd6774fe 100644 --- a/roundcubemail/skins/larry/includes/header.html +++ b/roundcubemail/skins/larry/includes/header.html @@ -1,6 +1,7 @@