jayya (relative) compatible with the newest admin interface (temporary solution - should make testing easier)
@@ -11,8 +11,8 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/admin_template.php,v $
|
||||
| $Revision: 1.5 $
|
||||
| $Date: 2008-12-20 10:39:14 $
|
||||
| $Revision: 1.6 $
|
||||
| $Date: 2009-04-27 10:52:42 $
|
||||
| $Author: secretr $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
@@ -153,25 +153,22 @@ $ADMIN_FOOTER .= "</tr>
|
||||
";
|
||||
|
||||
|
||||
// [admin button style]
|
||||
/* NEW ADMIN MENU TEMPLATE
|
||||
|
||||
* see function e_admin_menu() in e107_admin/header.php
|
||||
|
||||
*/
|
||||
*/
|
||||
$E_ADMIN_MENU['start'] = '
|
||||
<ul class="plugin-navigation">
|
||||
';
|
||||
|
||||
$E_ADMIN_MENU['button'] = '
|
||||
<li>
|
||||
<a class="link{LINK_CLASS}" href="{LINK_URL}"{ID}{ONCLICK}>» {LINK_TEXT}</a>
|
||||
<a class="link{LINK_CLASS}" href="{LINK_URL}"{ID}{ONCLICK}>{LINK_TEXT}</a>
|
||||
{SUB_MENU}
|
||||
</li>
|
||||
';
|
||||
$E_ADMIN_MENU['button_active'] = '
|
||||
<li>
|
||||
<a class="link-active{LINK_CLASS}" href="{LINK_URL}"{ID}{ONCLICK}>» {LINK_TEXT}</a>
|
||||
<li class="active">
|
||||
<a class="link-active{LINK_CLASS}" href="{LINK_URL}"{ID}{ONCLICK}>{LINK_TEXT}</a>
|
||||
{SUB_MENU}
|
||||
</li>
|
||||
';
|
||||
|
306
e107_themes/jayya/admin_theme.php
Normal file
@@ -0,0 +1,306 @@
|
||||
<?php
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/admin_theme.php,v $
|
||||
| $Revision: 1.1 $
|
||||
| $Date: 2009-04-27 10:52:42 $
|
||||
| $Author: secretr $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// Protect the file from direct access
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
|
||||
// Get language definition files for this theme
|
||||
include_lan(e_THEME."jayya/languages/".e_LANGUAGE.".php");
|
||||
|
||||
|
||||
// [theme]
|
||||
|
||||
$themename = "Jayya";
|
||||
$themeversion = "1.0";
|
||||
$themeauthor = "";
|
||||
$themedate = "";
|
||||
$themeinfo = "";
|
||||
$xhtmlcompliant = TRUE;
|
||||
$csscompliant = TRUE;
|
||||
define("THEME_DISCLAIMER", "");
|
||||
define("IMODE", "lite");
|
||||
|
||||
// [dont render core style sheet link]
|
||||
$no_core_css = TRUE;
|
||||
|
||||
/**
|
||||
* JSLIB instructions (could be chaged in the near future)
|
||||
*/
|
||||
$THEME_CORE_JSLIB = array(
|
||||
'jslib/core/decorate.js' => 'all',
|
||||
'jslib/core/tabs.js' => 'admin'
|
||||
);
|
||||
|
||||
function theme_head()
|
||||
{
|
||||
return "
|
||||
<script type='text/javascript'>
|
||||
/**
|
||||
* Decorate all tables having e-list class
|
||||
* TODO: add 'adminlist' class to all list core tables, allow theme decorate.
|
||||
*/
|
||||
e107.runOnLoad( function(event) {
|
||||
var element = event.memo['element'] ? $(event.memo.element) : $$('body')[0];
|
||||
|
||||
element.select('table.adminlist:not(.no-decorate)').each(function(element) {
|
||||
e107Utils.Decorate.table(element, {tr_td: 'first last'});
|
||||
});
|
||||
element.select('div.admintabs').each(function(element) {
|
||||
//show tab navaigation
|
||||
element.select('ul.e-tabs').each( function(el){
|
||||
el.show();
|
||||
el.removeClassName('e-hideme');//prevent hideme re-register (e.g. ajax load)
|
||||
});
|
||||
//init tabs
|
||||
new e107Widgets.Tabs(element);
|
||||
//hide legends if any
|
||||
element.select('legend').invoke('hide');
|
||||
});
|
||||
|
||||
}, document, true);
|
||||
|
||||
</script>";
|
||||
}
|
||||
// [layout]
|
||||
|
||||
$layout = "_default";
|
||||
|
||||
$HEADER = "<table class='page_container'>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
<table class='top_section'>
|
||||
<tr>
|
||||
<td class='top_section_left' style='width: 190px; padding-left: 5px; padding-right: 5px'>
|
||||
{LOGO}
|
||||
</td>
|
||||
<td class='top_section_mid'>
|
||||
{BANNER}
|
||||
</td>
|
||||
|
||||
<td class='top_section_right' style='padding: 0px; white-space: nowrap; width: 170px'>
|
||||
{CUSTOM=search+default}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div>
|
||||
{SITELINKS_ALT=".THEME_ABS."images/arrow.png+noclick}
|
||||
</div>
|
||||
|
||||
<table class='main_section'>
|
||||
<colgroup>
|
||||
<col style='width: 170px' />
|
||||
<col style='width: auto' />
|
||||
<col style='width: 170px' />
|
||||
</colgroup>
|
||||
|
||||
<tr>
|
||||
<td class='left_menu'>
|
||||
<table class='menus_container'><tr><td>
|
||||
{SETSTYLE=leftmenu}
|
||||
{MENU=1}
|
||||
</td></tr></table>
|
||||
</td>
|
||||
<td class='default_menu'>
|
||||
{SETSTYLE=default}
|
||||
{WMESSAGE}
|
||||
";
|
||||
|
||||
$FOOTER = "<br />
|
||||
</td>
|
||||
|
||||
<td class='right_menu'>
|
||||
<table class='menus_container'><tr><td>
|
||||
{SETSTYLE=rightmenu}
|
||||
{MENU=2}
|
||||
</td></tr></table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style='text-align:center'>
|
||||
<br />
|
||||
{SITEDISCLAIMER}
|
||||
<br /><br />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
";
|
||||
|
||||
|
||||
// [linkstyle]
|
||||
|
||||
define('PRELINK', '');
|
||||
define('POSTLINK', '');
|
||||
define('LINKSTART', '');
|
||||
define('LINKEND', '');
|
||||
define('LINKDISPLAY', 1);
|
||||
define('LINKALIGN', 'left');
|
||||
|
||||
|
||||
// [newsstyle]
|
||||
|
||||
$sc_style['NEWSIMAGE']['pre'] = "<td style='padding-right: 7px; vertical-align: top'>";
|
||||
$sc_style['NEWSIMAGE']['post'] = "</td>";
|
||||
|
||||
$NEWSSTYLE = "<div class='cap_border'><div class='main_caption'><div class='bevel'>
|
||||
{STICKY_ICON}{NEWSTITLE}
|
||||
</div></div></div>
|
||||
<div class='menu_content'>
|
||||
<table style='width: 100%'>
|
||||
<tr>
|
||||
{NEWSIMAGE}
|
||||
<td style='width: 100%; vertical-align: top'>
|
||||
{NEWSBODY}
|
||||
{EXTENDED}
|
||||
<br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class='menu_content'>
|
||||
<table class='news_info'>
|
||||
<tr>
|
||||
<td style='text-align: center; padding: 3px; padding-bottom: 0px; white-space: nowrap'>
|
||||
{NEWSICON}
|
||||
</td>
|
||||
<td style='width: 100%; padding: 0px; padding-bottom: 0px; padding-left: 2px'>
|
||||
".LAN_THEME_5."
|
||||
{NEWSAUTHOR}
|
||||
".LAN_THEME_6."
|
||||
{NEWSDATE}
|
||||
</td><td style='text-align: center; padding: 3px; padding-bottom: 0px; white-space: nowrap'>
|
||||
<img src='".THEME_ABS."images/comments_16.png' style='width: 16px; height: 16px' alt='' />
|
||||
</td>
|
||||
<td style='padding: 0px; padding-left: 2px; white-space: nowrap'>
|
||||
{NEWSCOMMENTS}
|
||||
</td><td style='padding: 0px; white-space: nowrap'>
|
||||
{TRACKBACK}
|
||||
</td><td style='text-align: center; padding: 3px; padding-bottom: 0px; padding-left: 7px; white-space: nowrap'>
|
||||
{EMAILICON}
|
||||
{PRINTICON}
|
||||
{PDFICON}
|
||||
{ADMINOPTIONS}
|
||||
</td></tr></table>
|
||||
<br /></div>";
|
||||
|
||||
define('ICONMAIL', 'email_16.png');
|
||||
define('ICONPRINT', 'print_16.png');
|
||||
define('ICONSTYLE', 'border: 0px');
|
||||
define('COMMENTLINK', LAN_THEME_2);
|
||||
define('COMMENTOFFSTRING', LAN_THEME_1);
|
||||
define('PRE_EXTENDEDSTRING', '<br /><br />[ ');
|
||||
define('EXTENDEDSTRING', LAN_THEME_3);
|
||||
define('POST_EXTENDEDSTRING', ' ]<br />');
|
||||
define('TRACKBACKSTRING', LAN_THEME_4);
|
||||
define('TRACKBACKBEFORESTRING', ' | ');
|
||||
|
||||
|
||||
// [tablestyle]
|
||||
|
||||
function tablestyle($caption, $text, $mode){
|
||||
global $style;
|
||||
$caption = $caption ? $caption : ' ';
|
||||
if ((isset($mode['style']) && $mode['style'] == 'button_menu') || (isset($mode) && ($mode == 'menus_config'))) {
|
||||
$menu = ' buttons';
|
||||
$bodybreak = '';
|
||||
$but_border = ' button_menu';
|
||||
} else {
|
||||
$menu = '';
|
||||
$bodybreak = '<br />';
|
||||
$but_border = '';
|
||||
}
|
||||
|
||||
$menu .= ($style && $style != 'default') ? ' non_default' : '';
|
||||
|
||||
echo "<div class='cap_border".$but_border."'>";
|
||||
if ($style == 'leftmenu') {
|
||||
echo "<div class='left_caption'><div class='bevel'>".$caption."</div></div>";
|
||||
} else if ($style == 'rightmenu') {
|
||||
echo "<div class='right_caption'><div class='bevel'>".$caption."</div></div>";
|
||||
} else {
|
||||
echo "<div class='main_caption'><div class='bevel'>".$caption."</div></div>";
|
||||
}
|
||||
echo "</div>";
|
||||
if ($text != "") {
|
||||
echo "<table class='cont'><tr><td class='menu_content ".$menu."'>".$text.$bodybreak."</td></tr></table>";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// chatbox post style
|
||||
$CHATBOXSTYLE = "
|
||||
<img src='".e_IMAGE_ABS."admin_images/chatbox_16.png' alt='' style='width: 16px; height: 16px; vertical-align: bottom' />
|
||||
<b>{USERNAME}</b><br />{TIMEDATE}<br />{MESSAGE}<br /><br />";
|
||||
|
||||
|
||||
// comment post style
|
||||
$sc_style['REPLY']['pre'] = "<tr><td class='forumheader'>";
|
||||
$sc_style['REPLY']['post'] = "</td>";
|
||||
|
||||
$sc_style['SUBJECT']['pre'] = "<td class='forumheader'>";
|
||||
$sc_style['SUBJECT']['post'] = "</td></tr>";
|
||||
|
||||
$sc_style['COMMENTEDIT']['pre'] = "<tr><td class='forumheader' colspan='2' style='text-align: right'>";
|
||||
$sc_style['COMMENTEDIT']['post'] = "</td></tr>";
|
||||
|
||||
$sc_style['JOINED']['post'] = "<br />";
|
||||
|
||||
$sc_style['LOCATION']['post'] = "<br />";
|
||||
|
||||
$sc_style['RATING']['post'] = "<br /><br />";
|
||||
|
||||
$sc_style['COMMENT']['post'] = "<br />";
|
||||
|
||||
$COMMENTSTYLE = "<div class='spacer' style='text-align:center'><table class='fborder' style='width: 95%'>
|
||||
<tr>
|
||||
<td class='fcaption' colspan='2'>".LAN_THEME_5." {USERNAME} ".LAN_THEME_6." {TIMEDATE}
|
||||
</td>
|
||||
</tr>
|
||||
{REPLY}{SUBJECT}
|
||||
<tr>
|
||||
<td style='width: 20%; vertical-align: top' class='forumheader3'>
|
||||
<div style='text-align: center'>
|
||||
{AVATAR}
|
||||
</div>
|
||||
{LEVEL}<span class='smalltext'>{JOINED}{COMMENTS}{LOCATION}{IPADDRESS}</span>
|
||||
</td>
|
||||
<td style='width: 80%; vertical-align: top' class='forumheader3'>
|
||||
{COMMENT}
|
||||
{RATING}
|
||||
{SIGNATURE}
|
||||
</td>
|
||||
</tr>
|
||||
{COMMENTEDIT}
|
||||
</table>
|
||||
</div>";
|
||||
|
||||
|
||||
// poll style
|
||||
$POLLSTYLE = "<img src='".THEME_ABS."images/polls.png' style='width: 10px; height: 14px; vertical-align: bottom' /> {QUESTION}
|
||||
<br /><br />
|
||||
{OPTIONS=<img src='".THEME_ABS."images/bullet2.gif' style='width: 10px; height: 10px' /> OPTION<br />BAR<br /><span class='smalltext'>PERCENTAGE VOTES</span><br /><br />}
|
||||
<div style='text-align:center' class='smalltext'>{AUTHOR}<br />{VOTE_TOTAL} {COMMENTS}
|
||||
<br />
|
||||
{OLDPOLLS}
|
||||
</div>";
|
||||
|
||||
?>
|
BIN
e107_themes/jayya/images/arrow_16.png
Normal file
After Width: | Height: | Size: 743 B |
BIN
e107_themes/jayya/images/arrow_over_16.png
Normal file
After Width: | Height: | Size: 706 B |
BIN
e107_themes/jayya/images/btn_active_left.gif
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
e107_themes/jayya/images/btn_active_right.gif
Normal file
After Width: | Height: | Size: 425 B |
BIN
e107_themes/jayya/images/btn_left.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
e107_themes/jayya/images/btn_over_left.gif
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
e107_themes/jayya/images/btn_over_right.gif
Normal file
After Width: | Height: | Size: 417 B |
BIN
e107_themes/jayya/images/btn_remove_active_left.gif
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
e107_themes/jayya/images/btn_remove_left.gif
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
e107_themes/jayya/images/btn_remove_over_left.gif
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
e107_themes/jayya/images/btn_remove_right.gif
Normal file
After Width: | Height: | Size: 488 B |
BIN
e107_themes/jayya/images/btn_right.gif
Normal file
After Width: | Height: | Size: 413 B |
BIN
e107_themes/jayya/images/btn_update_active_left.gif
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
e107_themes/jayya/images/btn_update_left.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
e107_themes/jayya/images/btn_update_over_left.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
e107_themes/jayya/images/messagebox_critical.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
e107_themes/jayya/images/messagebox_info.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
e107_themes/jayya/images/messagebox_warning.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
e107_themes/jayya/images/ok.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
@@ -11,9 +11,9 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/languages/English.php,v $
|
||||
| $Revision: 1.2 $
|
||||
| $Date: 2007-03-03 19:59:20 $
|
||||
| $Author: e107steved $
|
||||
| $Revision: 1.3 $
|
||||
| $Date: 2009-04-27 10:52:42 $
|
||||
| $Author: secretr $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
@@ -24,4 +24,10 @@ define("LAN_THEME_4", "Trackbacks: ");
|
||||
define("LAN_THEME_5", "Posted by ");
|
||||
define("LAN_THEME_6", "on ");
|
||||
|
||||
define("EMESSLAN_TITLE_INFO", "System Information");
|
||||
define("EMESSLAN_TITLE_ERROR", "Error");
|
||||
define("EMESSLAN_TITLE_SUCCESS", "Success");
|
||||
define("EMESSLAN_TITLE_WARNING", "Warning");
|
||||
define("EMESSLAN_TITLE_DEBUG", "System Debug");
|
||||
|
||||
?>
|
@@ -351,4 +351,395 @@ div.menu div.menuItemSep {
|
||||
|
||||
a.menuItem.header {
|
||||
border-bottom: 1px solid #b3b3b3;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
QUICK TEMPORARY 0.8 FIX
|
||||
*/
|
||||
|
||||
/* Forms */
|
||||
form { display:inline; }
|
||||
fieldset { border: 0; margin-bottom: 10px; }
|
||||
input, select{ vertical-align:middle; }
|
||||
textarea { overflow:auto; }
|
||||
|
||||
/* Table */
|
||||
table { border:0; border-spacing:0; empty-cells:show; font-size:100%; width: 100%; }
|
||||
th { vertical-align:top; text-align:left; font-weight:normal; }
|
||||
td { vertical-align:top; }
|
||||
|
||||
/* Lists */
|
||||
ul,ol { list-style:none; }
|
||||
|
||||
/*
|
||||
* e107 v0.800 - new class definitions
|
||||
*/
|
||||
|
||||
/* Core Formatting */
|
||||
.left { text-align: left }
|
||||
.right { text-align: right }
|
||||
.center { text-align: center }
|
||||
.f-left { float: left }
|
||||
.f-right { float: right }
|
||||
.top { vertical-align: top }
|
||||
.middle { vertical-align: middle }
|
||||
.bottom { vertical-align: bottom }
|
||||
.clear { clear: both }
|
||||
.clear-l { clear: right }
|
||||
.clear-r { clear: left }
|
||||
.smalltext { font-size: 11px; }
|
||||
.nowrap { white-space:nowrap; }
|
||||
|
||||
/* Core Icons */
|
||||
img.icon { border: 0 }
|
||||
img.icon.list { margin: 0px 5px 5px 0px }
|
||||
img.icon.action { vertical-align: middle }
|
||||
img.S16 { width: 16px; height: 16px }
|
||||
img.S32 { width: 32px; height: 32px }
|
||||
img.S64 { width: 64px; height: 64px }
|
||||
img.S128 { width: 128px; height: 128px }
|
||||
/*******************************************************************************************************************/
|
||||
|
||||
/******** Decorate JS */
|
||||
/* Admin List Table */
|
||||
.adminlist { width:100%; border:1px solid #ddd;}
|
||||
.adminlist th { padding: 5px; border-bottom:1px solid #ddd; border-right: 1px solid #ddd; font-weight: bold }
|
||||
.adminlist td { padding: 5px; border-bottom:1px solid #ddd; border-right: 1px solid #ddd; }
|
||||
.adminlist th.last,
|
||||
.adminlist td.last { border-right: 0px solid;}
|
||||
.adminlist tr.last td{ border-bottom: 0px solid;}
|
||||
.adminlist thead { background-color:#f2f2f2; }
|
||||
|
||||
.adminlist tbody {}
|
||||
.adminlist tfoot {}
|
||||
.adminlist tr.first {}
|
||||
.adminlist tr.last {}
|
||||
.adminlist tr.odd {}
|
||||
.adminlist tr.even { background-color:#f6f6f6; }
|
||||
|
||||
/* Form elements */
|
||||
input.input-text,
|
||||
textarea,
|
||||
select, .tbox, .helpbox {
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:#aaa #c8c8c8 #c8c8c8 #aaa;
|
||||
background:#fff;
|
||||
font:12px arial, helvetica, sans-serif;
|
||||
}
|
||||
option { padding-right: 10px;}
|
||||
input.input-text, textarea, .tbox, .helpbox { padding:2px; }
|
||||
.tbox.large { width: 95% !important; }
|
||||
select.tbox { min-height:17px; padding: 0px; /* setting the height of empty selects */ }
|
||||
.select.order { width: 40px !important; }
|
||||
.select.time-offset { width: 60px !important; }
|
||||
input.radio { margin-right: 3px; }
|
||||
label { cursor: pointer; }
|
||||
.checkbox { margin-right: 5px; }
|
||||
|
||||
.check-block { /* see administration newspost.php */
|
||||
padding: 2px 0px;
|
||||
border-width:1px;
|
||||
border-style:solid;
|
||||
border-color:#aaa #c8c8c8 #c8c8c8 #aaa;
|
||||
background:#fff;
|
||||
font:12px arial, helvetica, sans-serif;
|
||||
overflow:auto
|
||||
}
|
||||
.check-block .checkbox { margin-left: 2px }
|
||||
.check-block .separator { clear: both; border-bottom: 1px solid #aaa; margin-bottom: 4px; height: 4px }
|
||||
|
||||
|
||||
.field-help { width: 280px; line-height: 1.4em; padding-top: 3px; color:#333333; font-size: 11px; }
|
||||
.label-note { font-style: italic; }
|
||||
.form-note { font-style: italic; }
|
||||
.field-spacer.strong { font-weight: bold }
|
||||
|
||||
/* Related JS functionality - .autocheck together with .auto-toggle-area (see admin/image.php) */
|
||||
.auto-toggle-area { width: 280px; cursor: pointer; }
|
||||
|
||||
/* form used for settings */
|
||||
.col-label { width: 250px; }
|
||||
.col-control {}
|
||||
|
||||
.adminform { width:100%; border:1px solid #ddd;}
|
||||
|
||||
.adminform th { padding: 5px; font-weight: bold; white-space:nowrap; }
|
||||
.adminform td { padding: 5px; }
|
||||
|
||||
|
||||
.adminform td { padding: 5px; text-align: left}
|
||||
.adminform td div.field-spacer { margin-bottom: 3px; } /* multi-fields per row separator */
|
||||
.adminform td div.field-section { clear: both; margin-bottom: 10px; } /* multi-field sections per row - wrapper */
|
||||
|
||||
.adminform td .check-block { width:95%; height:60px; }
|
||||
|
||||
.adminform .select { width: 280px;}
|
||||
.adminform .input-text { width: 274px;}
|
||||
.adminform td.control textarea { width: 274px;}
|
||||
|
||||
.adminform td.label { }
|
||||
.adminform td.control { }
|
||||
|
||||
|
||||
/* form used for content edit */
|
||||
.adminedit { width:100%; border:1px solid #ddd;}
|
||||
.adminedit.options { } /* form used for content item options */
|
||||
.adminedit td { padding: 5px; text-align: left}
|
||||
.adminedit td div.field-spacer { clear: both; margin-bottom: 3px; } /* multi-fields per row - wrapper */
|
||||
.adminedit td div.field-section { clear: both; margin-bottom: 10px; } /* multi-field sections per row - wrapper */
|
||||
.adminedit .select { width: 280px; }
|
||||
.adminedit .input-text { width: 274px;}
|
||||
.adminedit td.control textarea { width: 274px;}
|
||||
.adminedit td.control textarea.large { width: 400px; }
|
||||
|
||||
.adminedit td .check-block { width:95%; height:60px; }
|
||||
|
||||
.adminedit td.label {}
|
||||
.adminedit td.control {}
|
||||
|
||||
|
||||
/* Admin Info Table */
|
||||
.admininfo { width:100%; border:1px solid #ddd;}
|
||||
.admininfo td { padding: 1px 5px; text-align: left}
|
||||
|
||||
|
||||
.info-bar { padding: 5px 0px; }
|
||||
|
||||
/* Images and avatars */
|
||||
.image-box {border:1px solid #ddd; margin-right: 10px; position: relative; margin-bottom: 10px; }
|
||||
.image-box .spacer { }
|
||||
.image-box .image-name { padding: 5px; }
|
||||
.image-box .image-delete { position: absolute ; bottom: 10px; text-align: center; width: 100%}
|
||||
.image-box .image-users {padding: 5px;}
|
||||
.image-box .image-preview {padding: 5px;}
|
||||
|
||||
/******** Prepare for Image Preview JS */
|
||||
.image-preview {}
|
||||
|
||||
/******** Tabs JS */
|
||||
.admintabs ul.e-tabs { border-bottom: 1px solid #DDDDDD; height: 31px; }
|
||||
.admintabs ul.e-tabs li { border: 1px solid #DDDDDD; display: block; float: left; line-height: 30px; padding: 0px 7px; margin-right: 3px; background-color: #F9F9F9 }
|
||||
.admintabs fieldset { clear: both ; border: 1px solid #DDDDDD; padding: 10px; border-top: 0px none; }
|
||||
.admintabs fieldset legend { border: 1px solid #DDDDDD; }
|
||||
.admintabs ul.e-tabs li.active { border-bottom: 1px solid #FFFFFF; background-color: #FFFFFF}
|
||||
|
||||
/******** SyS Messages / Message text formatting */
|
||||
/* message boxes */
|
||||
.s-message { }
|
||||
|
||||
.s-message div.info,
|
||||
.s-message div.error,
|
||||
.s-message div.success,
|
||||
.s-message div.debug,
|
||||
.s-message div.warning { padding: 5px; margin-bottom: 10px; }
|
||||
|
||||
|
||||
.s-message div.info { background-color:#C1E0FF; border: 1px solid #3399FF; }
|
||||
.s-message div.error { background-color:#FFCECE; border: 1px solid #CC0000; }
|
||||
.s-message div.success { background-color:#DFFFDF; border: 1px solid #009900; }
|
||||
.s-message div.warning { background-color:#FFFFD5; border: 1px solid #FFCC00; }
|
||||
.s-message div.debug { background-color:#FFFFFF; border: 1px solid #EAEAEA; }
|
||||
|
||||
.s-message .s-message-title { height: 32px; background: 0 50% no-repeat; padding-left: 42px; font-size: 14px; font-weight: bold; line-height: 32px; }
|
||||
|
||||
.s-message div.info .s-message-title { background-image: url(images/messagebox_info.png); }
|
||||
.s-message div.error .s-message-title { background-image: url(images/messagebox_critical.png); }
|
||||
.s-message div.success .s-message-title { background-image: url(images/ok.png); }
|
||||
.s-message div.warning .s-message-title { background-image: url(images/messagebox_warning.png); }
|
||||
.s-message div.debug .s-message-title { background-image: url(images/messagebox_info.png); }
|
||||
|
||||
.s-message-body { padding-left: 42px; }
|
||||
.s-message-item {}
|
||||
|
||||
/* validate result inline message */
|
||||
.validate-result {}
|
||||
|
||||
/* message text (overall) */
|
||||
.warning { color: #FF6600 }
|
||||
.success { color: green; }
|
||||
.error { color: #FF0000 }
|
||||
.info {}
|
||||
|
||||
/******** Tooltip info */
|
||||
.e-info {}
|
||||
|
||||
/******** Admin Buttons */
|
||||
button {
|
||||
border:0;
|
||||
cursor:pointer;
|
||||
font:bold 12px arial, helvetica, sans-serif;
|
||||
padding:0 10px 0 0;
|
||||
text-align:center;
|
||||
color:#0b333c;
|
||||
}
|
||||
button span {
|
||||
position:relative;
|
||||
display:block;
|
||||
white-space:nowrap;
|
||||
padding:0 0 0 13px;
|
||||
height:22px; line-height:22px; color:#0b333c;
|
||||
}
|
||||
|
||||
/*blue buttons*/
|
||||
button { background:url(images/btn_right.gif) right no-repeat; }
|
||||
button span { background:url(images/btn_left.gif) left no-repeat; }
|
||||
|
||||
button:hover,
|
||||
button:focus { background:url(images/btn_over_right.gif) right no-repeat; }
|
||||
button:hover span,
|
||||
button:focus span { background:url(images/btn_over_left.gif) left no-repeat; }
|
||||
|
||||
|
||||
button:active { background:url(images/btn_active_right.gif) right no-repeat; }
|
||||
button:active span { background:url(images/btn_active_left.gif) left no-repeat; }
|
||||
|
||||
button::-moz-focus-inner { border: none; } /*To all who have a problem with 1px spans offset in firefox, the following sentence will solve this problem: */
|
||||
|
||||
button.delete span { padding-left: 30px; }
|
||||
button.delete span { background-image:url(images/btn_remove_left.gif); }
|
||||
button.delete:hover span,
|
||||
button.delete:focus span { background-image:url(images/btn_remove_over_left.gif) }
|
||||
button.delete:active span { background-image:url(images/btn_remove_active_left.gif)}
|
||||
|
||||
/*default submit*/
|
||||
button.submit span {}
|
||||
button.submit span {}
|
||||
button.submit:hover span,
|
||||
button.submit:focus span {}
|
||||
button.submit:active span {}
|
||||
|
||||
|
||||
button.update span { padding-left: 30px; }
|
||||
button.update span { background-image:url(images/btn_update_left.gif); }
|
||||
button.update:hover span,
|
||||
button.update:focus span { background-image:url(images/btn_update_over_left.gif)}
|
||||
button.update:active span { background-image:url(images/btn_update_active_left.gif)}
|
||||
|
||||
button.create span { padding-left: 30px; }
|
||||
button.create span {}
|
||||
button.create:hover span,
|
||||
button.create:focus span {}
|
||||
button.create:active span {}
|
||||
|
||||
button.edit span { padding-left: 30px; }
|
||||
button.edit span {}
|
||||
button.edit:hover span,
|
||||
button.edit:focus span {}
|
||||
button.edit:active span {}
|
||||
|
||||
button.cancel span {}
|
||||
button.cancel span {}
|
||||
button.cancel:hover span,
|
||||
button.cancel:focus span {}
|
||||
button.cancel:active span {}
|
||||
|
||||
|
||||
.buttons-bar { padding: 10px 0px; }
|
||||
.buttons-bar button { margin-right: 10px; }
|
||||
.buttons-bar button.f-right { margin-right: 0px; }
|
||||
|
||||
/* Actions (adminlist) - input type image */
|
||||
input.action { vertical-align: middle; } /* default */
|
||||
input.action.delete {}
|
||||
input.action.edit {}
|
||||
|
||||
/********** Page Loading Status default style */
|
||||
#loading-mask { color: #556B2F; font-size: 1.2em; font-weight:bold; position:absolute; text-align: center; padding: 0; margin: 0; background-color: transparent; }
|
||||
#loading-mask .loader { position: fixed; top: 40%; left: 50%; width: 200px; text-align: center; background: #F0F9E3 none repeat scroll 0 0; border: 2px solid #556B2F; font-weight: bold; padding: 10px 5px; margin-left: -100px; margin-top: 0; }
|
||||
#loading-mask img { margin: 10px auto; }
|
||||
|
||||
/********** Element Loading Status default style */
|
||||
.element-loading-mask { background-repeat: no-repeat; background-position: 50% 50%; background-color: #f5f5f5; }
|
||||
|
||||
/********** Docs */
|
||||
#docs-list { padding: 10px; margin-bottom: 15px; border: 1px solid #f5f5f5; }
|
||||
#docs-list .qitem { margin: 3px 0; padding-left: 10px; }
|
||||
.docs-item { padding: 10px; margin: 15px 0; border: 1px solid #f5f5f5; }
|
||||
|
||||
.docs-item .qitem,
|
||||
.docs-item .aitem,
|
||||
.docs-item .gotop { margin: 3px 0; padding-left: 10px; }
|
||||
|
||||
.docs-item .qitem { font-weight: bold; }
|
||||
.docs-item .aitem { margin-bottom: 10px; }
|
||||
|
||||
.docs-item h4,
|
||||
#docs-list h4 { margin-bottom: 8px; }
|
||||
|
||||
#docs-bottom-nav { height: 800px; }
|
||||
|
||||
/********** Misc */
|
||||
.e-pointer { cursor: pointer; } /* Pointer Hand */
|
||||
.expand-container { padding: 10px; } /* Block with expandable items */
|
||||
.nextprev-bar { clear: both; padding: 5px; margin: 5px; border:1px solid #ddd; } /* Page NextPrev nabigation block */
|
||||
.imgselector-container { clear: both; } /* ImageSelector.sc */
|
||||
|
||||
/******** Side Navigation
|
||||
- Admin Navigation
|
||||
- Plugin Navigation
|
||||
*/
|
||||
ul.plugin-navigation { margin: 0; padding: 0; }
|
||||
ul.plugin-navigation a { text-decoration: none; }
|
||||
|
||||
ul.plugin-navigation li {
|
||||
background-color: #F7F9FA;
|
||||
border-bottom: 1px solid #000;
|
||||
text-align: left;
|
||||
background: url(images/arrow_16.png) 2px 2px no-repeat;
|
||||
line-height: 20px;
|
||||
padding: 0px 0px 0px 20px; border-right: 0px; margin: 0 0;
|
||||
}
|
||||
ul.plugin-navigation li.active,
|
||||
ul.plugin-navigation li:hover {
|
||||
background: url(images/arrow_over_16.png) 2px 2px no-repeat;
|
||||
}
|
||||
|
||||
ul.plugin-navigation a {
|
||||
display: block;
|
||||
width: 98%;
|
||||
line-height: 20px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
ul.plugin-navigation a.link-active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.plugin-navigation a.link:hover {
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
ul.plugin-navigation ul.plugin-navigation-sub {}
|
||||
ul.plugin-navigation ul.plugin-navigation-sub li { padding: 0px 10px 0px; }
|
||||
ul.plugin-navigation ul.plugin-navigation-sub a.link {}
|
||||
ul.plugin-navigation ul.plugin-navigation-sub a.link-active {font-weight: bold;}
|
||||
|
||||
|
||||
/******** Block Elements */
|
||||
.block { border: 1px solid #DDDDDD; margin-bottom: 10px;}
|
||||
.block-text { padding: 10px 10px 10px; }
|
||||
.block h2.caption, .block h4.caption { padding: 5px 10px 5px; border-bottom: 1px solid #DDDDDD; }
|
||||
.page-info { border: 1px solid #DDDDDD; margin-bottom: 10px; }
|
||||
.page-info p { padding: 10px; }
|
||||
|
||||
#core-banlist-times .textarea { width: 98%; }
|
||||
|
||||
#core-emoticon-configure input.input-text { width: 300px; }
|
||||
#core-links-edit textarea { width: 390px !important; }
|
||||
#core-links-edit .helpbox { width: 390px !important; margin: 5px 0px; }
|
||||
#core-links-edit .field-help { width: 390px; }
|
||||
|
||||
#core-admin-log-config legend { font-weight: bold; }
|
||||
|
||||
#core-admin-log-maintenance .select { width: 60px; }
|
||||
#core-admin-log-maintenance button { margin-left: 10px; }
|
||||
|
||||
#core-frontpage-edit-home { width: 50%; float: left; }
|
||||
#core-frontpage-edit-post-login { width: 50%; float: left; }
|
||||
#core-frontpage-edit-home .adminlist { width: 99%; }
|
||||
#core-frontpage-edit-post-login .adminlist { width: 99%; float: right; }
|
||||
#core-frontpage-edit .tbox { width: 80%;}
|
||||
#core-frontpage-edit select.tbox { width: 50%;}
|
||||
#core-frontpage-edit .buttons-bar select.tbox { width: 140px; }
|
||||
#core-frontpage-edit .buttons-bar { clear: both; }
|
@@ -11,9 +11,9 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_themes/jayya/theme.php,v $
|
||||
| $Revision: 1.5 $
|
||||
| $Date: 2008-11-22 15:16:54 $
|
||||
| $Author: e107steved $
|
||||
| $Revision: 1.6 $
|
||||
| $Date: 2009-04-27 10:52:42 $
|
||||
| $Author: secretr $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
@@ -38,11 +38,7 @@ define("THEME_DISCLAIMER", "");
|
||||
define("IMODE", "lite");
|
||||
|
||||
// [dont render core style sheet link]
|
||||
|
||||
/*
|
||||
enable core css for now
|
||||
$no_core_css = TRUE;
|
||||
*/
|
||||
|
||||
// [layout]
|
||||
|
||||
|