1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00

Оформление инсталлятора и фикс багов в шаблоне

This commit is contained in:
Denis Shakhov 2012-06-26 17:46:14 +07:00
parent d453781800
commit 2ab213fdb1
24 changed files with 246 additions and 237 deletions

View file

@ -439,8 +439,8 @@ class Install {
$this->SetSessionVar(self::SESSSION_KEY_STEP_NAME,$sStepName);
}
$this->Assign('next_step_display', ($iKey == count($this->aSteps)-1)?'none':'block');
$this->Assign('prev_step_display', ($iKey == 0) ? 'none' : 'block');
$this->Assign('next_step_display', ($iKey == count($this->aSteps)-1)?'none':'inline-block');
$this->Assign('prev_step_display', ($iKey == 0) ? 'none' : 'inline-block');
/**
* Если шаг отновиться к simple mode, то корректируем количество шагов
@ -741,7 +741,7 @@ class Install {
/**
* Выводим на экран кнопку @Next
*/
$this->Assign('next_step_display','block');
$this->Assign('next_step_display','inline-block');
/**
* Сохраняем в сессию название текущего шага
*/

View file

@ -5,30 +5,30 @@
<head>
<title>___LANG_INSTALL_TITLE___</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="templates/styles/style.css?v=1" />
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="templates/styles/ie6.css?v=1" /><![endif]-->
<!--[if gte IE 7]><link rel="stylesheet" type="text/css" href="templates/styles/ie7.css?v=1" /><![endif]-->
</head>
<body>
<div id="container">
<div id="header">
<h1>___LANG_INSTALL_TITLE___ ___INSTALL_VERSION___ <span>___LANG_STEP___ ___INSTALL_STEP_NUMBER___ / ___INSTALL_STEP_COUNT___</span></h1>
<div class="lang"><a href="?lang=russian">RUS</a> | <a href="?lang=english">ENG</a></div>
</div>
<div id="container">
<h1 class="lite-header">___LANG_INSTALL_TITLE___ (v.___INSTALL_VERSION___) | ___LANG_STEP___ #___INSTALL_STEP_NUMBER___ / ___INSTALL_STEP_COUNT___</h1>
<div class="lite-center register">
<p align="right"><sup><a href="?lang=russian">RUS</a> | <a href="?lang=english">ENG</a></sup></p>
___SYSTEM_MESSAGES___
<form action="___FORM_ACTION___" method="POST">
___CONTENT___
<br />
<p class="buttons">
<input type="submit" class="right" name="install_step_next" value="___LANG_NEXT___" ___NEXT_STEP_DISABLED___ style="display:___NEXT_STEP_DISPLAY___;" />
<input type="submit" class="left" name="install_step_prev" value="___LANG_PREV___" ___PREV_STEP_DISABLED___ style="display:___PREV_STEP_DISPLAY___;" />
</p>
</form>
<div id="content">
___SYSTEM_MESSAGES___
<form action="___FORM_ACTION___" method="POST">
___CONTENT___
<br />
<input type="submit" class="button" name="install_step_prev" value="___LANG_PREV___" ___PREV_STEP_DISABLED___ style="display:___PREV_STEP_DISPLAY___;" />
<input type="submit" class="button button-primary" name="install_step_next" value="___LANG_NEXT___" ___NEXT_STEP_DISABLED___ style="display:___NEXT_STEP_DISPLAY___;" />
</form>
</div>
</div>
</div>
</body>
</html>

View file

@ -1 +1 @@
<div id="system_messages____MESSAGE_STYLE_CLASS___"><ul><li>___MESSAGE_CONTENT___</li></ul></div>
<div class="system-messages-___MESSAGE_STYLE_CLASS___"><ul><li>___MESSAGE_CONTENT___</li></ul></div>

View file

@ -2,15 +2,14 @@
<input type="hidden" name="install_admin_params" value="1" />
<label for="install_admin_login">___LANG_ADMIN_PARAMS_LOGIN___:</label><br />
<p><input type="text" class="input-text" name="install_admin_login" value="___INSTALL_ADMIN_LOGIN___" id="install_admin_login" />
</p>
<label for="install_admin_mail">___LANG_ADMIN_PARAMS_MAIL___:</label><br />
<p><input type="text" class="input-text" name="install_admin_mail" value="___INSTALL_ADMIN_MAIL___" id="install_admin_mail" />
</p>
<label for="install_admin_pass">___LANG_ADMIN_PARAMS_PASS___:</label><br />
<p><input type="password" class="input-text" name="install_admin_pass" autocomplete="off" value="" id="install_admin_pass" />
</p>
<label for="install_admin_repass">___LANG_ADMIN_PARAMS_REPASS___:</label><br />
<p><input type="password" class="input-text" name="install_admin_repass" autocomplete="off" value="" id="install_admin_repass" />
</p>
<p><label for="install_admin_login">___LANG_ADMIN_PARAMS_LOGIN___:</label>
<input type="text" class="input-text input-width-300" name="install_admin_login" value="___INSTALL_ADMIN_LOGIN___" id="install_admin_login" /></p>
<p><label for="install_admin_mail">___LANG_ADMIN_PARAMS_MAIL___:</label>
<input type="text" class="input-text input-width-300" name="install_admin_mail" value="___INSTALL_ADMIN_MAIL___" id="install_admin_mail" /></p>
<p><label for="install_admin_pass">___LANG_ADMIN_PARAMS_PASS___:</label>
<input type="password" class="input-text input-width-300" name="install_admin_pass" autocomplete="off" value="" id="install_admin_pass" /></p>
<p><label for="install_admin_repass">___LANG_ADMIN_PARAMS_REPASS___:</label>
<input type="password" class="input-text input-width-300" name="install_admin_repass" autocomplete="off" value="" id="install_admin_repass" /></p>

View file

@ -2,37 +2,39 @@
<input type="hidden" name="install_db_params" value="1" />
<label for="install_db_server">___LANG_DB_PARAMS_HOST___:</label><br />
<p><input type="text" class="input-text" name="install_db_server" value="___INSTALL_DB_SERVER___" id="install_db_server" />
<p><label for="install_db_server">___LANG_DB_PARAMS_HOST___:</label>
<input type="text" class="input-text input-width-300" class="input-text" name="install_db_server" value="___INSTALL_DB_SERVER___" id="install_db_server" />
</p>
<label for="install_db_server">___LANG_DB_PARAMS_PORT___:</label><br />
<p><input type="text" class="input-text" name="install_db_port" value="___INSTALL_DB_PORT___" id="install_db_port" />
<span class="input-note">___LANG_DB_PARAMS_PORT_NOTICE___</span></p>
<p><label for="install_db_server">___LANG_DB_PARAMS_PORT___:</label>
<input type="text" class="input-text input-width-300" name="install_db_port" value="___INSTALL_DB_PORT___" id="install_db_port" />
<small class="note">___LANG_DB_PARAMS_PORT_NOTICE___</small></p>
<label for="install_db_name">___LANG_DB_PARAMS_NAME___:</label><br />
<p><input type="text" class="input-text" name="install_db_name" value="___INSTALL_DB_NAME___" id="install_db_name" />
<input type="checkbox" class="checkbox" name="install_db_create" value="1" ___INSTALL_DB_CREATE_CHECK___ /> &mdash; ___LANG_DB_PARAMS_CREATE___<br />
<input type="checkbox" class="checkbox" name="install_db_convert" value="1" ___INSTALL_DB_CONVERT_CHECK___ /> &mdash; ___LANG_DB_PARAMS_CONVERT___<br />
<p><label for="install_db_name">___LANG_DB_PARAMS_NAME___:</label>
<input type="text" class="input-text input-width-300" name="install_db_name" value="___INSTALL_DB_NAME___" id="install_db_name" />
</p>
<label for="install_db_user">___LANG_DB_PARAMS_USER___:</label><br />
<p><input type="text" class="input-text" name="install_db_user" value="___INSTALL_DB_USER___" id="install_db_user" />
</p>
<label for="install_db_password">___LANG_DB_PARAMS_PASSWORD___:</label><br />
<p><input type="text" class="input-text" name="install_db_password" value="___INSTALL_DB_PASSWORD___" id="install_db_password" />
</p>
<label for="install_db_name">___LANG_DB_PARAMS_PREFIX___:</label><br />
<p><input type="text" class="input-text" name="install_db_prefix" value="___INSTALL_DB_PREFIX___" id="install_db_prefix" />
<span class="input-note">___LANG_DB_PARAMS_PREFIX_NOTICE___</span></p>
<label for="install_db_engine">___LANG_DB_PARAMS_ENGINE___:</label><br />
<p>
<select name="install_db_engine" id="install_db_engine" value="___INSTALL_DB_ENGINE___">
<label><input type="checkbox" class="input-checkbox" name="install_db_create" value="1" ___INSTALL_DB_CREATE_CHECK___ /> ___LANG_DB_PARAMS_CREATE___</label>
<label><input type="checkbox" class="input-checkbox" name="install_db_convert" value="1" ___INSTALL_DB_CONVERT_CHECK___ /> ___LANG_DB_PARAMS_CONVERT___</label>
</p>
<p><label for="install_db_user">___LANG_DB_PARAMS_USER___:</label>
<input type="text" class="input-text input-width-300" name="install_db_user" value="___INSTALL_DB_USER___" id="install_db_user" />
</p>
<p><label for="install_db_password">___LANG_DB_PARAMS_PASSWORD___:</label>
<input type="text" class="input-text input-width-300" name="install_db_password" value="___INSTALL_DB_PASSWORD___" id="install_db_password" />
</p>
<p><label for="install_db_name">___LANG_DB_PARAMS_PREFIX___:</label>
<input type="text" class="input-text input-width-300" name="install_db_prefix" value="___INSTALL_DB_PREFIX___" id="install_db_prefix" />
<small class="note">___LANG_DB_PARAMS_PREFIX_NOTICE___</small></p>
<p><label for="install_db_engine">___LANG_DB_PARAMS_ENGINE___:</label>
<select name="install_db_engine" id="install_db_engine" value="___INSTALL_DB_ENGINE___" class="input-text input-width-300">
<option value="InnoDB" ___INSTALL_DB_ENGINE_INNODB___>InnoDB</option>
<option value="MyISAM" ___INSTALL_DB_ENGINE_MYISAM___>MyISAM</option>
</select>
<span class="input-note">___LANG_DB_PARAMS_ENGINE_NOTICE___</span></p>
<small class="note">___LANG_DB_PARAMS_ENGINE_NOTICE___</small></p>

View file

@ -1,58 +1,54 @@
<input type="hidden" name="install_extend_params" value="1" />
<h3>___LANG_VIEW_PARAMS___</h3>
<label for="install_view_name">___LANG_VIEW_PARAMS_NAME___:</label><br />
<p><input type="text" class="input-text" name="install_view_name" value="___INSTALL_VIEW_NAME___" id="install_view_name" />
</p>
<p><label for="install_view_name">___LANG_VIEW_PARAMS_NAME___:</label>
<input type="text" class="input-text input-width-full" name="install_view_name" value="___INSTALL_VIEW_NAME___" id="install_view_name" /></p>
<label for="install_view_description">___LANG_VIEW_PARAMS_DESCRIPTION___:</label><br />
<p><input type="text" class="input-text" name="install_view_description" value="___INSTALL_VIEW_DESCRIPTION___" id="install_view_description" />
</p>
<p><label for="install_view_description">___LANG_VIEW_PARAMS_DESCRIPTION___:</label>
<input type="text" class="input-text input-width-full" name="install_view_description" value="___INSTALL_VIEW_DESCRIPTION___" id="install_view_description" /></p>
<label for="install_view_keywords">___LANG_VIEW_PARAMS_KEYWORDS___:</label><br />
<p><input type="text" class="input-text" name="install_view_keywords" value="___INSTALL_VIEW_KEYWORDS___" id="install_view_keywords" />
</p>
<p><label for="install_view_keywords">___LANG_VIEW_PARAMS_KEYWORDS___:</label>
<input type="text" class="input-text input-width-full" name="install_view_keywords" value="___INSTALL_VIEW_KEYWORDS___" id="install_view_keywords" /></p>
<label for="install_view_skin">___LANG_VIEW_PARAMS_SKIN___:</label><br />
<p>
<select name="install_view_skin" id="install_view_skin" value="___INSTALL_VIEW_SKIN___">
<p><label for="install_view_skin">___LANG_VIEW_PARAMS_SKIN___:</label>
<select name="install_view_skin" id="install_view_skin" value="___INSTALL_VIEW_SKIN___" class="input-width-200">
___INSTALL_VIEW_SKIN_OPTIONS___
</select>
</p>
<br />
<h3>___LANG_MAIL_PARAMS___</h3>
<label for="install_mail_sender">___LANG_MAIL_PARAMS_SENDER___:</label><br />
<p><input type="text" class="input-text" name="install_mail_sender" value="___INSTALL_MAIL_SENDER___" id="install_mail_sender" />
</p>
<p><label for="install_mail_sender">___LANG_MAIL_PARAMS_SENDER___:</label>
<input type="text" class="input-text input-width-300" name="install_mail_sender" value="___INSTALL_MAIL_SENDER___" id="install_mail_sender" /></p>
<p><label for="install_mail_name">___LANG_MAIL_PARAMS_NAME___:</label>
<input type="text" class="input-text input-width-300" name="install_mail_name" value="___INSTALL_MAIL_NAME___" id="install_mail_name" /></p>
<br />
<label for="install_mail_name">___LANG_MAIL_PARAMS_NAME___:</label><br />
<p><input type="text" class="input-text" name="install_mail_name" value="___INSTALL_MAIL_NAME___" id="install_mail_name" />
</p>
<h3>___LANG_GENERAL_PARAMS___</h3>
<p><input type="checkbox" class="checkbox" name="install_general_close" value="1" ___INSTALL_GENERAL_CLOSE_CHECK___ /> &mdash; ___LANG_GENERAL_PARAMS_CLOSE___
</p>
<label><input type="checkbox" class="input-checkbox" name="install_general_close" value="1" ___INSTALL_GENERAL_CLOSE_CHECK___ /> ___LANG_GENERAL_PARAMS_CLOSE___</label>
<label><input type="checkbox" class="input-checkbox" name="install_general_active" value="1" ___INSTALL_GENERAL_ACTIVE_CHECK___ /> ___LANG_GENERAL_PARAMS_ACTIVE___</label>
<label><input type="checkbox" class="input-checkbox" name="install_general_invite" value="1" ___INSTALL_GENERAL_INVITE_CHECK___ /> ___LANG_GENERAL_PARAMS_INVITE___</label>
<br />
<br />
<p><input type="checkbox" class="checkbox" name="install_general_active" value="1" ___INSTALL_GENERAL_ACTIVE_CHECK___ /> &mdash; ___LANG_GENERAL_PARAMS_ACTIVE___
</p>
<p><input type="checkbox" class="checkbox" name="install_general_invite" value="1" ___INSTALL_GENERAL_INVITE_CHECK___ /> &mdash; ___LANG_GENERAL_PARAMS_INVITE___
</p>
<h3>___LANG_LANGUAGE_PARAMS___</h3>
<label for="install_lang_current">___LANG_LANGUAGE_PARAMS_CURRENT___:</label><br />
<p>
<select name="install_lang_current" id="install_lang_current" value="___INSTALL_LANG_CURRENT___">
<p><label for="install_lang_current">___LANG_LANGUAGE_PARAMS_CURRENT___:</label>
<select name="install_lang_current" id="install_lang_current" value="___INSTALL_LANG_CURRENT___" class="input-width-200">
___INSTALL_LANG_OPTIONS___
</select>
</p>
<label for="install_lang_default">___LANG_LANGUAGE_PARAMS_DEFAULT___:</label><br />
<p>
<select name="install_lang_default" id="install_lang_default" value="___INSTALL_LANG_DEFAULT___">
<p><label for="install_lang_default">___LANG_LANGUAGE_PARAMS_DEFAULT___:</label>
<select name="install_lang_default" id="install_lang_default" value="___INSTALL_LANG_DEFAULT___" class="input-width-200">
___INSTALL_LANG_DEFAULT_OPTIONS___
</select>
</p>

View file

@ -1,45 +1,48 @@
___LANG_START_PARAGRAPH___
<input type="hidden" name="install_env_params" value="1" />
<h3>___LANG_PHP_PARAMS___</h3>
<table>
<table class="table">
<tr>
<td width="350px">___LANG_PHP_PARAMS_VERSION___</td><td>___VALIDATE_PHP_VERSION___</td>
<td>___LANG_PHP_PARAMS_VERSION___</td><td class="result">___VALIDATE_PHP_VERSION___</td>
</tr>
<tr>
<td width="350px">___LANG_PHP_PARAMS_SAFE_MODE___</td><td>___VALIDATE_SAFE_MODE___</td>
<td>___LANG_PHP_PARAMS_SAFE_MODE___</td><td class="result">___VALIDATE_SAFE_MODE___</td>
</tr>
<tr>
<td width="350px">___LANG_PHP_PARAMS_UTF8___</td><td>___VALIDATE_UTF8___</td>
<td>___LANG_PHP_PARAMS_UTF8___</td><td class="result">___VALIDATE_UTF8___</td>
</tr>
<tr>
<td width="350px">___LANG_PHP_PARAMS_MBSTRING___</td><td>___VALIDATE_MBSTRING___</td>
<td>___LANG_PHP_PARAMS_MBSTRING___</td><td class="result">___VALIDATE_MBSTRING___</td>
</tr>
<tr>
<td width="350px">___LANG_PHP_PARAMS_SIMPLEXML___</td><td>___VALIDATE_SIMPLEXML___</td>
<td>___LANG_PHP_PARAMS_SIMPLEXML___</td><td class="result">___VALIDATE_SIMPLEXML___</td>
</tr>
</table>
<br />
<h3>___LANG_LOCAL_CONFIG___</h3>
<table>
<table class="table">
<tr>
<td width="350px">___LANG_LOCAL_CONFIG_FILE___</td><td>___VALIDATE_LOCAL_CONFIG___</td>
<td>___LANG_LOCAL_CONFIG_FILE___</td><td class="result">___VALIDATE_LOCAL_CONFIG___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_TEMP_DIR___</td><td>___VALIDATE_LOCAL_TEMP___</td>
<td>___LANG_LOCAL_TEMP_DIR___</td><td class="result">___VALIDATE_LOCAL_TEMP___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_LOGS_DIR___</td><td>___VALIDATE_LOCAL_LOGS___</td>
<td>___LANG_LOCAL_LOGS_DIR___</td><td class="result">___VALIDATE_LOCAL_LOGS___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_UPLOADS_DIR___</td><td>___VALIDATE_LOCAL_UPLOADS___</td>
<td>___LANG_LOCAL_UPLOADS_DIR___</td><td class="result">___VALIDATE_LOCAL_UPLOADS___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_TEMPLATES_DIR___</td><td>___VALIDATE_LOCAL_TEMPLATES___</td>
<td>___LANG_LOCAL_TEMPLATES_DIR___</td><td class="result">___VALIDATE_LOCAL_TEMPLATES___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_TEMPLATES_CACHE_DIR___</td><td>___VALIDATE_LOCAL_TEMPLATES_CACHE___</td>
<td>___LANG_LOCAL_TEMPLATES_CACHE_DIR___</td><td class="result">___VALIDATE_LOCAL_TEMPLATES_CACHE___</td>
</tr>
<tr>
<td width="350px">___LANG_LOCAL_PLUGINS_DIR___</td><td>___VALIDATE_LOCAL_PLUGINS___</td>
<td>___LANG_LOCAL_PLUGINS_DIR___</td><td class="result">___VALIDATE_LOCAL_PLUGINS___</td>
</tr>
</table>

View file

@ -1,32 +0,0 @@
#container { width: expression((documentElement.offsetWidth || document.body.offsetWidth) < 900 ? '900px' : 'auto'); }
#header h1 { padding-top: 29px; }
#header .nav-main { padding-top: 31px; }
#nav .nav-blog li ul li a { padding: 4px 11px 4px 0; }
.topic, .topic .action, .topic .voting, #sidebar .tags ul, .people.top-blogs td.name,
.stream .stream-nav, #footer,, .profile-blog .about .content ul.admin-list,
.profile-blog .about .content, #wrapper.white-back, .block.stat .gender,
.profile-blog .about .content ul.reader-list, .profile-user .name, #pagination ul,
.block-nav, .profile-blog, .poll li dl { zoom: 1; }
.update { position:absolute; top:expression( eval(document.documentElement.scrollTop) + 220 +"px" ); }
.people table tbody td.rating.up span { background: url(../images/blog-rating-up.gif) no-repeat right 8px; }
.people table tbody td.rating.down span { background: url(../images/blog-rating-down.gif) no-repeat right 8px; }
.people.top-blogs td.name a.author { line-height: 25px; }
.people.top-blogs .join a { position: relative; top: 2px; }
.profile-blog .about { position: relative; top: -15px; }
.comment .info img.avatar { margin: 2px 7px 0 0; }
.block-nav li a { margin: 0 4px; }
.block-nav li em { margin-left: 0px; }
.topic .favorite.guest a { background: none; cursor: default; }
.overlay { zoom: 1; background: #000; filter: alpha(opacity=50); }
.login-popup .content { padding-right: 38px; }

View file

@ -1,10 +0,0 @@
#header h1 { padding-top: 29px; }
#header .nav-main { padding-top: 31px; }
.comment .info img.avatar { margin: 2px 7px 0 0; }
#nav .nav-blog li ul li a { padding: 4px 11px 4px 0; }
.people table tbody td.rating.up span { background: url(../images/blog-rating-up.gif) no-repeat right 8px; }
.people table tbody td.rating.down span { background: url(../images/blog-rating-down.gif) no-repeat right 8px; }
.people.top-blogs td.name a.author { line-height: 25px; }
.people.top-blogs .join a { position: relative; top: 1px; }
.overlay { zoom: 1; background: #000; filter: alpha(opacity=50); }
.login-popup .content { padding-right: 38px; }

View file

@ -16,116 +16,160 @@ img { border: none; }
/* Body
-------------------------------------------------------------------*/
html, body { height: 100%; }
body { font: 12px/18px Tahoma, Arial, Helvetica, sans-serif; color: #333; background: #f7f8f9; }
body { font: 13px/18px Arial, Helvetica, sans-serif; color: #333; background: #FBFCFC; }
h1, h2, h3, h4, h5, h6 { font: normal 18px Verdana; color: #333; }
h1 { font-size: 22px; line-height: 26px; margin-bottom: 10px; }
h2 { font-size: 20px; line-height: 24px; margin-bottom: 7px; }
h3 { font-size: 18px; line-height: 22px; margin-bottom: 5px; }
h1, h2, h3, h4, h5, h6 { color: #333; }
h1 { font-size: 22px; line-height: 26px; margin-bottom: 0; }
h2 { font-size: 20px; line-height: 24px; margin-bottom: 10px; }
h3 { font-size: 18px; line-height: 22px; margin-bottom: 10px; }
h4 { font-size: 18px; line-height: 22px; margin-bottom: 5px; }
h5 { font-size: 18px; line-height: 22px; margin-bottom: 5px; }
h6 { font-size: 18px; line-height: 22px; margin-bottom: 5px; }
a { color: #70aae0; }
a { color: #275EC2; }
a:hover { text-decoration: none; }
.voting a { outline: none; }
h1 span { color: #ccc; }
h1 span { color: #bbb; margin-left: 20px; }
/* Generic Blocks
/* Grid
-------------------------------------------------------------------*/
#container { min-width: 900px; }
#header { height: 80px; clear: both; overflow: hidden; zoom: 1; background: #000 url(../images/header-bg.gif) repeat-x; }
#nav { clear: both; background: #e8e8e8; }
#wrapper { overflow: hidden; zoom: 1; margin-bottom: 30px; padding: 20px 46px 30px 20px; }
#content { width: 67%; background: #fff; float: left; clear: left; padding-top: 20px; padding-bottom: 20px; zoom: 1; }
#sidebar { width: 32%; float: left; margin-left: 1%; margin-top: -6px; }
#footer { clear: both; background: url(../images/footer-bg.gif) repeat-x; padding: 20px 40px; color: #999; overflow: hidden; }
#container { width: 700px; background: #fff; margin: 50px auto; box-shadow: 0 0 5px rgba(0,0,0,.1); border-radius: 10px; overflow: hidden; }
#header {
padding: 20px 30px;
background: rgb(255,255,255);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(250,250,250,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(250,250,250,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 );
border-bottom: 1px solid #eee;
border-radius: 10px 10px 0 0;
position: relative;
}
#header .lang { position: absolute; top: 23px; right: 30px; text-transform: lowercase; color: #ccc; }
#content { padding: 30px 30px; }
.update-hide { padding: 20px 16px 30px 20px !important; }
.white-back { background: #fff; margin: 0 20px 30px 20px; padding-bottom: 15px ; padding-left: 20px; }
.white-back #content { clear: none; padding-top: 0; }
.page-talk { padding-left: 3px !important; margin-right: 50px !important; }
/* Forms
-------------------------------------------------------------------*/
label { margin-bottom: 2px; }
.input-text {
width: 150px;
padding: 5px;
border: 1px solid #c9c9c9;
box-shadow: 0 2px 4px rgba(0,0,0,.07) inset;
border-radius: 3px;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.input-text:focus { border-color: #4D90FE; box-shadow: 0 2px 4px rgba(0,0,0,.07) inset, 0 0 3px #4D90FE; outline: none; }
.input-checkbox { position: relative; top: 1px; margin: 0 2px 0 1px; }
.input-width-full { width: 100%; }
.input-width-50 { width: 50px; }
.input-width-100 { width: 100px; }
.input-width-150 { width: 150px; }
.input-width-200 { width: 200px; }
.input-width-250 { width: 250px; }
.input-width-300 { width: 300px; }
.input-width-400 { width: 400px; }
.input-width-500 { width: 500px; }
textarea { -moz-box-sizing: border-box; box-sizing: border-box; }
select { padding: 4px; border: 1px solid #ddd; border-radius: 3px; }
fieldset { margin-bottom: 30px; padding-top: 20px; border-top: 1px solid #eaeaea; }
fieldset legend { color: #000; font-size: 18px; padding-right: 10px; }
form p { margin-bottom: 20px; }
form .note { float: right; font-size: 11px; }
form .buttons { overflow: hidden; }
form .right { float: right; font-size: 18px; font-family: Tahoma; color: #333; padding: 5px; }
textarea { width: 99%; height: 200px; margin-bottom: 5px; }
textarea.small { width: 300px; height: 70px; margin-bottom: 5px; }
select { width: 99%; }
.w50 { width: 50px; }
.w70 { width: 70px; }
.w100 { width: 100px; }
.w200 { width: 200px; }
.w300 { width: 300px; }
.w100p { width: 99%; }
.radio { position: relative; top: 2px; }
.checkbox { position: relative; top: 2px; margin-left: 0; }
.form-tags { padding: 10px; background: #fafafa; color: #999; }
.form-tags input { width: 99%; }
.form_note { font-size: 11px; color: #aaa; }
form label { display: block; margin-bottom: 3px; }
form .icon-question-sign { cursor: help; }
.note { display: block; margin-top: 3px; font-size: 12px; line-height: 16px; color: #aaa; }
/* Login and Lite Pages
/* Notifications
-------------------------------------------------------------------*/
.lite-header { padding: 30px 20px; }
.lite-header a { color: #c7c7c7; font-size: 26px; text-decoration: none; }
.lite-header a span { color: #dedede; }
.lite-header a:hover { color: #333; }
.lite-header a:hover span { color: #777; }
.system-messages-error { background: #f0c8c8; color: #b22626; padding: 10px 15px; margin-bottom: 15px; border-radius: 5px; }
.system-messages-notice { background: #dafad8; color: #4bb23b; padding: 10px 15px; margin-bottom: 15px; border-radius: 5px; }
.lite-center { margin: 0 auto 20px; top: 200px; width: 400px; color: #888; }
.lite-center h3, .login-popup h3 { color: #bec0bf; margin-bottom: 20px; }
.lite-center button, .login-popup button { float: right; }
.lite-center .input-text, .login-popup .input-text { width: 400px; font-size: 18px; padding: 4px 0; border: 1px solid #d7d7d7; color: #555; }
.lite-center .input-checkbox, .login-popup .input-checkbox { padding-top: 7px; }
.lite-center .input-checkbox input, .login-popup .input-checkbox input { position: relative; top: 2px; }
.lite-center .input-note { display: block; color: #bbb; font-size: 11px; line-height: 14px; }
.lite-center.error h1 { font-size: 28px; color: #888; }
.lite-center.error p { margin-bottom: 10px; color: #888; }
.lite-center.register { position: static; margin: 0 auto; }
.lite-note { overflow: hidden; zoom: 1; }
.lite-note a { float: right; font-size: 11px; }
.login-popup { z-index: 100; width: 492px; }
.login-popup .input-text { width: 402px; padding: 4px 5px; }
.login-popup .content { background: #dcdedd url(../images/login-popup-bg.gif) repeat-x; padding: 15px 40px; }
.login-popup .login-popup-top { height: 14px; background: url(../images/login-popup-top.gif) no-repeat; width: 492px; position: relative; }
.login-popup .login-popup-bottom { height: 14px; background: url(../images/login-popup-bottom.gif) no-repeat; width: 492px; }
.login-popup .close-block { position: absolute; top: 10px; right: 10px; width: 14px; height: 14px; background: url(../images/close-block.gif) no-repeat; }
.upload-image p { margin-bottom: 5px; }
.upload-image label { color: #aaa; }
.tags-input { width: 400px; font-size: 18px; padding: 4px 4px 6px; border: 1px solid #ccc; color: #555; background: #fafafa; }
/* Tables
-------------------------------------------------------------------*/
.table { width: 100%; margin-bottom: 15px; border-collapse: collapse; }
.table td { padding: 10px 10px; background: #fafafa; border-bottom: 2px solid #fff; }
.table tr:hover td { background: #bbffe1; }
.table td.result { width: 50px; text-align: center; }
/* Button
-------------------------------------------------------------------*/
button, a.button { font-size: 14px; font-family: Tahoma, sans-serif; border: none; background: none; padding: 0; overflow: visible; text-align: center; white-space: nowrap; cursor: pointer; }
button span, button em, a.button span, a.button em { display: block; height: 31px; line-height: 31px; margin: 0; color:#333; }
button span, a.button span { background: url(../images/button.gif) no-repeat 0 0; margin-right: 20px; }
button em, a.button em { font-style: normal; padding-right: 20px; background: url(../images/button.gif) no-repeat right 0; position: relative; right: -20px; }
a.button.small { font-size: 12px; text-decoration: none; }
a.button.small span, a.button.small em { height: 22px; line-height: 22px; }
a.button.small span { background: url(../images/button-small.gif) no-repeat 0 0; margin-right: 20px; }
a.button.small em { background: url(../images/button-small.gif) no-repeat right 0; }
#system_messages_error { background: #f0c8c8; border: 1px solid #ff8181; padding: 15px; margin-bottom: 15px; color: #b22626; }
#system_messages_notice { background: #dafad8; border: 1px solid #83c460; padding: 15px; margin-bottom: 15px; color: #4bb23b; }
.button {
display: inline-block;
padding: 3px 10px 6px;
*padding: 3px 10px 4px;
text-align: center;
border: 1px solid #dfe3e8;
border-radius: 5px;
font-size: 13px;
line-height: 16px;
color: #434343;
background: #fbfcfc;
background: -moz-linear-gradient(top, #fbfcfc 0%, #f0f2f5 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfcfc), color-stop(100%,#f0f2f5));
background: -webkit-linear-gradient(top, #fbfcfc 0%,#f0f2f5 100%);
background: -o-linear-gradient(top, #fbfcfc 0%,#f0f2f5 100%);
background: -ms-linear-gradient(top, #fbfcfc 0%,#f0f2f5 100%);
background: linear-gradient(top, #fbfcfc 0%,#f0f2f5 100%);
font-family: Verdana, sans-serif;
cursor: pointer;
text-decoration: none;
*margin-right: 5px;
}
.button:hover { text-decoration: none; background: #f0f2f5; }
.button:active {
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
}
.button.fl-r { *margin-right: 0; }
/* Button Primary */
.button.button-primary {
background: #66cfff;
background: -moz-linear-gradient(top, #66cfff 0%, #2abcfe 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#66cfff), color-stop(100%,#2abcfe));
background: -webkit-linear-gradient(top, #66cfff 0%,#2abcfe 100%);
background: -o-linear-gradient(top, #66cfff 0%,#2abcfe 100%);
background: -ms-linear-gradient(top, #66cfff 0%,#2abcfe 100%);
background: linear-gradient(top, #66cfff 0%,#2abcfe 100%);
border: 1px solid #27ace8;
color: #fff;
}
.button.button-primary:hover { background: #2abcfe; }

View file

@ -84,6 +84,7 @@ h2.header-table span { color: #949aa1; }
.dropdown-user-menu li:last-child a { border-radius: 0 0 10px 10px; }
.dropdown-user-menu li.item-stat { padding: 20px 17px; font-size: 11px; background: #191919 url(../images/dropdown-user-shadow.png) left bottom repeat-x; }
.dropdown-user-menu li.item-stat .rating { color: #9dd868; margin-right: 21px; }
.dropdown-user-menu li.item-stat .rating.negative { color: #d95f5f; }
.dropdown-user-menu li.item-stat .rating i { position: relative; top: 2px; }
.dropdown-user-menu li.item-stat .strength { color: #93d3f2; }
.dropdown-user-menu li.item-stat .arrow { position: relative; top: 3px; }

View file

@ -36,14 +36,20 @@
{hook run='footer_menu_navigate_item'}
</ul>
<ul class="footer-list">
<li class="footer-list-header">{$aLang.footer_menu_project_title}</li>
<li><a href="#">{$aLang.footer_menu_project_about}</a></li>
<li><a href="#">{$aLang.footer_menu_project_contact}</a></li>
<li><a href="#">{$aLang.footer_menu_project_advert}</a></li>
<li><a href="#">{$aLang.footer_menu_project_help}</a></li>
{hook run='footer_menu_project_item'}
</ul>
{* RU: Тут можно добавить свой блок со ссылками, расскоментируйте блок кода ниже и добавьте свои ссылки *}
{* EN: You can add additional block with links here, just uncomment code below and add your links *}
{*
<ul class="footer-list">
<li class="footer-list-header">{$aLang.footer_menu_project_title}</li>
<li><a href="#">{$aLang.footer_menu_project_about}</a></li>
<li><a href="#">{$aLang.footer_menu_project_contact}</a></li>
<li><a href="#">{$aLang.footer_menu_project_advert}</a></li>
<li><a href="#">{$aLang.footer_menu_project_help}</a></li>
{hook run='footer_menu_project_item'}
</ul>
*}
<div class="copyright">
{hook run='copyright'}

View file

@ -27,8 +27,8 @@
<ul class="dropdown-user-menu" id="dropdown-user-menu" style="display: none">
<li class="item-stat">
<span class="rating"><i class="icon-synio-star-green"></i> {$oUserCurrent->getRating()} {*<i class="arrow icon-synio-arrow-up"></i>*}</span>
<span class="strength"><i class="icon-synio-strength"></i> {$oUserCurrent->getSkill()} {*<i class="arrow icon-synio-arrow-down"></i>*}</span>
<span class="rating {if $oUserCurrent->getRating() < 0}negative{/if}"><i class="icon-synio-star-green"></i> {$oUserCurrent->getRating()}</span>
<span class="strength"><i class="icon-synio-strength"></i> {$oUserCurrent->getSkill()}</span>
{hook run='userbar_stat_item'}
</li>
{hook run='userbar_item_first'}

View file

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -91,7 +91,7 @@
{/if}
{/if}
{if $oUserCurrent && $oTopic->getUserId() != $oUserCurrent->getId()}
{if !$oUserCurrent or ($oUserCurrent && $oTopic->getUserId() != $oUserCurrent->getId())}
vote-not-self
{/if}