Modified these files to use the rustico css

This commit is contained in:
wclouser%mozilla.com 2006-10-23 22:54:47 +00:00
Родитель 4cf9074e2e
Коммит 493a9afaf0
8 изменённых файлов: 17 добавлений и 6 удалений

Просмотреть файл

@ -9,7 +9,7 @@
* $_GET['aid'] = Addon ID (integer)
*/
startProcessing('addcomment.tpl', null, null);
startProcessing('addcomment.tpl', null, null,'rustico');
require_once 'includes.php';
session_start();

Просмотреть файл

@ -9,7 +9,7 @@
$clean['UserID'] = intval($_GET['id']);
$sql['UserID'] =& $clean['UserID'];
startProcessing('author.tpl',$clean['UserID'],$compileId);
startProcessing('author.tpl',$clean['UserID'],$compileId,'rustico');
require_once('includes.php');
$user = new User($sql['UserID']);

Просмотреть файл

@ -7,7 +7,7 @@
*
*/
startProcessing('createaccount.tpl', null, null, 'nonav');
startProcessing('createaccount.tpl', null, null, 'rustico');
require_once 'includes.php';
// If there are problems, these will be set to true and used in the template. By

Просмотреть файл

@ -590,9 +590,18 @@ table.dalvay-table th {
/* search-engines */
.front-section {
width: 220px;
padding: 5px 0 5px 25px;
float: left;
color: #666;
}
/* previews */
div.rating {
float:right;
font-size:85%;
font-weight:bold;
}

Просмотреть файл

@ -8,7 +8,7 @@
*
*/
startProcessing('login.tpl', null, null, 'nonav');
startProcessing('login.tpl', null, null, 'rustico');
require_once 'includes.php';
// When the template is drawn, if this isn't null, it will print out a "failure to

Просмотреть файл

@ -10,7 +10,7 @@
$clean['ID'] = intval($_GET['id']);
$sql['ID'] =& $clean['ID'];
startProcessing('previews.tpl',$clean['ID'],$compileId);
startProcessing('previews.tpl',$clean['ID'],$compileId,'rustico');
require_once('includes.php');
$addon = new AddOn($sql['ID']);

Просмотреть файл

@ -14,7 +14,8 @@
<p>Your e-mail address is used as your username to login. You'll also receive a
confirmation e-mail to this address. In order for your account to be activated
successfully, you must specify a valid e-mail address.</p>
successfully, you must specify a valid e-mail address, and follow the steps
in the e-mail you receive.</p>
{if $error_email_empty}
<div class="amo-form-error">E-Mail address is a required field.</div>

Просмотреть файл

@ -15,6 +15,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>{$app|capitalize} Add-ons | Mozilla Corporation</title>
<link rel="stylesheet" type="text/css" href="{$config.webpath}/css/rustico/addons-rustico.css" media="screen">
<link rel="stylesheet" type="text/css" href="{$config.webpath}/css/forms.css" media="screen">
<script src="{$config.webpath}/js/install.js" type="text/javascript"></script>
<script src="{$config.webpath}/js/search.js" type="text/javascript"></script>
</head>