Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/system.zip
Назад
PK QX!]s)X:P P images/calendar.pngnu &1i� �PNG IHDR �a IDATx����I���}�c۶K��b�rl뿈�۶}w��ۙ�,�U���L�&+���O'Cm�����?jnP���he�"Gf�-]; @�vr�!��]� <Zp9q�0����<���w��ף�{���`�@�l~FB|����� Wi>�|L�?�H�H���<y �| P!�%E�ӳa�ݧ[�<�8�rXu�>���aݡ������/�}1�(Vy��f�������ݟ�!��d�H � ;7��Ξ�(:��!�����ʔ(�m;���',���=0Bpq㱇~4�C� ���(�ō��p<�/��6�OJ������́�P�HQ�ߺ�5��e�m�r�9)�$�F}AIHsl���p��-,,��~�+ b���sҒb�J��X�0�!4��E�3����u�M�q���\������S��c��W�!T,�ĿO�R"O<7�{E��.�y����圴��S��!�I#�}S�\�ђ����� ���[��� ��A�3f�vI IEND�B`�PK QX!]}A� html/modules.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Template.system * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /* * none (output raw module content) */ function modChrome_none($module, &$params, &$attribs) { echo $module->content; } /* * html5 (chosen html5 tag and font header tags) */ function modChrome_html5($module, &$params, &$attribs) { $moduleTag = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8'); $headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8'); $bootstrapSize = (int) $params->get('bootstrap_size', 0); $moduleClass = $bootstrapSize !== 0 ? ' span' . $bootstrapSize : ''; // Temporarily store header class in variable $headerClass = $params->get('header_class'); $headerClass = !empty($headerClass) ? ' class="' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : ''; if (!empty ($module->content)) : ?> <<?php echo $moduleTag; ?> class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_COMPAT, 'UTF-8') . $moduleClass; ?>"> <?php if ((bool) $module->showtitle) :?> <<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>> <?php endif; ?> <?php echo $module->content; ?> </<?php echo $moduleTag; ?>> <?php endif; } /* * Module chrome that wraps the module in a table */ function modChrome_table($module, &$params, &$attribs) { ?> <table cellpadding="0" cellspacing="0" class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_COMPAT, 'UTF-8'); ?>"> <?php if ((bool) $module->showtitle) : ?> <tr> <th> <?php echo $module->title; ?> </th> </tr> <?php endif; ?> <tr> <td> <?php echo $module->content; ?> </td> </tr> </table> <?php } /* * Module chrome that wraps the tabled module output in a <td> tag of another table */ function modChrome_horz($module, &$params, &$attribs) { ?> <table cellspacing="1" cellpadding="0" width="100%"> <tr> <td> <?php modChrome_table($module, $params, $attribs); ?> </td> </tr> </table> <?php } /* * xhtml (divs and font header tags) * With the new advanced parameter it does the same as the html5 chrome */ function modChrome_xhtml($module, &$params, &$attribs) { $moduleTag = htmlspecialchars($params->get('module_tag', 'div'), ENT_QUOTES, 'UTF-8'); $headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_QUOTES, 'UTF-8'); $bootstrapSize = (int) $params->get('bootstrap_size', 0); $moduleClass = $bootstrapSize !== 0 ? ' span' . $bootstrapSize : ''; // Temporarily store header class in variable $headerClass = $params->get('header_class'); $headerClass = $headerClass ? ' class="' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : ''; if (!empty ($module->content)) : ?> <<?php echo $moduleTag; ?> class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_COMPAT, 'UTF-8') . $moduleClass; ?>"> <?php if ((bool) $module->showtitle) : ?> <<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>> <?php endif; ?> <?php echo $module->content; ?> </<?php echo $moduleTag; ?>> <?php endif; } /* * Module chrome that allows for rounded corners by wrapping in nested div tags */ function modChrome_rounded($module, &$params, &$attribs) { ?> <div class="module<?php echo htmlspecialchars($params->get('moduleclass_sfx', ''), ENT_COMPAT, 'UTF-8'); ?>"> <div> <div> <div> <?php if ((bool) $module->showtitle) : ?> <h3><?php echo $module->title; ?></h3> <?php endif; ?> <?php echo $module->content; ?> </div> </div> </div> </div> <?php } /* * Module chrome that add preview information to the module */ function modChrome_outline($module, &$params, &$attribs) { static $css = false; if (!$css) { $css = true; $doc = JFactory::getDocument(); $doc->addStyleDeclaration(' .mod-preview { background: rgba(100,100,100,.08); box-shadow: 0 0 0 4px #f4f4f4, 0 0 0 5px rgba(100,100,100,.2); border-radius: 1px; margin: 8px 0; } .mod-preview-info { padding: 4px 6px; margin-bottom: 5px; font-family: Arial, sans-serif; font-size: .75rem; line-height: 1rem; color: white; background-color: #33373f; border-radius: 3px; box-shadow: 0 -10px 20px rgba(0,0,0,.2) inset; } .mod-preview-info span { font-weight: bold; color: #ccc; } .mod-preview-wrapper { margin-bottom: .5rem; } '); } ?> <div class="mod-preview"> <div class="mod-preview-info"> <div class="mod-preview-position"> <?php echo JText::sprintf('JGLOBAL_PREVIEW_POSITION', $module->position); ?> </div> <div class="mod-preview-style"> <?php echo JText::sprintf('JGLOBAL_PREVIEW_STYLE', $module->style); ?> </div> </div> <div class="mod-preview-wrapper"> <?php echo $module->content; ?> </div> </div> <?php } PK QX!]+|��q q css/system.cssnu &1i� /** * @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /* Import project-level system CSS */ @import url(../../../media/system/css/system.css); /* Unpublished */ .system-unpublished, tr.system-unpublished { background: #e8edf1; border-top: 4px solid #c4d3df; border-bottom: 4px solid #c4d3df; } span.highlight { background-color:#FFFFCC; font-weight:bold; padding:1px 0; } .img-fulltext-float-right { float: right; margin-left: 10px; margin-bottom: 10px; } .img-fulltext-float-left { float: left; margin-right: 10px; margin-bottom: 10px; } .img-fulltext-float-none { } .img-intro-float-right { float: right; margin-left: 5px; margin-bottom: 5px; } .img-intro-float-left { float: left; margin-right: 5px; margin-bottom: 5px; } .img-intro-float-none { }PK QX!]`���� � css/error.cssnu &1i� /** * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /* Start Common Styles */ * { font-family: helvetica, arial, sans-serif; font-size: 11px; color: #5F6565; } html { height: 100%; margin-bottom: 1px; } body { margin: 0px; padding: 0px; height: 100%; margin-bottom: 1px; background: #FFFFFF; font-family: helvetica, arial, sans-serif; font-weight: normal; padding-top: 0px; margin-top: 0px; } .error { margin-left: auto; margin-right: auto; } table, td, th, div, pre, blockquote, ul, ol, dl, address,.componentheading,.contentheading,.contentpagetitle,.sectiontableheader,.newsfeedheading { font-family: helvetica, arial, sans-serif; font-weight: normal; } #outline { width: 900px; margin: 0 auto; padding: 0px; padding-top: 60px; padding-bottom: 60px; background: #FFFFFF; } #errorboxoutline { width: 900px; margin: 0px; padding: 0px; border: 1px solid #000000; } #errorboxheader { width: 900px; margin: 0px; padding: 0px; background: #E44249; color: #FFFFFF; font-weight: bold; font-size: 12px; line-height: 22px; text-align: center; border-bottom: 1px solid #000000; } #errorboxbody { margin: 0px; padding: 10px; text-align: left; } #techinfo { margin: 10px; padding: 10px; text-align: left; border: 1px solid #CCCCCC; color: #CCCCCC; } #techinfo p { color: #CCCCCC; }PK QX!]t�� � error.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Template.system * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentError $this */ if (!isset($this->error)) { $this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); $this->debug = false; } $app = JFactory::getApplication(); ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <meta charset="utf-8" /> <title><?php echo $this->error->getCode(); ?> - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></title> <link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/error.css" rel="stylesheet" /> <?php if ($this->direction === 'rtl') : ?> <link href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/error_rtl.css" rel="stylesheet" /> <?php endif; ?> <?php if ($app->get('debug_lang', '0') == '1' || $app->get('debug', '0') == '1') : ?> <link href="<?php echo JUri::root(true); ?>/media/cms/css/debug.css" rel="stylesheet" /> <?php endif; ?> <!--[if lt IE 9]><script src="<?php echo JUri::root(true); ?>/media/jui/js/html5.js"></script><![endif]--> </head> <body> <div class="error"> <div id="outline"> <div id="errorboxoutline"> <div id="errorboxheader"><?php echo $this->error->getCode(); ?> - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?></div> <div id="errorboxbody"> <p><strong><?php echo JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></strong></p> <ol> <li><?php echo JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE'); ?></li> <li><?php echo JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING'); ?></li> <li><?php echo JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li> <li><?php echo JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE'); ?></li> <li><?php echo JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND'); ?></li> <li><?php echo JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST'); ?></li> </ol> <p><strong><?php echo JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES'); ?></strong></p> <ul> <li><a href="<?php echo JUri::root(true); ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a></li> </ul> <p><?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?></p> <div id="techinfo"> <p> <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> <?php if ($this->debug) : ?> <br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?> <?php endif; ?> </p> <?php if ($this->debug) : ?> <div> <?php echo $this->renderBacktrace(); ?> <?php // Check if there are more Exceptions and render their data as well ?> <?php if ($this->error->getPrevious()) : ?> <?php $loop = true; ?> <?php // Reference $this->_error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?> <?php // Make the first assignment to setError() outside the loop so the loop does not skip Exceptions ?> <?php $this->setError($this->_error->getPrevious()); ?> <?php while ($loop === true) : ?> <p><strong><?php echo JText::_('JERROR_LAYOUT_PREVIOUS_ERROR'); ?></strong></p> <p> <?php echo htmlspecialchars($this->_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> <br/><?php echo htmlspecialchars($this->_error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->_error->getLine(); ?> </p> <?php echo $this->renderBacktrace(); ?> <?php $loop = $this->setError($this->_error->getPrevious()); ?> <?php endwhile; ?> <?php // Reset the main error object to the base error ?> <?php $this->setError($this->error); ?> <?php endif; ?> </div> <?php endif; ?> </div> </div> </div> </div> </div> </body> </html> PK QX!]�+�36 6 component.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Template.system * * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ // Output as HTML5 $this->setHtml5(true); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); // Styles JHtml::_('stylesheet', 'general.css', array('version' => 'auto', 'relative' => true)); ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <jdoc:include type="head" /> </head> <body class="contentpane"> <jdoc:include type="message" /> <jdoc:include type="component" /> </body> </html> PK QX!]�c�( ( index.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Template.system * * @copyright (C) 2007 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; include __DIR__ . '/component.php'; PK ia!]Gq�- - offline.phpnu &1i� <?php /** * @package Joomla.Site * @subpackage Template.system * * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** @var JDocumentHtml $this */ $app = JFactory::getApplication(); // Output as HTML5 $this->setHtml5(true); // Add html5 shiv JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); // Styles JHtml::_('stylesheet', 'templates/system/css/offline.css', array('version' => 'auto')); if ($this->direction === 'rtl') { JHtml::_('stylesheet', 'templates/system/css/offline_rtl.css', array('version' => 'auto')); } JHtml::_('stylesheet', 'templates/system/css/general.css', array('version' => 'auto')); // Add JavaScript Frameworks JHtml::_('bootstrap.framework'); $twofactormethods = JAuthenticationHelper::getTwoFactorMethods(); ?> <!DOCTYPE html> <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <jdoc:include type="head" /> </head> <body> <jdoc:include type="message" /> <div id="frame" class="outline"> <?php if ($app->get('offline_image') && file_exists($app->get('offline_image'))) : ?> <img src="<?php echo $app->get('offline_image'); ?>" alt="<?php echo htmlspecialchars($app->get('sitename'), ENT_COMPAT, 'UTF-8'); ?>" /> <?php endif; ?> <h1> <?php echo htmlspecialchars($app->get('sitename'), ENT_COMPAT, 'UTF-8'); ?> </h1> <?php if ($app->get('display_offline_message', 1) == 1 && str_replace(' ', '', $app->get('offline_message')) !== '') : ?> <p> <?php echo $app->get('offline_message'); ?> </p> <?php elseif ($app->get('display_offline_message', 1) == 2 && str_replace(' ', '', JText::_('JOFFLINE_MESSAGE')) !== '') : ?> <p> <?php echo JText::_('JOFFLINE_MESSAGE'); ?> </p> <?php endif; ?> <form action="<?php echo JRoute::_('index.php', true); ?>" method="post" id="form-login"> <fieldset class="input"> <p id="form-login-username"> <label for="username"><?php echo JText::_('JGLOBAL_USERNAME'); ?></label> <input name="username" id="username" type="text" class="inputbox" alt="<?php echo JText::_('JGLOBAL_USERNAME'); ?>" autocomplete="off" autocapitalize="none" /> </p> <p id="form-login-password"> <label for="passwd"><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label> <input type="password" name="password" class="inputbox" alt="<?php echo JText::_('JGLOBAL_PASSWORD'); ?>" id="passwd" /> </p> <?php if (count($twofactormethods) > 1) : ?> <p id="form-login-secretkey"> <label for="secretkey"><?php echo JText::_('JGLOBAL_SECRETKEY'); ?></label> <input type="text" name="secretkey" autocomplete="one-time-code" class="inputbox" alt="<?php echo JText::_('JGLOBAL_SECRETKEY'); ?>" id="secretkey" /> </p> <?php endif; ?> <p id="submit-buton"> <input type="submit" name="Submit" class="button login" value="<?php echo JText::_('JLOGIN'); ?>" /> </p> <input type="hidden" name="option" value="com_users" /> <input type="hidden" name="task" value="user.login" /> <input type="hidden" name="return" value="<?php echo base64_encode(JUri::base()); ?>" /> <?php echo JHtml::_('form.token'); ?> </fieldset> </form> </div> </body> </html> PK ia!]]��; ; css/error_rtl.cssnu &1i� /** * @copyright (C) 2011 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /* Start Common Styles */ body { text-align: right; } .TD{ text-align: left; } #errorboxbody { text-align: right; } #techinfo { text-align: right; } PK ia!]L z¡ � css/editor.cssnu &1i� /** * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ body { background: #fff; font-family: Tahoma, Helvetica, Arial, sans-serif; line-height: 1.3em; font-size: 76%; color: #333; } h1 { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; color: #666; } h2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; color: #333; } h3 { font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 13px; color: #135cae; } h4 { font-weight: bold; font-family: Arial, Helvetica, sans-serif; color: #333; } a:link, a:visited { color: #1B57B1; text-decoration: none; font-weight: normal; } a:hover { color: #00c; text-decoration: underline; font-weight: normal; } div.caption { padding: 0 10px 0 10px; } div.caption img { border: 1px solid #CCC; } div.caption p { font-size: .90em; color: #666; text-align: center; } /* STYLES FOR JOOMLA! EDITOR */ hr#system-readmore { border: red dashed 1px; color: red; } hr.system-pagebreak { border: gray dashed 1px; color: gray; } PK ia!]�/Z� css/offline_rtl.cssnu &1i� /** * @copyright (C) 2008 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /** * Joomla! 1.5 Offline RTL css file * * @package Joomla * @since 1.5 * @version 1.0 */ #frame form{ text-align: right; } label { float:right; } fieldset.input p {clear: right;} /* -- message styles ----------------------------------- */ .alert { padding: 8px 8px 25px 14px; text-align: right; } .alert .close { float: left; left: -20px; right: 0px; }PK ia!]���4S S css/toolbar.cssnu &1i� /** * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ div.toolbar-list { margin-right: 10px; float: right; text-align: right; } div.toolbar-list a { color : #808080; text-decoration : none; display: block; float: left; border: 1px solid #DDD; width: 40px; padding: 2px 5px 2px 5px; } div.toolbar-list a:hover { color : #C64934; cursor: pointer; border: 1px solid #c24733; background-color: #f1e8e6; padding: 3px 5px 1px 5px; } div.toolbar-list a:active { color : #FF9900; }PK ia!]��C� � css/offline.cssnu &1i� /** * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ body { margin: 0; padding: 0; font-family: Arial, Helvetica, Sans Serif; font-size: 14px; color: #333333; text-align: center; } img { border: 0 none; margin-left: auto; margin-right: auto; } /* -- id styles ------------------------------------- */ #frame { margin: 20px auto; max-width: 400px; padding: 20px; } #frame img { max-width: 100%; height: auto; } #frame form { text-align: left; } /* -- class styles ---------------------------------- */ .outline { border: 1px solid #cccccc; background: #ffffff; padding: 2px; } /* -- form styles ----------------------------------- */ form { margin: auto; } form br { display: none; } form p { margin: 0; padding: 0.5em 0 0.5em 0; } form fieldset { border: 0 none; margin: 0em; padding: 0.2em; } label { display: block; margin: 5px 0 2px 0; } input { box-sizing: border-box; width: 100%; padding: 5px 10px; border: 1px solid #0E67A1; font-size: inherit; font-family: inherit; } input.button { width: auto; cursor: pointer; background-color: #006dcc; border-color: #04c; color: #fff; -webkit-appearance: none; } input.button:hover { background-color: #04c; } fieldset.input p { clear: left; } #frmlogin { margin: 0 10px 0 10px; } #frmlogin fieldset.button { text-align: right; } /* -- message styles ----------------------------------- */ #system-message { margin: 0 auto; padding: 20px 0 0; max-width: 445px; } .alert { background: none repeat scroll 0 0 #FFFFFF; border: 1px solid #CCCCCC; padding: 8px 25px 8px 14px; text-align: left; } .alert h4 { color: red; margin: 5px 0; } .alert p { padding: 0px; margin: 0px; } .alert .close { float: right; font-size: 24px; line-height: 18px; position: relative; right: -20px; top: -2px; cursor: pointer; } .login { margin-top: 5px; } PK ia!]猽V� � css/general.cssnu &1i� /** * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ /* Form validation */ .invalid { border-color: #ff0000; } label.invalid { color: #ff0000; } /* Buttons */ #editor-xtd-buttons { padding: 5px; } .button2-left, .button2-right, .button2-left div, .button2-right div { float: left; } .button2-left a, .button2-right a, .button2-left span, .button2-right span { display: block; height: 22px; float: left; line-height: 22px; font-size: 11px; color: #666; cursor: pointer; } .button2-left span, .button2-right span { cursor: default; color: #999; } .button2-left .page a, .button2-right .page a, .button2-left .page span, .button2-right .page span { padding: 0 6px; } .page span { color: #000; font-weight: bold; } .button2-left a:hover, .button2-right a:hover { text-decoration: none; color: #0B55C4; } .button2-left a, .button2-left span { padding: 0 24px 0 6px; } .button2-right a, .button2-right span { padding: 0 6px 0 24px; } .button2-left { background: url(../images/j_button2_left.png) no-repeat; float: left; margin-left: 5px; } .button2-right { background: url(../images/j_button2_right.png) 100% 0 no-repeat; float: left; margin-left: 5px; } .button2-left .image { background: url(../images/j_button2_image.png) 100% 0 no-repeat; } .button2-left .readmore, .button2-left .article { background: url(../images/j_button2_readmore.png) 100% 0 no-repeat; } .button2-left .pagebreak { background: url(../images/j_button2_pagebreak.png) 100% 0 no-repeat; } .button2-left .blank { background: url(../images/j_button2_blank.png) 100% 0 no-repeat; } /* Tooltips */ div.tooltip { float: left; background: #ffc; border: 1px solid #D4D5AA; padding: 5px; max-width: 200px; z-index:13000; } div.tooltip h4 { padding: 0; margin: 0; font-size: 95%; font-weight: bold; margin-top: -15px; padding-top: 15px; padding-bottom: 5px; background: url(../images/selector-arrow.png) no-repeat; } div.tooltip p { font-size: 90%; margin: 0; } /* Caption fixes */ /* Caption fixes */ .img_caption .left { float: left; margin-right: 1em; } .img_caption .right { float: right; margin-left: 1em; } .img_caption .left p { clear: left; text-align: center; } .img_caption .right p { clear: right; text-align: center; } .img_caption { text-align: center!important; } .img_caption.none { margin-left:auto; margin-right:auto; } /* Calendar */ a img.calendar { width: 16px; height: 16px; margin-left: 3px; background: url(../images/calendar.png) no-repeat; cursor: pointer; vertical-align: middle; } PK ia!]Aj$� � images/selector-arrow.pngnu &1i� �PNG IHDR X0$� 0PLTE������������������ޱ�����������������)�� tRNS @��f CIDAT�M�1�0�@".6&��� 궑��͖<ۢ���ʈ�/���t ��z� ����,T�MK��o���7 IEND�B`�PK ia!]=F�� images/j_button2_readmore.pngnu &1i� �PNG IHDR K�l �IDATx��Ez�@ �aݬ�G�]�ef�M�9f�A,��� ���@��|[�3Fba�8��e��h�ۈ��p�^���HQT.�ۚX<p��� ����"�CH&��$b�f�Z���N�r�̲��D$:�c���H��X�i�a!��E�r�Tm�T�u��w��'L�oҶ�Ay����'d,8�h͖9(ݰA���� N�H0J�*�!U�:�&�Np���'�D*���� Nd��i~yy���ڕOy����U��o&��;1=���%�_�k_R����.O�i�{"��ђnz8�Zl�I�l�� ��@o����l8�C(.]k�;5uo�W�q����o��ԏN����N�*�+4/��e�����3O�s�6�(2C�GQ��ħk��?�{Ix����O<' �I���jD�@dY�(JUU��s�������y`���K$�z]߶ �*��m2 IEND�B`�PK ia!].��� � images/j_button2_image.pngnu &1i� �PNG IHDR K�l IIDATx����j ��s:FF��m�ն�c��c'�����a�l����v�y�o��G$IRU5��!��0==��d��4�q����+�����f2[/�t���.dR�T&&3�X,Y�d2�( 2 �pSQ��I��.�E�GEWo�ˋ5� ����A[�=V�\.�g�T ���V��;��q��g�g��n�bè(C��}���C��tk��|fz����\^�lè(A<��+�K��f�3<e��V�>�_6s�7ȖlEH �S�`���'���ĝP��J}a�vI �6)��!�6�� H��5��<jY��c���-o{>�y=1>���q�~4B�&l���V�����W� �?�̖�R��)��Q��7�L��FM��ou���/�(�bs!9��(o_HW�W-�Z\�ZF���Z�PY �� ��������#�Y�+�]F��aTBb �US�O�I9�ڨ� ��,�4M��a������Q̀�H$6E�QUU�A��Z����ҵ�U@̾�$I�x�M�X����DF��&�q༌_Nap��f�0���D"��!� ���q l IEND�B`�PK ia!]���ߩ � images/j_button2_blank.pngnu &1i� �PNG IHDR ��3� pIDATxu�5�0�����af&I�Ҷ6STC�c���=NC����p�ˈW�d�x����� �(dF!1 �Q80 s�o/�%�{�"B��D�)��4�Ƞ�1B5��)���t8�0� IEND�B`�PK ia!]�#V� � images/j_button2_right.pngnu &1i� �PNG IHDR � F1k IDATx��D�� www�;�d�Te`�һG�Rxn���/�ma��Kg�J��f�t;� �v�]̀t��~t���n��� H�L���HG�@��J�t7��UKX��?ҭt+��'���B�����0JϘ� IEND�B`�PK ia!]���r� � images/j_button2_pagebreak.pngnu &1i� �PNG IHDR K�l IDATx�ԅ�� �a�i���;i�e�*������#�C�'���8���8��R��d2�FQ�0q� !�0��p��Bȷ [�eY�m*UU�X��Z�T1��M�|���ܻ�D��u|b~��*���3����`�hF����ͷ�MLT҇/��O]]]��|qq������U��(���;ӚΖ��\���I�&& ���k�'��aj;��ML,���(�V/���m��mb"����YN��h�Tm�h�=O��Ҝj�J��ڿ��#�!��$�j���61I�K�<Er�ĵa�15�i�'�c��;�K��)�����x ��h��\�=99Y�V`ډ�8B���_N�#�����8�O��������~���w IEND�B`�PK ia!]2d� � � images/j_button2_left.pngnu &1i� �PNG IHDR � Պ0� vIDATx���0���?�-�c�&8"�2iU�X5&��W�X5�.��[��eA��RL *Y�JҠT�T��R�YYИ�,������1�ͶD̪��Jr�s�Q1����`8�e� IEND�B`�PK QX!]s)X:P P images/calendar.pngnu &1i� PK QX!]}A� � html/modules.phpnu &1i� PK QX!]+|��q q � css/system.cssnu &1i� PK QX!]`���� � � css/error.cssnu &1i� PK QX!]t�� � [ error.phpnu &1i� PK QX!]�+�36 6 91 component.phpnu &1i� PK QX!]�c�( ( �4 index.phpnu &1i� PK ia!]Gq�- - 6 offline.phpnu &1i� PK ia!]]��; ; uC css/error_rtl.cssnu &1i� PK ia!]L z¡ � �D css/editor.cssnu &1i� PK ia!]�/Z� �I css/offline_rtl.cssnu &1i� PK ia!]���4S S *L css/toolbar.cssnu &1i� PK ia!]��C� � �N css/offline.cssnu &1i� PK ia!]猽V� � �V css/general.cssnu &1i� PK ia!]Aj$� � �a images/selector-arrow.pngnu &1i� PK ia!]=F�� �b images/j_button2_readmore.pngnu &1i� PK ia!].��� � �d images/j_button2_image.pngnu &1i� PK ia!]���ߩ � �g images/j_button2_blank.pngnu &1i� PK ia!]�#V� � �h images/j_button2_right.pngnu &1i� PK ia!]���r� � �i images/j_button2_pagebreak.pngnu &1i� PK ia!]2d� � � �k images/j_button2_left.pngnu &1i� PK � �l
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка