From: <txm...@us...> - 2015-02-15 10:02:51
|
Revision: 12979 http://sourceforge.net/p/xoops/svn/12979 Author: txmodxoops Date: 2015-02-15 10:02:48 +0000 (Sun, 15 Feb 2015) Log Message: ----------- Updated Added and modifed more files Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_preferences.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_templates.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_users.html Added Paths: ----------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/jquery.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/main.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/jquery.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/jquery.php (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/jquery.php 2015-02-15 10:02:48 UTC (rev 12979) @@ -0,0 +1,155 @@ +<?php +/** + * Template Manager + * Manage all templates: theme and module + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Maxime Cointin (AKA Kraven30) + * @package system + * @version $Id: jquery.php 12104 2013-09-28 21:37:53Z beckmi $ + */ + +include dirname( dirname( dirname( __FILE__ ) ) ) . '/header.php'; + +if (!defined('XOOPS_ROOT_PATH')) { die('Error'); } + +if ( !is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid()) ) exit( _NOPERM ); + +error_reporting(0); +$GLOBALS['xoopsLogger']->activated = false; + +if ( file_exists('./../../language/'.$xoopsConfig['language'].'"/admin/tplsets.php') ) { + include_once './../../language/'.$xoopsConfig['language'].'/admin/tplsets.php'; +} else { + include_once './../../language/english/admin/tplsets.php'; +} + +if (isset($_REQUEST["op"])) { + $op = $_REQUEST["op"]; +} else { + @$op = "default"; +} + +$GLOBALS['xoopsLogger']->usePopup = true; + +switch ($op) { + // Display tree folder + case "tpls_display_folder": + $_REQUEST['dir'] = urldecode($_REQUEST['dir']); + $root = XOOPS_THEME_PATH; + if ( file_exists($root . $_REQUEST['dir']) ) { + $files = scandir($root . $_REQUEST['dir']); + natcasesort($files); + if ( count($files) > 2 ) { /* The 2 accounts for . and .. */ + echo "<ul class=\"jqueryFileTree\" style=\"display: none;\">"; + // All dirs + foreach ($files as $file) { + + if ( file_exists($root . $_REQUEST['dir'] . $file) && $file != '.' && $file != '..' && is_dir($root . $_REQUEST['dir'] . $file) ) { + //retirer .svn + $file_no_valid = array('.svn', 'icons', 'img', 'images', 'language'); + + if (!in_array($file, $file_no_valid)) { + echo "<li class=\"directory collapsed\"><a href=\"#\" rel=\"" . htmlentities($_REQUEST['dir'] . $file) . "/\">" . htmlentities($file) . "</a></li>"; + } + } + } + // All files + foreach ($files as $file) { + if ( file_exists($root . $_REQUEST['dir'] . $file) && $file != '.' && $file != '..' && !is_dir($root . $_REQUEST['dir'] . $file) && $file != 'index.html' ) { + $ext = preg_replace('/^.*\./', '', $file); + + $extensions = array('.html', '.htm', '.css'); + $extension_verif = strrchr($file, '.'); + + if (in_array($extension_verif, $extensions)) { + echo "<li class=\"file ext_$ext\"><a href=\"#\" onclick=\"tpls_edit_file('".htmlentities($_REQUEST['dir'].$file)."', '".htmlentities($_REQUEST['dir'])."', '".htmlentities($file)."', '".$ext."');\" rel=\"tpls_edit_file('".htmlentities($_REQUEST['dir'].$file)."', '".htmlentities($_REQUEST['dir'])."', '".htmlentities($file)."', '".$ext."');\">" . htmlentities($file) . "</a></li>"; + } else { + //echo "<li class=\"file ext_$ext\">" . htmlentities($file) . "</li>"; + } + + } + } + echo "</ul>"; + } + } + break; + // Edit File + case 'tpls_edit_file': + $path_file = realpath(XOOPS_ROOT_PATH.'/themes'.trim($_REQUEST['path_file'])); + $path_file = str_replace('\\','/',$path_file); + + //Button restore + if (file_exists($path_file.'.back')) { + $restore = '<button class="btn btn-default" type="button" onclick="tpls_restore(\''.$path_file.'\')" value="'._AM_SYSTEM_TEMPLATES_RESTORE.'" title="'._AM_SYSTEM_TEMPLATES_RESTORE.'"> + <img src="'.system_AdminIcons('revert.png').'" alt="'._AM_SYSTEM_TEMPLATES_RESTORE.'" /> + </button>'; + } else { + $restore = ''; + } + xoops_load('XoopsFile'); + XoopsFile::load('file'); + + $file = XoopsFile::getHandler('file', $path_file); + $content = $file->read(); + if (empty($content)) { + echo _AM_SYSTEM_TEMPLATES_EMPTY_FILE; + } + $ext = preg_replace('/^.*\./', '', $_REQUEST['path_file']); + + echo '<form name="back" action="admin.php?fct=tplsets&op=tpls_save" method="POST"> + <table border="0"> + <tr> + <td> + <div class="xo-btn-actions"> + <div class="xo-buttons"> + <button class="btn btn-default" type="submit" value="'._AM_SYSTEM_TEMPLATES_SAVE.'" title="'._AM_SYSTEM_TEMPLATES_SAVE.'"> + <img src="'.system_AdminIcons('save.png').'" alt="'._AM_SYSTEM_TEMPLATES_SAVE.'" /> + </button> + '.$restore.' + <button class="btn btn-default" type="button" onclick="$(\'#display_contenu\').hide();$(\'#display_form\').fadeIn(\'fast\');" title="'._AM_SYSTEM_TEMPLATES_CANCEL.'"> + <img src="'.system_AdminIcons('cancel.png').'" alt="'._AM_SYSTEM_TEMPLATES_CANCEL.'" /> + </button> + <div class="clear"></div> + </div> + </div> + </td> + </tr> + <tr> + <td><textarea id="code_mirror" name="templates" rows=24 cols=110>'.$content.'</textarea></td> + </tr> + </table>'; + echo '<input type="hidden" name="path_file" value="'.$path_file.'"><input type="hidden" name="file" value="'.trim($_REQUEST['file']).'"><input type="hidden" name="ext" value="'.$ext.'"></form>'; + break; + + // Restore backup file + case 'tpls_restore': + $extensions = array('.html', '.htm', '.css'); + + //check if the file is inside themes directory + $valid_dir = stristr(realpath($_REQUEST['path_file']), realpath(XOOPS_ROOT_PATH . '/themes')); + + $old_file = $_REQUEST['path_file'].'.back'; + $new_file = $_REQUEST['path_file']; + + $extension_verif = strrchr($new_file, '.'); + if ($valid_dir && in_array($extension_verif, $extensions) && file_exists($old_file) && file_exists($new_file) ) { + if (unlink($new_file)) { + if (rename($old_file, $new_file)) { + xoops_result(_AM_SYSTEM_TEMPLATES_RESTORE_OK); + exit(); + } + } + } + xoops_error(_AM_SYSTEM_TEMPLATES_RESTORE_NOTOK); + break; + +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/main.php (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/tplsets/main.php 2015-02-15 10:02:48 UTC (rev 12979) @@ -0,0 +1,371 @@ +<?php +// $Id: main.php 12036 2013-09-14 04:58:55Z beckmi $ +// ------------------------------------------------------------------------ // +// XOOPS - PHP Content Management System // +// Copyright (c) 2000 XOOPS.org // +// <http://www.xoops.org/> // +// ------------------------------------------------------------------------ // +// This program is free software; you can redistribute it and/or modify // +// it under the terms of the GNU General Public License as published by // +// the Free Software Foundation; either version 2 of the License, or // +// (at your option) any later version. // +// // +// You may not change or alter any portion of this comment or credits // +// of supporting developers from this source code or any supporting // +// source code which is considered copyrighted (c) material of the // +// original comment or credit authors. // +// // +// This program is distributed in the hope that it will be useful, // +// but WITHOUT ANY WARRANTY; without even the implied warranty of // +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // +// GNU General Public License for more details. // +// // +// You should have received a copy of the GNU General Public License // +// along with this program; if not, write to the Free Software // +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // +// ------------------------------------------------------------------------ // +// Author: Kazumi Ono (AKA onokazu) // +// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ // +// Project: The XOOPS Project // +// ------------------------------------------------------------------------- // + +// Check users rights +if ( !is_object($GLOBALS['xoopsUser']) || !is_object($GLOBALS['xoopsModule']) || !$GLOBALS['xoopsUser']->isAdmin($GLOBALS['xoopsModule']->mid()) ) exit( _NOPERM ); + +// Get Action type +$op = system_CleanVars ( $_REQUEST, 'op', 'default', 'string' ); + +// Define main template +$xoopsOption['template_main'] = 'system_templates.html'; +// Call Header +xoops_cp_header(); +// Define scripts +$xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js'); +$xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.ui.js'); +$xoTheme->addScript('modules/system/js/jquery.easing.js'); +$xoTheme->addScript('modules/system/js/jqueryFileTree.js'); +$xoTheme->addScript('modules/system/js/admin.js'); +$xoTheme->addScript('modules/system/js/templates.js'); +$xoTheme->addScript('modules/system/js/code_mirror/codemirror.js'); +// Define Stylesheet +$xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/admin.css'); +$xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/code_mirror/docs.css'); +// Define Breadcrumb and tips +$xoBreadCrumb->addLink( _AM_SYSTEM_TEMPLATES_NAV_MAIN, system_adminVersion('tplsets', 'adminpath') ); + +switch ($op) { + //index + default: + // Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('tplsets', 'help') ); + $xoBreadCrumb->addTips( _AM_SYSTEM_TEMPLATES_NAV_TIPS ); + $xoBreadCrumb->render(); + + $GLOBALS['xoopsTpl']->assign('index', true); + + $form = new XoopsThemeForm(_AM_SYSTEM_TEMPLATES_GENERATE, "form", 'admin.php?fct=tplsets', "post", true); + + $ele = new XoopsFormSelect(_AM_SYSTEM_TEMPLATES_SET, 'tplset', $GLOBALS['xoopsConfig']['template_set']); + $tplset_handler =& xoops_gethandler('tplset'); + $tplsetlist = $tplset_handler->getList(); + asort($tplsetlist); + foreach ($tplsetlist as $key => $name) { + $ele->addOption($key, $name); + } + $form->addElement($ele); + $form->addElement(new XoopsFormSelectTheme(_AM_SYSTEM_TEMPLATES_SELECT_THEME, 'select_theme', 1, 5), true); + $form->addElement(new XoopsFormRadioYN(_AM_SYSTEM_TEMPLATES_FORCE_GENERATED, 'force_generated', 0, _YES, _NO), true); + + $modules = new XoopsFormSelect(_AM_SYSTEM_TEMPLATES_SELECT_MODULES, 'select_modules'); + $module_handler =& xoops_gethandler('module'); + $criteria = new CriteriaCompo(new Criteria('isactive', 1)); + $moduleslist = $module_handler->getList($criteria, true); + $modules->addOption(0, _AM_SYSTEM_TEMPLATES_ALL_MODULES); + $modules->addOptionArray($moduleslist); + $form->addElement($modules, true); + + $form->addElement(new XoopsFormHidden("active_templates", "0")); + $form->addElement(new XoopsFormHidden("active_modules", "0")); + $form->addElement(new XoopsFormHidden("op", "tpls_generate_surcharge")); + $form->addElement(new XoopsFormButton("", "submit", _SUBMIT, "submit")); + $xoopsTpl->assign('form', $form->render()); + break; + + //generate surcharge + case 'tpls_generate_surcharge': + if (!$GLOBALS['xoopsSecurity']->check()) { + redirect_header('admin.php?fct=tplsets', 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors())); + } + // Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('tplsets', 'help') . '#override' ); + $xoBreadCrumb->addLink( _AM_SYSTEM_TEMPLATES_NAV_FILE_GENERATED ); + $xoBreadCrumb->render(); + + if ($_REQUEST['select_modules'] == '0' || $_REQUEST['active_modules'] == '1') { + //Generate modules + if (isset($_REQUEST['select_theme']) && isset($_REQUEST['force_generated'])) { + //on verifie si le dossier module existe + $theme_surcharge = XOOPS_THEME_PATH.'/'.$_REQUEST['select_theme'].'/modules'; + $indexFile = XOOPS_ROOT_PATH."/modules/system/include/index.html"; + $verif_write = false; + $text = ''; + + if (!is_dir($theme_surcharge)) { + //Creation du dossier modules + + if(!is_dir($theme_surcharge)) + mkdir($theme_surcharge, 0777); + chmod($theme_surcharge, 0777); + copy($indexFile, $theme_surcharge."/index.html"); + } + + $tplset = system_CleanVars($POST, 'tplset', 'default', 'string' ); + + //on cr�e uniquement les templates qui n'existent pas + $module_handler = xoops_gethandler('module'); + $tplset_handler = xoops_gethandler('tplset'); + $tpltpl_handler = xoops_gethandler('tplfile'); + + $criteria = new CriteriaCompo(); + $criteria->add(new Criteria('tplset_name', $tplset)); + $tplsets_arr = $tplset_handler->getObjects(); + $tcount = $tplset_handler->getCount(); + + + $tpltpl_handler = xoops_gethandler('tplfile'); + $installed_mods = $tpltpl_handler->getModuleTplCount($tplset); + + //all templates or only one template + if ($_REQUEST['active_templates'] == 0) { + foreach (array_keys($tplsets_arr) as $i) { + $tplsetname = $tplsets_arr[$i]->getVar('tplset_name'); + $tplstats = $tpltpl_handler->getModuleTplCount($tplsetname); + + if (count($tplstats) > 0) { + foreach ($tplstats as $moddir => $filecount) { + $module =& $module_handler->getByDirname($moddir); + if (is_object($module)) { + // create module folder + if (!is_dir($theme_surcharge.'/'.$module->getVar('dirname'))) { + mkdir($theme_surcharge.'/'.$module->getVar('dirname'), 0777); + chmod($theme_surcharge.'/'.$module->getVar('dirname'), 0777); + copy($indexFile, $theme_surcharge.'/'.$module->getVar('dirname').'/index.html'); + } + + // create block folder + if (!is_dir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks')) { + if(!is_dir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks')) + mkdir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks', 0777); + chmod($theme_surcharge.'/'.$module->getVar('dirname').'/blocks', 0777); + copy($indexFile, $theme_surcharge.'/'.$module->getVar('dirname').'/blocks'.'/index.html'); + } + + $class = "odd"; + $text .= '<table class="table table-bordered"><thead><tr><th colspan="3" align="center">'._AM_SYSTEM_TEMPLATES_MODULES.ucfirst($module->getVar('dirname')).'</th></tr><tr><th align="center">'._AM_SYSTEM_TEMPLATES_TYPES.'</th><th align="center">'._AM_SYSTEM_TEMPLATES_FILES.'</th><th>'._AM_SYSTEM_TEMPLATES_STATUS.'</th></tr></thead><tbody>'; + // create template + $templates =& $tpltpl_handler->find($tplsetname, 'module', null, $moddir); + for ($j=0; $j<count($templates); $j++) { + $filename = $templates[$j]->getVar('tpl_file'); + if ($tplsetname == $tplset) { + $physical_file = XOOPS_THEME_PATH.'/'.$_REQUEST['select_theme'].'/modules/'.$moddir.'/'.$filename; + + $tplfile =& $tpltpl_handler->get($templates[$j]->getVar('tpl_id'), true); + + if (is_object($tplfile)) { + if (!file_exists($physical_file) || $_REQUEST['force_generated'] == 1) { + $open = fopen("".$physical_file."","w+"); + if (fwrite($open, "".$tplfile->getVar('tpl_source', 'n'))) { + $text .= '<tr class="'.$class.'"><td align="center">'._AM_SYSTEM_TEMPLATES_TEMPLATES.'</td><td>'.$physical_file.'</td><td align="center">'; + if (file_exists($physical_file)) { + $text .= '<img width="16" src="'.system_AdminIcons('success.png').'" /></td></tr>'; + } else { + $text .= '<img width="16" src="'.system_AdminIcons('cancel.png').'" /></td></tr>'; + } + $verif_write = true; + } + fclose($open); + $class = ($class == "even") ? "odd" : "even"; + } + } + } + } + + // create block template + $btemplates =& $tpltpl_handler->find($tplsetname, 'block', null, $moddir); + for ($k = 0; $k < count($btemplates); $k++) { + $filename = $btemplates[$k]->getVar('tpl_file'); + if ($tplsetname == $tplset) { + $physical_file = XOOPS_THEME_PATH.'/'.$_REQUEST['select_theme'].'/modules/'.$moddir.'/blocks/'.$filename; + $btplfile =& $tpltpl_handler->get($btemplates[$k]->getVar('tpl_id'), true); + + if (is_object($btplfile)) { + if (!file_exists($physical_file) || $_REQUEST['force_generated'] == 1) { + $open = fopen($physical_file,"w+"); + if (fwrite($open, $btplfile->getVar('tpl_source', 'n'))) { + $text .= '<tr class="'.$class.'"><td align="center">'._AM_SYSTEM_TEMPLATES_BLOCKS.'</td><td>'.$physical_file.'</td><td align="center">'; + if (file_exists($physical_file)) { + $text .= '<img width="16" src="'.system_AdminIcons('success.png').'" /></td></tr>'; + } else { + $text .= '<img width="16" src="'.system_AdminIcons('cancel.png').'" /></td></tr>'; + } + $verif_write = true; + } + fclose($open); + $class = ($class == "even") ? "odd" : "even"; + } + } + } + } + $text .= '</tbody></table>'; + } + } + unset($module); + } + } + } else { + foreach (array_keys($tplsets_arr) as $i) { + $tplsetname = $tplsets_arr[$i]->getVar('tplset_name'); + $tplstats = $tpltpl_handler->getModuleTplCount($tplsetname); + + if (count($tplstats) > 0) { + $moddir = $_REQUEST['select_modules']; + $module =& $module_handler->getByDirname($moddir); + if (is_object($module)) { + // create module folder + if (!is_dir($theme_surcharge.'/'.$module->getVar('dirname'))) { + mkdir($theme_surcharge.'/'.$module->getVar('dirname'), 0777); + chmod($theme_surcharge.'/'.$module->getVar('dirname'), 0777); + copy($indexFile, $theme_surcharge.'/'.$module->getVar('dirname').'/index.html'); + } + + // create block folder + if (!is_dir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks')) { + if(!is_dir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks')) + mkdir($theme_surcharge.'/'.$module->getVar('dirname').'/blocks', 0777); + chmod($theme_surcharge.'/'.$module->getVar('dirname').'/blocks', 0777); + copy($indexFile, $theme_surcharge.'/'.$module->getVar('dirname').'/blocks'.'/index.html'); + } + + $class = "odd"; + $text .= '<table class="table table-bordered"><thead><tr><th colspan="3" align="center">'._AM_SYSTEM_TEMPLATES_MODULES.ucfirst($module->getVar('dirname')).'</th></tr><tr><th align="center">'._AM_SYSTEM_TEMPLATES_TYPES.'</th><th align="center">'._AM_SYSTEM_TEMPLATES_FILES.'</th><th>'._AM_SYSTEM_TEMPLATES_STATUS.'</th></tr></thead><tbody>'; + $select_templates_modules = $_REQUEST['select_templates_modules']; + for ($l=0; $l<count($_REQUEST['select_templates_modules']); $l++) { + // create template + $templates =& $tpltpl_handler->find($tplsetname, 'module', null, $moddir); + for ($j=0; $j<count($templates); $j++) { + $filename = $templates[$j]->getVar('tpl_file'); + if ($tplsetname == $tplset) { + $physical_file = XOOPS_THEME_PATH.'/'.$_REQUEST['select_theme'].'/modules/'.$moddir.'/'.$filename; + + $tplfile =& $tpltpl_handler->get($templates[$j]->getVar('tpl_id'), true); + + if (is_object($tplfile)) { + if (!file_exists($physical_file) || $_REQUEST['force_generated'] == 1) { + if ($select_templates_modules[$l] == $filename) { + $open = fopen("".$physical_file."","w+"); + if (fwrite($open, "".$tplfile->getVar('tpl_source', 'n'))) { + $text .= '<tr class="'.$class.'"><td align="center">'._AM_SYSTEM_TEMPLATES_TEMPLATES.'</td><td>'.$physical_file.'</td><td align="center">'; + if (file_exists($physical_file)) { + $text .= '<img width="16" src="'.system_AdminIcons('success.png').'" /></td></tr>'; + } else { + $text .= '<img width="16" src="'.system_AdminIcons('cancel.png').'" /></td></tr>'; + } + $verif_write = true; + } + fclose($open); + } + $class = ($class == "even") ? "odd" : "even"; + } + } + } + } + + // create block template + $btemplates =& $tpltpl_handler->find($tplsetname, 'block', null, $moddir); + for ($k = 0; $k < count($btemplates); $k++) { + $filename = $btemplates[$k]->getVar('tpl_file'); + if ($tplsetname == $tplset) { + $physical_file = XOOPS_THEME_PATH.'/'.$_REQUEST['select_theme'].'/modules/'.$moddir.'/blocks/'.$filename; + $btplfile =& $tpltpl_handler->get($btemplates[$k]->getVar('tpl_id'), true); + + if (is_object($btplfile)) { + if (!file_exists($physical_file) || $_REQUEST['force_generated'] == 1) { + if ($select_templates_modules[$l] == $filename) { + $open = fopen("".$physical_file."","w+"); + if (fwrite($open, "".$btplfile->getVar('tpl_source', 'n')."")) { + $text .= '<tr class="'.$class.'"><td align="center">'._AM_SYSTEM_TEMPLATES_BLOCKS.'</td><td>'.$physical_file.'</td><td align="center">'; + if (file_exists($physical_file)) { + $text .= '<img width="16" src="'.system_AdminIcons('success.png').'" /></td></tr>'; + } else { + $text .= '<img width="16" src="'.system_AdminIcons('cancel.png').'" /></td></tr>'; + } + $verif_write = true; + } + fclose($open); + } + $class = ($class == "even") ? "odd" : "even"; + } + } + } + } + } + $text .= '</tbody></table>'; + } + unset($module); + } + } + } + $xoopsTpl->assign('infos', $text); + $xoopsTpl->assign('verif', $verif_write); + } else { + redirect_header("admin.php?fct=tplsets", 2, _AM_SYSTEM_TEMPLATES_SAVE); + } + } else { + // Generate one module + $GLOBALS['xoopsTpl']->assign('index', true); + + $tplset = system_CleanVars($POST, 'tplset', 'default', 'string' ); + + $form = new XoopsThemeForm(_AM_SYSTEM_TEMPLATES_SELECT_TEMPLATES, "form", 'admin.php?fct=tplsets', "post", true); + + $tpltpl_handler =& xoops_gethandler('tplfile'); + $templates_arr =& $tpltpl_handler->find($tplset, '', null, $_REQUEST['select_modules']); + + $modules = new XoopsFormSelect(_AM_SYSTEM_TEMPLATES_SELECT_TEMPLATES, 'select_templates_modules', null, 10, true); + foreach (array_keys($templates_arr) as $i) { + $modules->addOption($templates_arr[$i]->getVar('tpl_file')); + } + $form->addElement($modules); + + $form->addElement(new XoopsFormHidden("active_templates", "1")); + $form->addElement(new XoopsFormHidden("force_generated", $_REQUEST['force_generated'])); + $form->addElement(new XoopsFormHidden("select_modules", $_REQUEST['select_modules'])); + $form->addElement(new XoopsFormHidden("active_modules", "1")); + $form->addElement(new XoopsFormHidden("select_theme", $_REQUEST['select_theme'])); + $form->addElement(new XoopsFormHidden("op", "tpls_generate_surcharge")); + $form->addElement(new XoopsFormButton("", "submit", _SUBMIT, "submit")); + $xoopsTpl->assign('form', $form->render()); + } + break; + + // save + case 'tpls_save': + $path_file = $_REQUEST['path_file']; + if (isset($path_file)) { + // copy file + $copy_file = $path_file; + copy($copy_file, $path_file.'.back'); + // Save modif + if (isset($_REQUEST['templates'])) { + $open = fopen("".$path_file."","w+"); + if (!fwrite($open, utf8_encode(stripslashes($_REQUEST['templates'])))) { + redirect_header("admin.php?fct=tplsets", 2, _AM_SYSTEM_TEMPLATES_ERROR); + } + fclose($open); + } + } + redirect_header("admin.php?fct=tplsets", 2, _AM_SYSTEM_TEMPLATES_SAVE); + break; +} +// Call Footer +xoops_cp_footer(); Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php 2015-02-15 10:02:48 UTC (rev 12979) @@ -0,0 +1,865 @@ +<?php +// $Id: main.php 12036 2013-09-14 04:58:55Z beckmi $ +// ------------------------------------------------------------------------ // +// XOOPS - PHP Content Management System // +// Copyright (c) 2000 XOOPS.org // +// <http://www.xoops.org/> // +// ------------------------------------------------------------------------ // +// This program is free software; you can redistribute it and/or modify // +// it under the terms of the GNU General Public License as published by // +// the Free Software Foundation; either version 2 of the License, or // +// (at your option) any later version. // +// // +// You may not change or alter any portion of this comment or credits // +// of supporting developers from this source code or any supporting // +// source code which is considered copyrighted (c) material of the // +// original comment or credit authors. // +// // +// This program is distributed in the hope that it will be useful, // +// but WITHOUT ANY WARRANTY; without even the implied warranty of // +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // +// GNU General Public License for more details. // +// // +// You should have received a copy of the GNU General Public License // +// along with this program; if not, write to the Free Software // +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // +// ------------------------------------------------------------------------ // +// Author: Kazumi Ono (AKA onokazu) // +// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ // +// Project: The XOOPS Project // +// ------------------------------------------------------------------------- // + +// Check users rights +if ( !is_object($xoopsUser) || !is_object($xoopsModule) || !$xoopsUser->isAdmin($xoopsModule->mid()) ) exit( _NOPERM ); + +include_once XOOPS_ROOT_PATH . "/modules/system/admin/users/users.php"; +// Get Action type +$op = system_CleanVars ( $_REQUEST, 'op', 'default', 'string' ); + +$member_handler =& xoops_gethandler('member', 'system'); +// Define main template +$xoopsOption['template_main'] = 'system_users.html'; +// Call Header +xoops_cp_header(); + +$myts =& MyTextSanitizer::getInstance(); +// Define Stylesheet +$xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/admin.css'); +$xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/ui/' . xoops_getModuleOption('jquery_theme', 'system') . '/ui.all.css'); +// Define scripts +$xoTheme->addScript('modules/system/js/admin.js'); +// Define Breadcrumb and tips +$xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_MAIN, system_adminVersion('users', 'adminpath') ); + +$uid = system_CleanVars($_REQUEST, 'uid', 0); +switch ($op) { + + // Edit user + case 'users_edit': + // Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('users', 'help') . '#edit' ); + $xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_EDIT_USER ); + $xoBreadCrumb->render(); + form_user(false, $uid); + break; + + // Add user + case 'users_add': + // Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('users', 'help') . '#add' ); + $xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_ADD_USER ); + $xoBreadCrumb->render(); + form_user(true); + break; + + // Delete user + case 'users_delete': + $xoBreadCrumb->render(); + $user =& $member_handler->getUser($uid); + if (isset($_REQUEST['ok']) && $_REQUEST['ok'] == 1) { + if (!$GLOBALS['xoopsSecurity']->check()) { + redirect_header("admin.php?fct=users", 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors())); + } + + $groups = $user->getGroups(); + if (in_array(XOOPS_GROUP_ADMIN, $groups)) { + xoops_error( sprintf( _AM_SYSTEM_USERS_NO_ADMINSUPP, $user->getVar("uname")) ); + } elseif (!$member_handler->deleteUser($user)) { + xoops_error( sprintf( _AM_SYSTEM_USERS_NO_SUPP, $user->getVar("uname")) ); + } else { + $online_handler =& xoops_gethandler('online'); + $online_handler->destroy($uid); + // RMV-NOTIFY + xoops_notification_deletebyuser($uid); + redirect_header("admin.php?fct=users",1,_AM_SYSTEM_DBUPDATED); + } + } else { + //Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('users', 'help') . '#delete' ); + $xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_DELETE_USER ); + $xoBreadCrumb->render(); + xoops_confirm(array('ok' => 1, 'uid' => $uid, 'op' => 'users_delete'), $_SERVER['REQUEST_URI'], sprintf(_AM_SYSTEM_USERS_FORM_SURE_DEL, $user->getVar('uname'))); + } + break; + + // Delete users + case "action_group": + if ((@isset($_REQUEST['memberslist_id']) || @$_REQUEST['memberslist_id'] != '')) { + $xoBreadCrumb->render(); + $error = ''; + foreach ($_REQUEST['memberslist_id'] as $del) { + $del = intval($del); + $user =& $member_handler->getUser($del); + $groups = $user->getGroups(); + if (in_array(XOOPS_GROUP_ADMIN, $groups)) { + $error .= sprintf( _AM_SYSTEM_USERS_NO_ADMINSUPP, $user->getVar("uname")); + } elseif (!$member_handler->deleteUser($user)) { + $error .= sprintf( _AM_SYSTEM_USERS_NO_SUPP, $user->getVar("uname")); + } else { + $online_handler =& xoops_gethandler('online'); + $online_handler->destroy($del); + // RMV-NOTIFY + xoops_notification_deletebyuser($del); + } + } + if ($error != '') { + redirect_header("admin.php?fct=users", 3, sprintf( _AM_SYSTEM_USERS_ERROR,$error ) ); + } else { + redirect_header("admin.php?fct=users", 1, _AM_SYSTEM_DBUPDATED); + } + } + break; + + // Save user + case "users_save": + global $xoopsConfig, $xoopsModule, $xoopsUser; + + if (isset($_REQUEST['uid'])) { + //Update user + if (!$GLOBALS['xoopsSecurity']->check()) { + redirect_header("admin.php?fct=users", 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors())); + } + // RMV-NOTIFY + $user_avatar = $theme = null; + if ( !isset( $_REQUEST['attachsig'] ) ) $attachsig = null; + if ( !isset( $_REQUEST['user_viewemail'] ) ) $user_viewemail = null; + + $edituser =& $member_handler->getUser($uid); + if ($edituser->getVar('uname', 'n') != $_REQUEST['username'] && $member_handler->getUserCount(new Criteria('uname', $myts->addSlashes($_REQUEST['username']))) > 0) { + xoops_cp_header(); + xoops_error( sprintf( _AM_SYSTEM_USERS_PSEUDO_ERROR, htmlspecialchars($_REQUEST['username'])) ); + xoops_cp_footer(); + } elseif ( $edituser->getVar('email', 'n') != $_REQUEST['email'] && $member_handler->getUserCount( new Criteria( 'email', $myts->addSlashes($_REQUEST['email']) ) ) > 0 ) { + xoops_cp_header(); + xoops_error( sprintf( _AM_SYSTEM_USERS_MAIL_ERROR, htmlspecialchars($_REQUEST['email'])) ); + xoops_cp_footer(); + } else { + $edituser->setVar("name", $_REQUEST['name']); + $edituser->setVar("uname", $_REQUEST['username']); + $edituser->setVar("email", $_REQUEST['email']); + $url = isset( $_REQUEST['url'] ) ? formatURL( $_REQUEST['url'] ) : ''; + $edituser->setVar( "url", $url ); + $edituser->setVar("user_icq", $_REQUEST['user_icq']); + $edituser->setVar("user_from", $_REQUEST['user_from']); + $edituser->setVar("user_sig", $_REQUEST['user_sig']); + $user_viewemail = (isset($_REQUEST['user_viewemail']) && $_REQUEST['user_viewemail'] == 1) ? 1 : 0; + $edituser->setVar("user_viewemail", $user_viewemail); + $edituser->setVar("user_aim", $_REQUEST['user_aim']); + $edituser->setVar("user_yim", $_REQUEST['user_yim']); + $edituser->setVar("user_msnm", $_REQUEST['user_msnm']); + $attachsig = ( isset( $_REQUEST['attachsig'] ) && $_REQUEST['attachsig'] == 1 ) ? 1 : 0; + $edituser->setVar("attachsig", $attachsig); + $edituser->setVar("timezone_offset", $_REQUEST['timezone_offset']); + $edituser->setVar("uorder", $_REQUEST['uorder']); + $edituser->setVar("umode", $_REQUEST['umode']); + // RMV-NOTIFY + $edituser->setVar("notify_method", $_REQUEST['notify_method']); + $edituser->setVar("notify_mode", $_REQUEST['notify_mode']); + $edituser->setVar("bio", $_REQUEST['bio']); + $edituser->setVar("rank", $_REQUEST['rank']); + $edituser->setVar("user_occ", $_REQUEST['user_occ']); + $edituser->setVar("user_intrest", $_REQUEST['user_intrest']); + $edituser->setVar('user_mailok', $_REQUEST['user_mailok']); + if ($_REQUEST['pass2'] != "") { + if ($_REQUEST['password'] != $_REQUEST['pass2']) { + xoops_cp_header(); + echo " + <strong>"._AM_SYSTEM_USERS_STNPDNM."</strong>"; + xoops_cp_footer(); + exit(); + } + $edituser->setVar("pass", md5($_REQUEST['password'])); + } + if (!$member_handler->insertUser($edituser)) { + xoops_cp_header(); + echo $edituser->getHtmlErrors(); + xoops_cp_footer(); + } else { + if ($_REQUEST['groups'] != array()) { + global $xoopsUser; + $oldgroups = $edituser->getGroups(); + //If the edited user is the current user and the current user WAS in the webmaster's group and is NOT in the new groups array + if ($edituser->getVar('uid') == $xoopsUser->getVar('uid') && (in_array(XOOPS_GROUP_ADMIN, $oldgroups)) && !(in_array(XOOPS_GROUP_ADMIN, $_REQUEST['groups']))) { + //Add the webmaster's group to the groups array to prevent accidentally removing oneself from the webmaster's group + array_push($_REQUEST['groups'], XOOPS_GROUP_ADMIN); + } + $member_handler =& xoops_gethandler('member'); + foreach ($oldgroups as $groupid) { + $member_handler->removeUsersFromGroup($groupid, array($edituser->getVar('uid'))); + } + foreach ($_REQUEST['groups'] as $groupid) { + $member_handler->addUserToGroup($groupid, $edituser->getVar('uid')); + } + } + redirect_header("admin.php?fct=users",1,_AM_SYSTEM_DBUPDATED); + } + } + exit(); + } else { + //Add user + if (!$GLOBALS['xoopsSecurity']->check()) { + redirect_header("admin.php?fct=users", 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors())); + } + if (!$_REQUEST['username'] || !$_REQUEST['email'] || !$_REQUEST['password']) { + $adduser_errormsg = _AM_SYSTEM_USERS_YMCACF; + } else { + $member_handler =& xoops_gethandler('member'); + // make sure the username doesnt exist yet + if ($member_handler->getUserCount(new Criteria('uname', $myts->addSlashes($_REQUEST['username']))) > 0) { + $adduser_errormsg = 'User name '. htmlspecialchars($_REQUEST['username']) .' already exists'; + } else { + $newuser =& $member_handler->createUser(); + if ( isset($user_viewemail) ) { + $newuser->setVar("user_viewemail",$_REQUEST['user_viewemail']); + } + if ( isset($attachsig) ) { + $newuser->setVar("attachsig",$_REQUEST['attachsig']); + } + $newuser->setVar("name", $_REQUEST['name']); + $newuser->setVar("uname", $_REQUEST['username']); + $newuser->setVar("email", $_REQUEST['email']); + $newuser->setVar("url", formatURL($_REQUEST['url'])); + $newuser->setVar("user_avatar",'blank.gif'); + $newuser->setVar('user_regdate', time()); + $newuser->setVar("user_icq", $_REQUEST['user_icq']); + $newuser->setVar("user_from", $_REQUEST['user_from']); + $newuser->setVar("user_sig", $_REQUEST['user_sig']); + $newuser->setVar("user_aim", $_REQUEST['user_aim']); + $newuser->setVar("user_yim", $_REQUEST['user_yim']); + $newuser->setVar("user_msnm", $_REQUEST['user_msnm']); + if ($_REQUEST['pass2'] != "") { + if ($_REQUEST['password'] != $_REQUEST['pass2']) { + xoops_cp_header(); + echo "<strong>" . _AM_SYSTEM_USERS_STNPDNM . "</strong>"; + xoops_cp_footer(); + exit(); + } + $newuser->setVar("pass", md5($_REQUEST['password'])); + } + $newuser->setVar("timezone_offset", $_REQUEST['timezone_offset']); + $newuser->setVar("uorder", $_REQUEST['uorder']); + $newuser->setVar("umode", $_REQUEST['umode']); + // RMV-NOTIFY + $newuser->setVar("notify_method", $_REQUEST['notify_method']); + $newuser->setVar("notify_mode", $_REQUEST['notify_mode']); + $newuser->setVar("bio", $_REQUEST['bio']); + $newuser->setVar("rank", $_REQUEST['rank']); + $newuser->setVar("level", 1); + $newuser->setVar("user_occ", $_REQUEST['user_occ']); + $newuser->setVar("user_intrest", $_REQUEST['user_intrest']); + $newuser->setVar('user_mailok', $_REQUEST['user_mailok']); + if (!$member_handler->insertUser($newuser)) { + $adduser_errormsg = _AM_SYSTEM_USERS_CNRNU; + } else { + $groups_failed = array(); + foreach ($_REQUEST['groups'] as $group) { + $group = intval($group); + if (!$member_handler->addUserToGroup($group, $newuser->getVar('uid'))) { + $groups_failed[] = $group; + } + } + if (!empty($groups_failed)) { + $group_names = $member_handler->getGroupList(new Criteria('groupid', "(".implode(", ", $groups_failed).")", 'IN')); + $adduser_errormsg = sprintf(_AM_SYSTEM_USERS_CNRNU2, implode(", ", $group_names)); + } else { + xoops_load("XoopsUserUtility"); + XoopsUserUtility::sendWelcome($newuser); + redirect_header("admin.php?fct=users", 1, _AM_SYSTEM_DBUPDATED); + exit(); + } + } + } + } + xoops_error($adduser_errormsg); + } + break; + + // Activ member + case 'users_active': + if (isset($_REQUEST["uid"])) { + $obj =& $member_handler->getUser($uid); + //echo $_REQUEST["uid"]; + //print_r($obj); + } + $obj->setVar("level", 1); + if ($member_handler->insertUser($obj, true)) { + redirect_header("admin.php?fct=users", 1, _AM_SYSTEM_DBUPDATED); + } + echo $obj->getHtmlErrors(); + break; + + // Synchronize + case 'users_synchronize': + if (isset($_REQUEST['status']) && $_REQUEST['status'] == 1) { + synchronize($$uid, 'user'); + } elseif (isset($_REQUEST['status']) && $_REQUEST['status'] == 2) { + synchronize( '', 'all users'); + } + redirect_header("admin.php?fct=users", 1, _AM_SYSTEM_DBUPDATED); + break; + + default: + // Search and Display + // Define scripts + $xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js'); + $xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.ui.js'); + //table sorting does not work with select boxes + //$xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.tablesorter.js'); + $xoTheme->addScript('modules/system/js/admin.js'); + //Recherche approfondie + + if (isset($_REQUEST['complet_search'])) { + // Assign Breadcrumb menu + $xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_ADVANCED_SEARCH ); + $xoBreadCrumb->addHelp( system_adminVersion('users', 'help') ); + $xoBreadCrumb->addTips( _AM_SYSTEM_USERS_NAV_TIPS ); + $xoBreadCrumb->render(); + + $acttotal = $member_handler->getUserCount(new Criteria('level', 0, '>')); + $inacttotal = $member_handler->getUserCount(new Criteria('level', 0)); + + //$group_select = new XoopsFormSelectGroup(_AM_SYSTEM_USERS_GROUPS, "selgroups", null, false, 1, false); + $group_select = new XoopsFormSelect(_AM_SYSTEM_USERS_GROUPS, "selgroups"); + + $group_handler =& xoops_gethandler('group'); + $group_arr = $group_handler->getObjects(); + $group_select->addOption("", "--------------"); + foreach (array_keys($group_arr) as $i) { + if($group_arr[$i]->getVar("groupid") != 3) + $group_select->addOption("".$group_arr[$i]->getVar("groupid")."", "".$group_arr[$i]->getVar("name").""); + } + + + $uname_text = new XoopsFormText("", "user_uname", 30, 60); + $uname_match = new XoopsFormSelectMatchOption("", "user_uname_match"); + $uname_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_UNAME, " "); + $uname_tray->addElement($uname_match); + $uname_tray->addElement($uname_text); + $name_text = new XoopsFormText("", "user_name", 30, 60); + $name_match = new XoopsFormSelectMatchOption("", "user_name_match"); + $name_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_REALNAME, " "); + $name_tray->addElement($name_match); + $name_tray->addElement($name_text); + $email_text = new XoopsFormText("", "user_email", 30, 60); + $email_match = new XoopsFormSelectMatchOption("", "user_email_match"); + $email_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_EMAIL, " "); + $email_tray->addElement($email_match); + $email_tray->addElement($email_text); + $url_text = new XoopsFormText(_AM_SYSTEM_USERS_URLC, "user_url", 30, 100); + $icq_text = new XoopsFormText("", "user_icq", 30, 100); + $icq_match = new XoopsFormSelectMatchOption("", "user_icq_match"); + $icq_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_ICQ, " "); + $icq_tray->addElement($icq_match); + $icq_tray->addElement($icq_text); + $aim_text = new XoopsFormText("", "user_aim", 30, 100); + $aim_match = new XoopsFormSelectMatchOption("", "user_aim_match"); + $aim_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_AIM, " "); + $aim_tray->addElement($aim_match); + $aim_tray->addElement($aim_text); + $yim_text = new XoopsFormText("", "user_yim", 30, 100); + $yim_match = new XoopsFormSelectMatchOption("", "user_yim_match"); + $yim_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_YIM, " "); + $yim_tray->addElement($yim_match); + $yim_tray->addElement($yim_text); + $msnm_text = new XoopsFormText("", "user_msnm", 30, 100); + $msnm_match = new XoopsFormSelectMatchOption("", "user_msnm_match"); + $msnm_tray = new XoopsFormElementTray(_AM_SYSTEM_USERS_MSNM, " "); + $msnm_tray->addElement($msnm_match); + $msnm_tray->addElement($msnm_text); + $location_text = new XoopsFormText(_AM_SYSTEM_USERS_LOCATIONC, "user_from", 30, 100); + $occupation_text = new XoopsFormText(_AM_SYSTEM_USERS_OCCUPATIONC, "user_occ", 30, 100); + $interest_text = new XoopsFormText(_AM_SYSTEM_USERS_INTERESTC, "user_intrest", 30, 100); + + $lastlog_more = new XoopsFormText(_AM_SYSTEM_USERS_LASTLOGMORE, "user_lastlog_more", 10, 5); + $lastlog_less = new XoopsFormText(_AM_SYSTEM_USERS_LASTLOGLESS, "user_lastlog_less", 10, 5); + $reg_more = new XoopsFormText(_AM_SYSTEM_USERS_REGMORE, "user_reg_more", 10, 5); + $reg_less = new XoopsFormText(_AM_SYSTEM_USERS_REGLESS, "user_reg_less", 10, 5); + $posts_more = new XoopsFormText(_AM_SYSTEM_USERS_POSTSMORE, "user_posts_more", 10, 5); + $posts_less = new XoopsFormText(_AM_SYSTEM_USERS_POSTSLESS, "user_posts_less", 10, 5); + $mailok_radio = new XoopsFormRadio(_AM_SYSTEM_USERS_SHOWMAILOK, "user_mailok", "both"); + $mailok_radio->addOptionArray(array("mailok"=>_AM_SYSTEM_USERS_MAILOK, "mailng"=>_AM_SYSTEM_USERS_MAILNG, "both"=>_AM_SYSTEM_USERS_BOTH)); + $type_radio = new XoopsFormRadio(_AM_SYSTEM_USERS_SHOWTYPE, "user_type", "actv"); + $type_radio->addOptionArray(array("actv"=>_AM_SYSTEM_USERS_ACTIVE, "inactv"=>_AM_SYSTEM_USERS_INACTIVE, "both"=>_AM_SYSTEM_USERS_BOTH)); + $sort_select = new XoopsFormSelect(_AM_SYSTEM_USERS_SORT, "user_sort"); + $sort_select->addOptionArray(array("uname"=>_AM_SYSTEM_USERS_UNAME,"email"=>_AM_SYSTEM_USERS_EMAIL,"last_login"=>_AM_SYSTEM_USERS_LASTLOGIN,"user_regdate"=>_AM_SYSTEM_USERS_REGDATE,"posts"=>_AM_SYSTEM_USERS_POSTS)); + $order_select = new XoopsFormSelect(_AM_SYSTEM_USERS_ORDER, "user_order"); + $order_select->addOptionArray(array("ASC"=>_AM_SYSTEM_USERS_ASC,"DESC"=>_AM_SYSTEM_USERS_DESC)); + $limit_text = new XoopsFormText(_AM_SYSTEM_USERS_LIMIT, "user_limit", 6, 2, 20); + $submit_button = new XoopsFormButton("", "user_submit", _SUBMIT, "submit"); + + $form = new XoopsThemeForm(_AM_SYSTEM_USERS_FINDUS, "uesr_findform", "admin.php?fct=users", 'post', true); + $form->addElement($uname_tray); + $form->addElement($name_tray); + $form->addElement($email_tray); + $form->addElement($group_select); + $form->addElement($icq_tray); + $form->addElement($aim_tray); + $form->addElement($yim_tray); + $form->addElement($msnm_tray); + $form->addElement($url_text); + $form->addElement($location_text); + $form->addElement($occupation_text); + $form->addElement($interest_text); + $form->addElement($lastlog_more); + $form->addElement($lastlog_less); + $form->addElement($reg_more); + $form->addElement($reg_less); + $form->addElement($posts_more); + $form->addElement($posts_less); + $form->addElement($mailok_radio); + $form->addElement($type_radio); + $form->addElement($sort_select); + $form->addElement($order_select); + $form->addElement($fct_hidden); + $form->addElement($limit_text); + $form->addElement($op_hidden); + + // if this is to find users for a specific group + if ( !empty($_GET['group']) && intval($_GET['group']) > 0 ) { + $group_hidden = new XoopsFormHidden("group", intval($_GET['group'])); + $form->addElement($group_hidden); + } + $form->addElement($submit_button); + $form->display(); + } else { + //Display data + // Assign Breadcrumb menu + $xoBreadCrumb->addHelp( system_adminVersion('users', 'help') ); + $xoBreadCrumb->addTips( _AM_SYSTEM_USERS_NAV_TIPS ); + $xoBreadCrumb->render(); + + $requete_search = '<br /><br /><strong>See search request: </strong><br /><br />'; + $requete_pagenav = ''; + + $criteria = new CriteriaCompo(); + if ( !empty($_REQUEST['user_uname']) ) { + $match = (!empty($_REQUEST['user_uname_match'])) ? intval($_REQUEST['user_uname_match']) : XOOPS_MATCH_START; + switch ($match) { + case XOOPS_MATCH_START: + $criteria->add(new Criteria('uname', $myts->addSlashes(trim($_REQUEST['user_uname'])).'%', 'LIKE')); + ... [truncated message content] |
From: <txm...@us...> - 2015-02-15 10:32:27
|
Revision: 12980 http://sourceforge.net/p/xoops/svn/12980 Author: txmodxoops Date: 2015-02-15 10:32:18 +0000 (Sun, 15 Feb 2015) Log Message: ----------- Added minified css xnewage.min.css file Modifieds Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_header.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_preferences.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_header.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_header.html 2015-02-15 10:02:48 UTC (rev 12979) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_header.html 2015-02-15 10:32:18 UTC (rev 12980) @@ -1,3 +1,4 @@ +<{* <{if $help_content}> <div class="hide" id="xo-system-help"> <{includeq file="$help_content"}> @@ -3,8 +4,9 @@ </div> <{/if}> +*}> <{if $xo_sys_tips}> -<div class="ui-corner-all"> - <img class="floatleft" src="<{xoAdminIcons tips.png}>" alt="<{$smarty.const._AM_SYSTEM_TIPS}>" title="<{$smarty.const._AM_SYSTEM_TIPS}>" /> - <div class="floatleft"><{$xo_sys_tips}></div> +<div class="row"> + <img class="pull-left" src="<{xoAdminIcons tips.png}>" alt="<{$smarty.const._AM_SYSTEM_TIPS}>" title="<{$smarty.const._AM_SYSTEM_TIPS}>" /> + <div class="pull-left"><{$xo_sys_tips}></div> <div class="clear"> </div> </div> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_preferences.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_preferences.html 2015-02-15 10:02:48 UTC (rev 12979) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_preferences.html 2015-02-15 10:32:18 UTC (rev 12980) @@ -3,20 +3,19 @@ <{/if}> <!--Preferences--> <{if $menu}> -<ul class="list-inline"> - <{foreach item=preferences from=$preferences}> - <li class="box-icon text-center"><a class="thumbnail" href="admin.php?fct=preferences&op=show&confcat_id=<{$preferences.id}>" title="<{$preferences.name}>"> - <img class="img-rounded" src="<{$preferences.image}>" alt="<{$preferences.name}>" /> - <span><{$preferences.name}></span> - </a></li> - <{/foreach}> - <li class="box-icon text-center"><a class="thumbnail" href="admin.php?fct=preferences&op=showmod&mod=1" title="<{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}>"> - <img class="img-rounded" src="<{xoAdminIcons xoops/system_mods.png}>" alt="<{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}>" /> - <span><{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}></span> - </a></li> -</ul> +<div class="row row-preferences"> + <ul class="list-inline"> + <{foreach item=preferences from=$preferences}> + <li class="box-icon text-center"><a class="thumbnail" href="admin.php?fct=preferences&op=show&confcat_id=<{$preferences.id}>" title="<{$preferences.name}>"> + <img class="img-rounded" src="<{$preferences.image}>" alt="<{$preferences.name}>" /> + <span><{$preferences.name}></span> + </a></li> + <{/foreach}> + <li class="box-icon text-center"><a class="thumbnail" href="admin.php?fct=preferences&op=showmod&mod=1" title="<{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}>"> + <img class="img-rounded" src="<{xoAdminIcons xoops/system_mods.png}>" alt="<{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}>" /> + <span><{$smarty.const._AM_SYSTEM_PREFERENCES_SETTINGS}></span> + </a></li> + </ul> +</div> <{/if}> -<div class="clear"> </div> -<br /> - - +<div class="clear"> </div> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css 2015-02-15 10:02:48 UTC (rev 12979) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css 2015-02-15 10:32:18 UTC (rev 12980) @@ -1,7 +1,7 @@ /*! - * XNewage Bootstrap Admin Xoops Theme (http://www.txmodxoops.org) + * XNewage Bootstrap CPanel Xoops Theme (http://www.txmodxoops.org) * Licensed under the GNU License v2.0. - * For details, see http://www.apache.org/licenses/LICENSE-2.0. + * For details, see http://www.gnu.org/licenses/gpl-3.0.html */ body { @@ -445,4 +445,8 @@ ul.thumbnails li.module-icon a.thumbnail { padding: 5px; +} + +.row.row-preferences { + margin: 20px 0 0 10px; } \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css 2015-02-15 10:02:48 UTC (rev 12979) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css 2015-02-15 10:32:18 UTC (rev 12980) @@ -1,7 +1,7 @@ /*! - * XNewage Bootstrap Admin Xoops Theme (http://www.txmodxoops.org) + * XNewage Bootstrap CPanel Xoops Theme (http://www.txmodxoops.org) * Licensed under the GNU License v2.0. * For details, see http://www.gnu.org/licenses/gpl-3.0.html */ -body{background-color:#f8f8f8}ul.line-type{list-style-type:none;padding:0;margin:0 0 0 15px}#wrapper{width:100%}#page-wrapper{padding:0 15px;min-height:568px;background-color:#fff}@media(min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 250px;padding:0 30px;border-left:1px solid #e7e7e7}}.navbar-top-links{margin-right:0}.navbar-top-links li{display:inline-block}.navbar-top-links li:last-child{margin-right:15px}.navbar-top-links li a{padding:15px;min-height:50px}.navbar-top-links .dropdown-menu li{display:block}.navbar-top-links.dropdown-menu li:last-child{margin-right:0}.navbar-top-links.dropdown-menu li a{padding:3px 20px;min-height:0}.navbar-top-links .dropdown-menu li a div{white-space:normal}.navbar-top-links.dropdown-messages,.navbar-top-links .dropdown-tasks,.navbar-top-links.dropdown-alerts{width:310px;min-width:0}.navbar-top-links .dropdown-messages{margin-left:5px}.navbar-top-links .dropdown-tasks{margin-left:-59px}.navbar-top-links .dropdown-alerts{margin-left:-123px}.navbar-top-links.dropdown-user{right:0;left:auto}.sidebar .sidebar-nav.navbar-collapse{padding-right:0;padding-left:0}.sidebar .sidebar-search{padding:15px}.sidebar ul li{border-bottom:1px solid #e7e7e7}.sidebar ul li a.active{background-color:#eee}.sidebar .arrow{float:right}.sidebar .fa.arrow:before{content:"\f104"}.sidebar .active>a>.fa.arrow:before{content:"\f107"}.sidebar.nav-second-level li,.sidebar.nav-third-level li,.sidebar.nav-fourth-level li{border-bottom:0!important}.sidebar.nav-second-level li a{padding-left:37px}.sidebar .nav-third-level li a{padding-left:52px}.sidebar.nav-fourth-level li a{padding-left:67px}@media(min-width:768px){.sidebar{z-index:1;position:absolute;width:250px;margin-top:51px}.navbar-top-links .dropdown-messages,.navbar-top-links.dropdown-tasks,.navbar-top-links .dropdown-alerts{margin-left:auto}}.btn-outline{color:inherit;background-color:transparent;transition:all .5s}.btn-primary.btn-outline{color:#428bca}.btn-success.btn-outline{color:#5cb85c}.btn-info.btn-outline{color:#5bc0de}.btn-warning.btn-outline{color:#f0ad4e}.btn-danger.btn-outline{color:#d9534f}.btn-primary.btn-outline:hover,.btn-success.btn-outline:hover,.btn-info.btn-outline:hover,.btn-warning.btn-outline:hover,.btn-danger.btn-outline:hover{color:#fff}.chat{margin:0;padding:0;list-style:none}.chat li{margin-bottom:10px;padding-bottom:5px;border-bottom:1px dotted #999}.chat li.left .chat-body{margin-left:60px}.chat li.right .chat-body{margin-right:60px}.chat li.chat-body p{margin:0}.panel.slidedown.glyphicon,.chat.glyphicon{margin-right:5px}.chat-panel.panel-body{height:350px;overflow-y:scroll}.login-panel{margin-top:25%}.flot-chart{display:block;height:400px}.flot-chart-content{width:100%;height:100%}.dataTables_wrapper{position:relative;clear:both}table.dataTable thead.sorting,table.dataTable thead.sorting_asc,table.dataTable thead.sorting_desc,table.dataTable thead.sorting_asc_disabled,table.dataTable thead.sorting_desc_disabled{background:0 0}table.dataTable thead.sorting_asc:after{content:"\f0de";float:right;font-family:fontawesome}table.dataTable thead.sorting_desc:after{content:"\f0dd";float:right;font-family:fontawesome}table.dataTable thead.sorting:after{content:"\f0dc";float:right;font-family:fontawesome;color:rgba(50,50,50,.5)}.btn-circle{width:30px;height:30px;padding:6px 0;border-radius:15px;text-align:center;font-size:12px;line-height:1.428571429}.btn-circle.btn-lg{width:50px;height:50px;padding:10px 16px;border-radius:25px;font-size:18px;line-height:1.33}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 16px;border-radius:35px;font-size:24px;line-height:1.33}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;border:1px solid #ddd;background-color:#eee!important}.show-grid{margin:15px 0}.huge{font-size:40px}.panel-green{border-color:#5cb85c}.panel-green .panel-heading{border-color:#5cb85c;color:#fff;background-color:#5cb85c}.panel-green a{color:#5cb85c}.panel-green a:hover{color:#3d8b3d}.panel-red{border-color:#d9534f}.panel-red.panel-heading{border-color:#d9534f;color:#fff;background-color:#d9534f}.panel-red a{color:#d9534f}.panel-red a:hover{color:#b52b27}.panel-yellow{border-color:#f0ad4e}.panel-yellow.panel-heading{border-color:#f0ad4e;color:#fff;background-color:#f0ad4e}.panel-yellow a{color:#f0ad4e}.panel-yellow a:hover{color:#df8a13}#accordion{border:1px solid #f5f5f5;background-color:#f0f0f0;color:#333;width:100%;box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-moz-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-webkit-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-khtml-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset}#accordion h5{padding:5px 10px;cursor:pointer;position:relative;margin:1px;background:inherit!important;color:#000;border:1px solid #FFF;font-weight:700}#accordion h5.current{cursor:default;background-color:#f7f7f7}#accordion .pane{display:none;padding:10px;font-size:12px;line-height:120%}.xgiftshop{text-align:center!important}#xokeytitle{padding:2px;font-size:13px;font-weight:700;color:#333}#xokeynumber{text-align:center;padding-top:5px;padding-bottom:5px;font-size:13px;font-weight:700;color:#92EF2C}#xolicenses{padding:5px 18px!important}#xolicenses a{color:#45C5DF}#xolicenses a:hover{color:red;text-decoration:none}ul.thumbnails{list-style-type:none;margin:-5px -15px -15px}ul.thumbnails li.box-icon{display:inline-block}ul.thumbnails li.box-icon a.thumbnail{padding:5px}ul.list-inline{list-style-type:none;margin:-5px -15px -15px}ul.list-inline li.box-icon{display:inline-block}ul.list-inline li.box-icon a.thumbnail{padding:5px} \ No newline at end of file +body{background-color:#f8f8f8}ul.line-type{list-style-type:none;padding:0;margin:0 0 0 15px}#wrapper{width:100%}#page-wrapper{padding:0 15px;min-height:568px;background-color:#fff}@media(min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 250px;padding:0 30px;border-left:1px solid #e7e7e7}}.navbar-top-links{margin-right:0}.navbar-top-links li{display:inline-block}.navbar-top-links li:last-child{margin-right:15px}.navbar-top-links li a{padding:15px;min-height:50px}.navbar-top-links .dropdown-menu li{display:block}.navbar-top-links.dropdown-menu li:last-child{margin-right:0}.navbar-top-links.dropdown-menu li a{padding:3px 20px;min-height:0}.navbar-top-links .dropdown-menu li a div{white-space:normal}.navbar-top-links.dropdown-messages,.navbar-top-links .dropdown-tasks,.navbar-top-links.dropdown-alerts{width:310px;min-width:0}.navbar-top-links .dropdown-messages{margin-left:5px}.navbar-top-links .dropdown-tasks{margin-left:-59px}.navbar-top-links .dropdown-alerts{margin-left:-123px}.navbar-top-links.dropdown-user{right:0;left:auto}.sidebar .sidebar-nav.navbar-collapse{padding-right:0;padding-left:0}.sidebar .sidebar-search{padding:15px}.sidebar ul li{border-bottom:1px solid #e7e7e7}.sidebar ul li a.active{background-color:#eee}.sidebar .arrow{float:right}.sidebar .fa.arrow:before{content:"\f104"}.sidebar .active>a>.fa.arrow:before{content:"\f107"}.sidebar.nav-second-level li,.sidebar.nav-third-level li,.sidebar.nav-fourth-level li{border-bottom:0!important}.sidebar.nav-second-level li a{padding-left:37px}.sidebar .nav-third-level li a{padding-left:52px}.sidebar.nav-fourth-level li a{padding-left:67px}@media(min-width:768px){.sidebar{z-index:1;position:absolute;width:250px;margin-top:51px}.navbar-top-links .dropdown-messages,.navbar-top-links.dropdown-tasks,.navbar-top-links .dropdown-alerts{margin-left:auto}}.btn-outline{color:inherit;background-color:transparent;transition:all .5s}.btn-primary.btn-outline{color:#428bca}.btn-success.btn-outline{color:#5cb85c}.btn-info.btn-outline{color:#5bc0de}.btn-warning.btn-outline{color:#f0ad4e}.btn-danger.btn-outline{color:#d9534f}.btn-primary.btn-outline:hover,.btn-success.btn-outline:hover,.btn-info.btn-outline:hover,.btn-warning.btn-outline:hover,.btn-danger.btn-outline:hover{color:#fff}.chat{margin:0;padding:0;list-style:none}.chat li{margin-bottom:10px;padding-bottom:5px;border-bottom:1px dotted #999}.chat li.left .chat-body{margin-left:60px}.chat li.right .chat-body{margin-right:60px}.chat li.chat-body p{margin:0}.panel.slidedown.glyphicon,.chat.glyphicon{margin-right:5px}.chat-panel.panel-body{height:350px;overflow-y:scroll}.login-panel{margin-top:25%}.flot-chart{display:block;height:400px}.flot-chart-content{width:100%;height:100%}.dataTables_wrapper{position:relative;clear:both}table.dataTable thead.sorting,table.dataTable thead.sorting_asc,table.dataTable thead.sorting_desc,table.dataTable thead.sorting_asc_disabled,table.dataTable thead.sorting_desc_disabled{background:0 0}table.dataTable thead.sorting_asc:after{content:"\f0de";float:right;font-family:fontawesome}table.dataTable thead.sorting_desc:after{content:"\f0dd";float:right;font-family:fontawesome}table.dataTable thead.sorting:after{content:"\f0dc";float:right;font-family:fontawesome;color:rgba(50,50,50,.5)}.btn-circle{width:30px;height:30px;padding:6px 0;border-radius:15px;text-align:center;font-size:12px;line-height:1.428571429}.btn-circle.btn-lg{width:50px;height:50px;padding:10px 16px;border-radius:25px;font-size:18px;line-height:1.33}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 16px;border-radius:35px;font-size:24px;line-height:1.33}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;border:1px solid #ddd;background-color:#eee!important}.show-grid{margin:15px 0}.huge{font-size:40px}.panel-green{border-color:#5cb85c}.panel-green .panel-heading{border-color:#5cb85c;color:#fff;background-color:#5cb85c}.panel-green a{color:#5cb85c}.panel-green a:hover{color:#3d8b3d}.panel-red{border-color:#d9534f}.panel-red.panel-heading{border-color:#d9534f;color:#fff;background-color:#d9534f}.panel-red a{color:#d9534f}.panel-red a:hover{color:#b52b27}.panel-yellow{border-color:#f0ad4e}.panel-yellow.panel-heading{border-color:#f0ad4e;color:#fff;background-color:#f0ad4e}.panel-yellow a{color:#f0ad4e}.panel-yellow a:hover{color:#df8a13}#accordion{border:1px solid #f5f5f5;background-color:#f0f0f0;color:#333;width:100%;box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-moz-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-webkit-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-khtml-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset}#accordion h5{padding:5px 10px;cursor:pointer;position:relative;margin:1px;background:inherit!important;color:#000;border:1px solid #FFF;font-weight:700}#accordion h5.current{cursor:default;background-color:#f7f7f7}#accordion .pane{display:none;padding:10px;font-size:12px;line-height:120%}.xgiftshop{text-align:center!important}#xokeytitle{padding:2px;font-size:13px;font-weight:700;color:#333}#xokeynumber{text-align:center;padding-top:5px;padding-bottom:5px;font-size:13px;font-weight:700;color:#92EF2C}#xolicenses{padding:5px 18px!important}#xolicenses a{color:#45C5DF}#xolicenses a:hover{color:red;text-decoration:none}ul.thumbnails{list-style-type:none;margin:-5px -15px -15px}ul.thumbnails li.box-icon{display:inline-block}ul.thumbnails li.box-icon a.thumbnail{padding:5px}ul.list-inline{list-style-type:none;margin:-5px -15px -15px}ul.list-inline li.box-icon{display:inline-block}ul.list-inline li.box-icon a.thumbnail{padding:5px}.row.row-preferences{margin: 20px 0 0 10px;} \ No newline at end of file |
From: <txm...@us...> - 2015-02-16 14:09:38
|
Revision: 12983 http://sourceforge.net/p/xoops/svn/12983 Author: txmodxoops Date: 2015-02-16 14:09:28 +0000 (Mon, 16 Feb 2015) Log Message: ----------- Updated cpanel theme Added and modfied more files Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/menu.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.js XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.min.js XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/header.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/modules.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/navigation.html Added Paths: ----------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/breadcrumb.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.bootstrap,min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.responsive.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/morris.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/timeline.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/breadcrumb.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/breadcrumb.php (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/breadcrumb.php 2015-02-16 14:09:28 UTC (rev 12983) @@ -0,0 +1,115 @@ +<?php +/* + You may not change or alter any portion of this comment or credits + of supporting developers from this source code or any supporting source code + which is considered copyrighted (c) material of the original comment or credit authors. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ + +/** + * BreadCrumb Class + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @author Andricq Nicolas (AKA MusS) + * @package system + * @version $Id: breadcrumb.php 12360 2014-03-08 09:46:59Z beckmi $ + */ + +class SystemBreadcrumb +{ + /* Variables */ + var $_directory; + var $_bread = array(); + var $_help; + var $_tips; + + /** + * @param $directory + */ + function __construct( $directory ) + { + $this->_directory = $directory; + } + + /** + * Add link to breadcrumb + * + */ + function addLink( $title='', $link='', $home=false ) + { + $this->_bread[] = array( + 'link' => $link, + 'title' => $title, + 'home' => $home + ); + } + + /** + * Add Help link + * + */ + function addHelp( $link = '') + { + $this->_help = $link; + } + + /** + * Add Tips + * + */ + function addTips($value) + { + $this->_tips = $value; + } + + /** + * Render System BreadCrumb + * + */ + function render() + { + if (isset($GLOBALS['xoopsTpl'])) { + $GLOBALS['xoopsTpl']->assign('xo_sys_breadcrumb', $this->_bread); + $GLOBALS['xoopsTpl']->assign('xo_sys_help', $this->_help); + if ($this->_tips) { + if (xoops_getModuleOption('usetips', 'system')) { + $GLOBALS['xoopsTpl']->assign('xo_sys_tips', $this->_tips); + } + } + // Call template + if ( file_exists( XOOPS_ROOT_PATH . '/modules/system/language/' . $GLOBALS['xoopsConfig']['language'] . '/help/' . $this->_directory . '.html' ) ) { + $GLOBALS['xoopsTpl']->assign( 'help_content', XOOPS_ROOT_PATH . '/modules/system/language/' . $GLOBALS['xoopsConfig']['language'] . '/help/' . $this->_directory . '.html' ); + } else { + if ( file_exists( XOOPS_ROOT_PATH . '/modules/system/language/english/help/' . $this->_directory . '.html' ) ) { + $GLOBALS['xoopsTpl']->assign( 'help_content', XOOPS_ROOT_PATH.'/modules/system/language/english/help/' . $this->_directory . '.html' ); + } else { + $GLOBALS['xoopsTpl']->assign('load_error', 1); + } + } + } else { + $out = $menu = '<style type="text/css" media="screen">@import ' . XOOPS_URL . '/modules/system/css/menu.css;</style>'; + $out .= '<ul class="breadcrumb">'; + foreach ($this->_bread as $menu) { + if ($menu['home']) { + $out .= '<li><a href="' . $menu['link'] . '" title="' . $menu['title'] . '"><img src="images/home.png" alt="' . $menu['title'] . '" class="home" /></a></li>'; + } else { + if ($menu['link'] != '') { + $out .= '<li><a href="' . $menu['link'] . '" title="' . $menu['title'] . '">' . $menu['title'] . '</a></li>'; + } else { + $out .= '<li>' . $menu['title'] . '</li>'; + } + } + } + $out .= '</ul>'; + if ($this->_tips) { + $out .= '<div class="tips">' . $this->_tips . '</div>'; + } + echo $out; + } + } + +} Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/menu.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/menu.php 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/class/menu.php 2015-02-16 14:09:28 UTC (rev 12983) @@ -178,16 +178,16 @@ } $breadcrumb = $menuItems[$currentoption]; $menuItems[$currentoption] = 'current'; - $menu = "<div id='buttontop_mod'>"; + $menu = "<div id='buttontop'>"; $menu .= "<table class=\"table table-bordered\">\n<tr>"; - $menu .= "<td style='font-size: 12px; text-align: left; color: #2F5376; padding: 0 6px; line-height: 18px;'>"; + $menu .= "<td><ul class=\"nav nav-pills\">"; foreach ($this->_menutop as $k => $v) { - $menu .= " <a href=\"$k\">$v</a> |"; + $menu .= "<li role=\"presentation\"><a href=\"$k\">$v</a>"; } $menu = substr($menu, 0, -1); - $menu .= "</td>"; - $menu .= "<td style='text-align: right;'><strong>" . $this->_obj->getVar( 'name' ) . "</strong> : " . $breadcrumb . "</td>"; + $menu .= "</ul></td>"; + $menu .= "<td style='text-align: right; padding-top: 18px;'><strong>" . $this->_obj->getVar( 'name' ) . "</strong> : " . $breadcrumb . "</td>"; $menu .= "</tr>\n</table>\n"; $menu .= "</div>\n"; $menu .= "<ul class=\"nav nav-tabs\">"; Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.bootstrap,min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.bootstrap,min.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.bootstrap,min.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -0,0 +1,5 @@ +/* + * dateTable Bootstrap minified css file by Txmod Xoops http://www.txmodxoops.org +*/ + +div.dataTables_length label{font-weight:400;text-align:left;white-space:nowrap}div.dataTables_length select{width:75px;display:inline-block}div.dataTables_filter{text-align:right}div.dataTables_filter label{font-weight:400;white-space:nowrap;text-align:left}div.dataTables_filter input{margin-left:.5em;display:inline-block}div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}@media screen and (max-width: 767px){div.dataTables_length,div.dataTables_filter,div.dataTables_info,div.dataTables_paginate{text-align:center}}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}table.dataTable{clear:both;margin-top:6px!important;margin-bottom:6px!important;max-width:none!important}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting{background:url(../assets/img/tables/sort_both.png) no-repeat center right}table.dataTable thead .sorting_asc{background:url(../assets/img/tables/sort_asc.png) no-repeat center right}table.dataTable thead .sorting_desc{background:url(../assets/img/tables/sort_desc.png) no-repeat center right}table.dataTable thead .sorting_asc_disabled{background:url(../assets/img/tables/sort_asc_disabled.png) no-repeat center right}table.dataTable thead .sorting_desc_disabled{background:url(../assets/img/tables/sort_desc_disabled.png) no-repeat center right}table.dataTable thead > tr > th{padding-left:18px;padding-right:18px}table.dataTable th:active{outline:none}div.dataTables_scrollHead table{margin-bottom:0!important;border-bottom-left-radius:0;border-bottom-right-radius:0}div.dataTables_scrollHead table thead tr:last-child th:first-child,div.dataTables_scrollHead table thead tr:last-child td:first-child{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}div.dataTables_scrollBody table{border-top:none;margin-top:0!important;margin-bottom:0!important}div.dataTables_scrollBody tbody tr:first-child th,div.dataTables_scrollBody tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot table{margin-top:0!important;border-top:none}table.table-bordered.dataTable{border-collapse:separate!important}table.table-bordered thead th,table.table-bordered thead td{border-left-width:0;border-top-width:0}table.table-bordered tbody th,table.table-bordered tbody td{border-left-width:0;border-bottom-width:0}table.table-bordered th:last-child,table.table-bordered td:last-child{border-right-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}.table.dataTable tbody tr.active td,.table.dataTable tbody tr.active th{background-color:#08C;color:#fff}.table.dataTable tbody tr.active:hover td,.table.dataTable tbody tr.active:hover th{background-color:#0075b0!important}.table.dataTable tbody tr.active th > a,.table.dataTable tbody tr.active td > a{color:#fff}.table-striped.dataTable tbody tr.active:nth-child(odd) td,.table-striped.dataTable tbody tr.active:nth-child(odd) th{background-color:#017ebc}table.DTTT_selectable tbody tr{cursor:pointer}div.DTTT .btn:hover{text-decoration:none!important}ul.DTTT_dropdown.dropdown-menu{z-index:2003}ul.DTTT_dropdown.dropdown-menu a{color:#333!important}ul.DTTT_dropdown.dropdown-menu li{position:relative}ul.DTTT_dropdown.dropdown-menu li:hover a{background-color:#08c;color:#fff!important}div.DTTT_collection_background{z-index:2002}div.DTTT_print_info{position:fixed;top:50%;left:50%;width:400px;height:150px;margin-left:-200px;margin-top:-75px;text-align:center;color:#333;padding:10px 30px;opacity:.95;background-color:#fff;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.5);box-shadow:0 3px 7px rgba(0,0,0,0.5)}div.DTTT_print_info h6{font-weight:400;font-size:28px;line-height:28px;margin:1em}div.DTTT_print_info p{font-size:14px;line-height:20px}div.dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:60px;margin-left:-50%;margin-top:-25px;padding-top:20px;padding-bottom:20px;text-align:center;font-size:1.2em;background-color:#fff;background:-webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0)),color-stop(25%,rgba(255,255,255,0.9)),color-stop(75%,rgba(255,255,255,0.9)),color-stop(100%,rgba(255,255,255,0)));background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 25%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 25%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 25%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);background:-o-linear-gradient(left,rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 25%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%);background:linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 25%,rgba(255,255,255,0.9) 75%,rgba(255,255,255,0) 100%)}div.DTFC_LeftHeadWrapper table,div.DTFC_LeftFootWrapper table,div.DTFC_RightHeadWrapper table,div.DTFC_RightFootWrapper table,table.DTFC_Cloned tr.even{background-color:#fff;margin-bottom:0}div.DTFC_RightHeadWrapper table,div.DTFC_LeftHeadWrapper table{border-bottom:none!important;margin-bottom:0!important;border-top-right-radius:0!important;border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}div.DTFC_RightBodyWrapper table,div.DTFC_LeftBodyWrapper table{border-top:none;margin:0!important}div.DTFC_RightBodyWrapper tbody tr:first-child th,div.DTFC_RightBodyWrapper tbody tr:first-child td,div.DTFC_LeftBodyWrapper tbody tr:first-child th,div.DTFC_LeftBodyWrapper tbody tr:first-child td{border-top:none}div.DTFC_RightFootWrapper table,div.DTFC_LeftFootWrapper table{border-top:none;margin-top:0!important}div.FixedHeader_Cloned table{margin:0!important} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.responsive.min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.responsive.min.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/dataTables.responsive.min.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -0,0 +1,5 @@ +/* + * dateTable Responsive minified css file by Txmod Xoops http://www.txmodxoops.org +*/ + +table.dataTable.dtr-inline.collapsed tbody td:first-child,table.dataTable.dtr-inline.collapsed tbody th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed tbody td:first-child:before,table.dataTable.dtr-inline.collapsed tbody th:first-child:before{top:8px;left:4px;height:16px;width:16px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:16px;text-align:center;line-height:14px;box-shadow:0 0 3px #444;box-sizing:content-box;content:'+';background-color:#31b131}table.dataTable.dtr-inline.collapsed tbody td:first-child.dataTables_empty:before,table.dataTable.dtr-inline.collapsed tbody th:first-child.dataTables_empty:before{display:none}table.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child:before,table.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed tbody tr.child td:before{display:none}table.dataTable.dtr-column tbody td.control,table.dataTable.dtr-column tbody th.control{position:relative;cursor:pointer}table.dataTable.dtr-column tbody td.control:before,table.dataTable.dtr-column tbody th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:#fff;border:2px solid #fff;border-radius:16px;text-align:center;line-height:14px;box-shadow:0 0 3px #444;box-sizing:content-box;content:'+';background-color:#31b131}table.dataTable.dtr-column tbody tr.parent td.control:before,table.dataTable.dtr-column tbody tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable tr.child{padding:.5em 1em}table.dataTable tr.child:hover{background:transparent!important}table.dataTable tr.child ul{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable tr.child ul li{border-bottom:1px solid #efefef;padding:.5em 0;white-space:nowrap}table.dataTable tr.child ul li:first-child{padding-top:0}table.dataTable tr.child ul li:last-child{border-bottom:none}table.dataTable tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/morris.min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/morris.min.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/morris.min.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -0,0 +1,2 @@ +.morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} +.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/timeline.min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/timeline.min.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/timeline.min.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -0,0 +1,5 @@ +/* + * Timeline minified css file by Txmod Xoops http://www.txmodxoops.org +*/ + +.timeline{position:relative;padding:20px 0;list-style:none}.timeline:before{content:" ";position:absolute;top:0;bottom:0;left:50%;width:3px;margin-left:-1.5px;background-color:#eee}.timeline > li{position:relative;margin-bottom:20px}.timeline > li:before,.timeline > li:after{content:" ";display:table}.timeline > li:after{clear:both}.timeline > li:before,.timeline > li:after{content:" ";display:table}.timeline > li:after{clear:both}.timeline > li > .timeline-panel{float:left;position:relative;width:46%;padding:20px;border:1px solid #d4d4d4;border-radius:2px;-webkit-box-shadow:0 1px 6px rgba(0,0,0,0.175);box-shadow:0 1px 6px rgba(0,0,0,0.175)}.timeline > li > .timeline-panel:before{content:" ";display:inline-block;position:absolute;top:26px;right:-15px;border-top:15px solid transparent;border-right:0 solid #ccc;border-bottom:15px solid transparent;border-left:15px solid #ccc}.timeline > li > .timeline-panel:after{content:" ";display:inline-block;position:absolute;top:27px;right:-14px;border-top:14px solid transparent;border-right:0 solid #fff;border-bottom:14px solid transparent;border-left:14px solid #fff}.timeline > li > .timeline-badge{z-index:100;position:absolute;top:16px;left:50%;width:50px;height:50px;margin-left:-25px;border-radius:50% 50% 50% 50%;text-align:center;font-size:1.4em;line-height:50px;color:#fff;background-color:#999}.timeline > li.timeline-inverted > .timeline-panel{float:right}.timeline > li.timeline-inverted > .timeline-panel:before{right:auto;left:-15px;border-right-width:15px;border-left-width:0}.timeline > li.timeline-inverted > .timeline-panel:after{right:auto;left:-14px;border-right-width:14px;border-left-width:0}.timeline-badge.primary{background-color:#2e6da4!important}.timeline-badge.success{background-color:#3f903f!important}.timeline-badge.warning{background-color:#f0ad4e!important}.timeline-badge.danger{background-color:#d9534f!important}.timeline-badge.info{background-color:#5bc0de!important}.timeline-title{margin-top:0;color:inherit}.timeline-body > p,.timeline-body > ul{margin-bottom:0}.timeline-body > p + p{margin-top:5px}@media(max-width:767px){ul.timeline:before{left:40px}ul.timeline > li > .timeline-panel{width:calc(100% - 90px);width:-moz-calc(100% - 90px);width:-webkit-calc(100% - 90px)}ul.timeline > li > .timeline-badge{top:16px;left:15px;margin-left:0}ul.timeline > li > .timeline-panel{float:right}ul.timeline > li > .timeline-panel:before{right:auto;left:-15px;border-right-width:15px;border-left-width:0}ul.timeline > li > .timeline-panel:after{right:auto;left:-14px;border-right-width:14px;border-left-width:0}} \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -89,8 +89,43 @@ .navbar-top-links .dropdown-user { right: 0; left: auto; + margin-top: 20px; } +.navbar-top-links a.account { + margin-bottom: -20px; + padding: 5px 0 5px 10px; + height: 50px; + line-height: 18px; +} + +.navbar-top-links .avatar { + width: 40px; + float: left; + margin-right: 5px; +} + +.navbar-top-links .avatar > img { + width:40px; + height:40px; + border: 1px solid #F8F8F8; +} + +.navbar-top-links .avatar > img i.fa.fa-caret-down.pull-right { + margin-top: 50px; +} + +.navbar-top-links .user-mini > span { + display: block; + font-size: 12px; + color:#363636; + margin-bottom: -4px; +} +.navbar-top-links .user-mini > span.welcome { + font-weight: bold; + margin-top: 2px; +} + .sidebar .sidebar-nav.navbar-collapse { padding-right: 0; padding-left: 0; @@ -240,27 +275,27 @@ clear: both; } -table.dataTable thead .sorting, -table.dataTable thead .sorting_asc, -table.dataTable thead .sorting_desc, -table.dataTable thead .sorting_asc_disabled, -table.dataTable thead .sorting_desc_disabled { +table.dataTable thead.sorting, +table.dataTable thead.sorting_asc, +table.dataTable thead.sorting_desc, +table.dataTable thead.sorting_asc_disabled, +table.dataTable thead.sorting_desc_disabled { background: 0 0; } -table.dataTable thead .sorting_asc:after { +table.dataTable thead.sorting_asc:after { content: "\f0de"; float: right; font-family: fontawesome; } -table.dataTable thead .sorting_desc:after { +table.dataTable thead.sorting_desc:after { content: "\f0dd"; float: right; font-family: fontawesome; } -table.dataTable thead .sorting:after { +table.dataTable thead.sorting:after { content: "\f0dc"; float: right; font-family: fontawesome; @@ -439,14 +474,27 @@ margin: -5px -15px -15px -15px; } -ul.thumbnails li.module-icon { +ul.thumbnails li.box-icon { display: inline-block; } -ul.thumbnails li.module-icon a.thumbnail { +ul.thumbnails li.box-icon a.thumbnail { padding: 5px; } +ul.list-inline { + list-style-type: none; + margin: -5px -15px -15px -15px; +} + +ul.list-inline li.box-icon { + display: inline-block; +} + +ul.list-inline li.box-icon a.thumbnail { + padding: 5px; +} + .row.row-preferences { margin: 20px 0 0 10px; } \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/css/xnewage.min.css 2015-02-16 14:09:28 UTC (rev 12983) @@ -1,7 +1,7 @@ /*! - * XNewage Bootstrap CPanel Xoops Theme (http://www.txmodxoops.org) + * XNewage Bootstrap Admin Xoops Theme (http://www.txmodxoops.org) * Licensed under the GNU License v2.0. * For details, see http://www.gnu.org/licenses/gpl-3.0.html */ -body{background-color:#f8f8f8}ul.line-type{list-style-type:none;padding:0;margin:0 0 0 15px}#wrapper{width:100%}#page-wrapper{padding:0 15px;min-height:568px;background-color:#fff}@media(min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 250px;padding:0 30px;border-left:1px solid #e7e7e7}}.navbar-top-links{margin-right:0}.navbar-top-links li{display:inline-block}.navbar-top-links li:last-child{margin-right:15px}.navbar-top-links li a{padding:15px;min-height:50px}.navbar-top-links .dropdown-menu li{display:block}.navbar-top-links.dropdown-menu li:last-child{margin-right:0}.navbar-top-links.dropdown-menu li a{padding:3px 20px;min-height:0}.navbar-top-links .dropdown-menu li a div{white-space:normal}.navbar-top-links.dropdown-messages,.navbar-top-links .dropdown-tasks,.navbar-top-links.dropdown-alerts{width:310px;min-width:0}.navbar-top-links .dropdown-messages{margin-left:5px}.navbar-top-links .dropdown-tasks{margin-left:-59px}.navbar-top-links .dropdown-alerts{margin-left:-123px}.navbar-top-links.dropdown-user{right:0;left:auto}.sidebar .sidebar-nav.navbar-collapse{padding-right:0;padding-left:0}.sidebar .sidebar-search{padding:15px}.sidebar ul li{border-bottom:1px solid #e7e7e7}.sidebar ul li a.active{background-color:#eee}.sidebar .arrow{float:right}.sidebar .fa.arrow:before{content:"\f104"}.sidebar .active>a>.fa.arrow:before{content:"\f107"}.sidebar.nav-second-level li,.sidebar.nav-third-level li,.sidebar.nav-fourth-level li{border-bottom:0!important}.sidebar.nav-second-level li a{padding-left:37px}.sidebar .nav-third-level li a{padding-left:52px}.sidebar.nav-fourth-level li a{padding-left:67px}@media(min-width:768px){.sidebar{z-index:1;position:absolute;width:250px;margin-top:51px}.navbar-top-links .dropdown-messages,.navbar-top-links.dropdown-tasks,.navbar-top-links .dropdown-alerts{margin-left:auto}}.btn-outline{color:inherit;background-color:transparent;transition:all .5s}.btn-primary.btn-outline{color:#428bca}.btn-success.btn-outline{color:#5cb85c}.btn-info.btn-outline{color:#5bc0de}.btn-warning.btn-outline{color:#f0ad4e}.btn-danger.btn-outline{color:#d9534f}.btn-primary.btn-outline:hover,.btn-success.btn-outline:hover,.btn-info.btn-outline:hover,.btn-warning.btn-outline:hover,.btn-danger.btn-outline:hover{color:#fff}.chat{margin:0;padding:0;list-style:none}.chat li{margin-bottom:10px;padding-bottom:5px;border-bottom:1px dotted #999}.chat li.left .chat-body{margin-left:60px}.chat li.right .chat-body{margin-right:60px}.chat li.chat-body p{margin:0}.panel.slidedown.glyphicon,.chat.glyphicon{margin-right:5px}.chat-panel.panel-body{height:350px;overflow-y:scroll}.login-panel{margin-top:25%}.flot-chart{display:block;height:400px}.flot-chart-content{width:100%;height:100%}.dataTables_wrapper{position:relative;clear:both}table.dataTable thead.sorting,table.dataTable thead.sorting_asc,table.dataTable thead.sorting_desc,table.dataTable thead.sorting_asc_disabled,table.dataTable thead.sorting_desc_disabled{background:0 0}table.dataTable thead.sorting_asc:after{content:"\f0de";float:right;font-family:fontawesome}table.dataTable thead.sorting_desc:after{content:"\f0dd";float:right;font-family:fontawesome}table.dataTable thead.sorting:after{content:"\f0dc";float:right;font-family:fontawesome;color:rgba(50,50,50,.5)}.btn-circle{width:30px;height:30px;padding:6px 0;border-radius:15px;text-align:center;font-size:12px;line-height:1.428571429}.btn-circle.btn-lg{width:50px;height:50px;padding:10px 16px;border-radius:25px;font-size:18px;line-height:1.33}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 16px;border-radius:35px;font-size:24px;line-height:1.33}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;border:1px solid #ddd;background-color:#eee!important}.show-grid{margin:15px 0}.huge{font-size:40px}.panel-green{border-color:#5cb85c}.panel-green .panel-heading{border-color:#5cb85c;color:#fff;background-color:#5cb85c}.panel-green a{color:#5cb85c}.panel-green a:hover{color:#3d8b3d}.panel-red{border-color:#d9534f}.panel-red.panel-heading{border-color:#d9534f;color:#fff;background-color:#d9534f}.panel-red a{color:#d9534f}.panel-red a:hover{color:#b52b27}.panel-yellow{border-color:#f0ad4e}.panel-yellow.panel-heading{border-color:#f0ad4e;color:#fff;background-color:#f0ad4e}.panel-yellow a{color:#f0ad4e}.panel-yellow a:hover{color:#df8a13}#accordion{border:1px solid #f5f5f5;background-color:#f0f0f0;color:#333;width:100%;box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-moz-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-webkit-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-khtml-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset}#accordion h5{padding:5px 10px;cursor:pointer;position:relative;margin:1px;background:inherit!important;color:#000;border:1px solid #FFF;font-weight:700}#accordion h5.current{cursor:default;background-color:#f7f7f7}#accordion .pane{display:none;padding:10px;font-size:12px;line-height:120%}.xgiftshop{text-align:center!important}#xokeytitle{padding:2px;font-size:13px;font-weight:700;color:#333}#xokeynumber{text-align:center;padding-top:5px;padding-bottom:5px;font-size:13px;font-weight:700;color:#92EF2C}#xolicenses{padding:5px 18px!important}#xolicenses a{color:#45C5DF}#xolicenses a:hover{color:red;text-decoration:none}ul.thumbnails{list-style-type:none;margin:-5px -15px -15px}ul.thumbnails li.box-icon{display:inline-block}ul.thumbnails li.box-icon a.thumbnail{padding:5px}ul.list-inline{list-style-type:none;margin:-5px -15px -15px}ul.list-inline li.box-icon{display:inline-block}ul.list-inline li.box-icon a.thumbnail{padding:5px}.row.row-preferences{margin: 20px 0 0 10px;} \ No newline at end of file +body{background-color:#f8f8f8}ul.line-type{list-style-type:none;padding:0;margin:0 0 0 15px}#wrapper{width:100%}#page-wrapper{padding:0 15px;min-height:568px;background-color:#fff}@media(min-width:768px){#page-wrapper{position:inherit;margin:0 0 0 250px;padding:0 30px;border-left:1px solid #e7e7e7}}.navbar-top-links{margin-right:0}.navbar-top-links li{display:inline-block}.navbar-top-links li:last-child{margin-right:15px}.navbar-top-links li a{padding:15px;min-height:50px}.navbar-top-links.dropdown-menu li{display:block}.navbar-top-links.dropdown-menu li:last-child{margin-right:0}.navbar-top-links.dropdown-menu li a{padding:3px 20px;min-height:0}.navbar-top-links.dropdown-menu li a div{white-space:normal}.navbar-top-links.dropdown-messages,.navbar-top-links.dropdown-tasks,.navbar-top-links.dropdown-alerts{width:310px;min-width:0}.navbar-top-links.dropdown-messages{margin-left:5px}.navbar-top-links.dropdown-tasks{margin-left:-59px}.navbar-top-links.dropdown-alerts{margin-left:-123px}.navbar-top-links.dropdown-user{right:0;left:auto;margin-top:20px}.navbar-top-links a.account{margin-bottom:-20px;padding:5px 0 5px 10px;height:50px;line-height:18px}.navbar-top-links.avatar{width:40px;float:left;margin-right:5px}.navbar-top-links.avatar > img{width:40px;height:40px;border:1px solid #F8F8F8}.navbar-top-links.avatar > img i.fa.fa-caret-down.pull-right{margin-top:50px}.navbar-top-links.user-mini > span{display:block;font-size:12px;color:#363636;margin-bottom:-4px}.navbar-top-links.user-mini > span.welcome{font-weight:700;margin-top:2px}.sidebar.sidebar-nav.navbar-collapse{padding-right:0;padding-left:0}.sidebar.sidebar-search{padding:15px}.sidebar ul li{border-bottom:1px solid #e7e7e7}.sidebar ul li a.active{background-color:#eee}.sidebar.arrow{float:right}.sidebar.fa.arrow:before{content:"\f104"}.sidebar.active>a>.fa.arrow:before{content:"\f107"}.sidebar.nav-second-level li,.sidebar.nav-third-level li,.sidebar.nav-fourth-level li{border-bottom:0!important}.sidebar.nav-second-level li a{padding-left:37px}.sidebar.nav-third-level li a{padding-left:52px}.sidebar.nav-fourth-level li a{padding-left:67px}@media(min-width:768px){.sidebar{z-index:1;position:absolute;width:250px;margin-top:51px}.navbar-top-links.dropdown-messages,.navbar-top-links.dropdown-tasks,.navbar-top-links.dropdown-alerts{margin-left:auto}}.btn-outline{color:inherit;background-color:transparent;transition:all.5s}.btn-primary.btn-outline{color:#428bca}.btn-success.btn-outline{color:#5cb85c}.btn-info.btn-outline{color:#5bc0de}.btn-warning.btn-outline{color:#f0ad4e}.btn-danger.btn-outline{color:#d9534f}.btn-primary.btn-outline:hover,.btn-success.btn-outline:hover,.btn-info.btn-outline:hover,.btn-warning.btn-outline:hover,.btn-danger.btn-outline:hover{color:#fff}.chat{margin:0;padding:0;list-style:none}.chat li{margin-bottom:10px;padding-bottom:5px;border-bottom:1px dotted #999}.chat li.left.chat-body{margin-left:60px}.chat li.right.chat-body{margin-right:60px}.chat li.chat-body p{margin:0}.panel.slidedown.glyphicon,.chat.glyphicon{margin-right:5px}.chat-panel.panel-body{height:350px;overflow-y:scroll}.login-panel{margin-top:25%}.flot-chart{display:block;height:400px}.flot-chart-content{width:100%;height:100%}.dataTables_wrapper{position:relative;clear:both}table.dataTable thead.sorting,table.dataTable thead.sorting_asc,table.dataTable thead.sorting_desc,table.dataTable thead.sorting_asc_disabled,table.dataTable thead.sorting_desc_disabled{background:0 0}table.dataTable thead.sorting_asc:after{content:"\f0de";float:right;font-family:fontawesome}table.dataTable thead.sorting_desc:after{content:"\f0dd";float:right;font-family:fontawesome}table.dataTable thead.sorting:after{content:"\f0dc";float:right;font-family:fontawesome;color:rgba(50,50,50,.5)}.btn-circle{width:30px;height:30px;padding:6px 0;border-radius:15px;text-align:center;font-size:12px;line-height:1.428571429}.btn-circle.btn-lg{width:50px;height:50px;padding:10px 16px;border-radius:25px;font-size:18px;line-height:1.33}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 16px;border-radius:35px;font-size:24px;line-height:1.33}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;border:1px solid #ddd;background-color:#eee!important}.show-grid{margin:15px 0}.huge{font-size:40px}.panel-green{border-color:#5cb85c}.panel-green.panel-heading{border-color:#5cb85c;color:#fff;background-color:#5cb85c}.panel-green a{color:#5cb85c}.panel-green a:hover{color:#3d8b3d}.panel-red{border-color:#d9534f}.panel-red.panel-heading{border-color:#d9534f;color:#fff;background-color:#d9534f}.panel-red a{color:#d9534f}.panel-red a:hover{color:#b52b27}.panel-yellow{border-color:#f0ad4e}.panel-yellow.panel-heading{border-color:#f0ad4e;color:#fff;background-color:#f0ad4e}.panel-yellow a{color:#f0ad4e}.panel-yellow a:hover{color:#df8a13}#accordion{border:1px solid #f5f5f5;background-color:#f0f0f0;color:#333;width:100%;box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-moz-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-webkit-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset;-khtml-box-shadow:0 20px 10px -10px rgba(255,255,255,0.3) inset}#accordion h5{padding:5px 10px;cursor:pointer;position:relative;margin:1px;background:inherit!important;color:#000;border:1px solid #FFF;font-weight:700}#accordion h5.current{cursor:default;background-color:#f7f7f7}#accordion.pane{display:none;padding:10px;font-size:12px;line-height:120%}.xgiftshop{text-align:center!important}#xokeytitle{padding:2px;font-size:13px;font-weight:700;color:#333}#xokeynumber{text-align:center;padding-top:5px;padding-bottom:5px;font-size:13px;font-weight:700;color:#92EF2C}#xolicenses{padding:5px 18px!important}#xolicenses a{color:#45C5DF}#xolicenses a:hover{color:red;text-decoration:none}ul.thumbnails{list-style-type:none;margin:-5px -15px -15px}ul.thumbnails li.box-icon{display:inline-block}ul.thumbnails li.box-icon a.thumbnail{padding:5px}ul.list-inline{list-style-type:none;margin:-5px -15px -15px}ul.list-inline li.box-icon{display:inline-block}ul.list-inline li.box-icon a.thumbnail{padding:5px}.row.row-preferences{margin:20px 0 0 10px} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg =================================================================== (Binary files differ) Index: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg 2015-02-16 14:09:28 UTC (rev 12983) Property changes on: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/img/avatar.jpg ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.js =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.js 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.js 2015-02-16 14:09:28 UTC (rev 12983) @@ -1,6 +1,8 @@ //Load Metis Menu $(function() { - $('#side-menu').metisMenu(); + $('#side-menu').metisMenu({ + doubleTapToGo: true + }); }); //Loads the correct sidebar on window load, @@ -28,7 +30,7 @@ var url = window.location; var element = $('ul.nav a').filter(function() { return this.href == url || url.href.indexOf(this.href) == 0; - }).addClass('active').parent().parent().parent().addClass('in').parent(); + }).addClass('active').parent().addClass('in').parent(); if (element.is('li')) { element.addClass('active'); } @@ -57,3 +59,10 @@ responsive: true }); }); +// perform Bootstrap tab +$(function() { + $('li a:first').click(function (e) { + e.preventDefault(), + $(this).tab('show') + }); +}); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.min.js =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.min.js 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/assets/js/xnewage.min.js 2015-02-16 14:09:28 UTC (rev 12983) @@ -2,4 +2,4 @@ // By Timgno (http://www.txmodxoops.org) // GNU Licenze // -$(function(){$("#side-menu").metisMenu()}),$(function(){$(window).bind("load resize",function(){topOffset=50,width=this.window.innerWidth>0?this.window.innerWidth:this.screen.width,width<768?($("div.sidebar-nav.navbar-collapse").addClass("collapse"),topOffset=150):$("div.sidebar-nav.navbar-collapse").removeClass("collapse"),height=(this.window.innerHeight>0?this.window.innerHeight:this.screen.height)-1,height-=topOffset,height<1&&(height=1),height>topOffset&&$("#page-wrapper").css("min-height",height+"px")});var i=window.location,e=$("ul.nav a").filter(function(){return this.href==i||0==i.href.indexOf(this.href)}).addClass("active").parent().parent().parent().addClass("in").parent();e.is("li")&&e.addClass("active")}),$(function(){$("#accordion > h5").bind("click",function(){$(".pane").slideUp("fast"),$(this).hasClass("current")?$(this).removeClass("current"):($("#accordion > h5").removeClass("current"),$(this).addClass("current"),$(this).next().slideDown("fast"))})}),$(function(){$("ul.tabs").tabs("div.panes > div")}),$(function(){$("#dataTables").DataTable({responsive:!0})}); \ No newline at end of file +$(function(){$("#side-menu").metisMenu({doubleTapToGo: true})}),$(function(){$(window).bind("load resize",function(){topOffset=50,width=this.window.innerWidth>0?this.window.innerWidth:this.screen.width,width<768?($("div.sidebar-nav.navbar-collapse").addClass("collapse"),topOffset=150):$("div.sidebar-nav.navbar-collapse").removeClass("collapse"),height=(this.window.innerHeight>0?this.window.innerHeight:this.screen.height)-1,height-=topOffset,height<1&&(height=1),height>topOffset&&$("#page-wrapper").css("min-height",height+"px")});var i=window.location,e=$("ul.nav a").filter(function(){return this.href==i||0==i.href.indexOf(this.href)}).addClass("active").parent().parent().parent().addClass("in").parent();e.is("li")&&e.addClass("active")}),$(function(){$("#accordion > h5").bind("click",function(){$(".pane").slideUp("fast"),$(this).hasClass("current")?$(this).removeClass("current"):($("#accordion > h5").removeClass("current"),$(this).addClass("current"),$(this).next().slideDown("fast"))})}),$(function(){$("ul.tabs").tabs("div.panes > div")}),$(function(){$("#dataTables").DataTable({responsive:!0})});$(function(){$('li a:first').click(function(e){e.preventDefault(),$(this).tab('show')});}); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/header.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/header.html 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/header.html 2015-02-16 14:09:28 UTC (rev 12983) @@ -75,8 +75,15 @@ </li> <{* /.dropdown *}> <li class="dropdown"> - <a class="dropdown-toggle" data-toggle="dropdown" href="#"> - <i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i> + <a href="#" class="dropdown-toggle account" data-toggle="dropdown"> + <div class="avatar"> + <img src="<{xoImgUrl assets/img/avatar.jpg}>" class="img-rounded" alt="avatar" /> + </div> + <i class="fa fa-caret-down pull-right"></i> + <div class="user-mini pull-right"> + <span class="welcome">Welcome,</span> + <span>Admin</span> + </div> </a> <ul class="dropdown-menu dropdown-user"> <li><a href="<{xoAppUrl modules/profile/admin/user.php}>"><i class="fa fa-user fa-fw"></i> User Profile</a></li> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/modules.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/modules.html 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/modules.html 2015-02-16 14:09:28 UTC (rev 12983) @@ -1,6 +1,6 @@ <ul class="thumbnails"> <{foreach item=mod from=$modules}> - <li class="module-icon text-center"><a class="thumbnail" href="<{$mod.link}>" title="<{$mod.title}> - <{$mod.description}>"> + <li class="box-icon text-center"><a class="thumbnail" href="<{$mod.link}>" title="<{$mod.title}> - <{$mod.description}>"> <img src='<{$mod.icon|default:"$theme_img/modules.png"}>' alt="<{$mod.title}>" /> <{* <span><{$mod.title}></span> *}> </a></li> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/navigation.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/navigation.html 2015-02-16 08:00:36 UTC (rev 12982) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/xnewage/xotpl/navigation.html 2015-02-16 14:09:28 UTC (rev 12983) @@ -6,9 +6,7 @@ <div class="input-group custom-search-form"> <input type="text" class="form-control" placeholder="Search..."> <span class="input-group-btn"> - <button class="btn btn-default" type="button"> - <i class="fa fa-search"></i> - </button> + <button class="btn btn-default" type="button"><i class="fa fa-search"></i></button> </span> </div> </form> @@ -18,16 +16,16 @@ <a href="<{xoAppUrl admin.php}>"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a> </li> <li class="dropdown-first-menu"> - <a href="#"><i class="fa fa-sitemap fa-fw"></i> Dropdown Menu<span class="fa arrow"></span></a> + <a href="#" class="dropdown-toggle"><i class="fa fa-sitemap fa-fw"></i> Dropdown Menu<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <{foreach item=item from=$navitems}> <li class="dropdown-second-menu"> - <a href="<{$item.link}>"><{$item.text}> <span class="fa arrow"></a> + <a href="<{$item.link}>" class="dropdown-toggle"><{$item.text}> <span class="fa arrow"></a> <ul class="nav nav-third-level"> <{foreach item=sub from=$item.menu}> <li class="dropdown-third-menu"> <{if $sub.options != 0}> - <a class="sub" href="<{$sub.link}>" title="<{$sub.title}>"><{$sub.title}> <span class="fa arrow"></a> + <a class="dropdown-toggle" href="<{$sub.link}>" title="<{$sub.title}>"><{$sub.title}> <span class="fa arrow"></a> <ul class="nav nav-fourth-level"> <{foreach item=option from=$sub.options}> <li class="dropdown-fourth-menu"><a href="<{$sub.url}><{$option.link}>"><{$option.title}></a></li> |
From: <txm...@us...> - 2015-02-16 22:27:34
|
Revision: 12987 http://sourceforge.net/p/xoops/svn/12987 Author: txmodxoops Date: 2015-02-16 22:27:26 +0000 (Mon, 16 Feb 2015) Log Message: ----------- Pagination with bootstrap 3.3.2 in ul tag and not in div tag Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_pagenav.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/system_pagenav.html Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php 2015-02-16 19:20:02 UTC (rev 12986) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/admin/users/main.php 2015-02-16 22:27:26 UTC (rev 12987) @@ -47,6 +47,8 @@ $xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/admin.css'); $xoTheme->addStylesheet( XOOPS_URL . '/modules/system/css/ui/' . xoops_getModuleOption('jquery_theme', 'system') . '/ui.all.css'); // Define scripts +$xoTheme->addScript('browse.php?Frameworks/jquery/jquery.min.js'); +$xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery-ui.min.js'); $xoTheme->addScript('modules/system/js/admin.js'); // Define Breadcrumb and tips $xoBreadCrumb->addLink( _AM_SYSTEM_USERS_NAV_MAIN, system_adminVersion('users', 'adminpath') ); @@ -321,11 +323,11 @@ default: // Search and Display // Define scripts - $xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js'); - $xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.ui.js'); + //$xoTheme->addScript('browse.php?Frameworks/jquery/jquery.js'); + //$xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.ui.js'); //table sorting does not work with select boxes //$xoTheme->addScript('browse.php?Frameworks/jquery/plugins/jquery.tablesorter.js'); - $xoTheme->addScript('modules/system/js/admin.js'); + //$xoTheme->addScript('modules/system/js/admin.js'); //Recherche approfondie if (isset($_REQUEST['complet_search'])) { Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_pagenav.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_pagenav.html 2015-02-16 19:20:02 UTC (rev 12986) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_pagenav.html 2015-02-16 22:27:26 UTC (rev 12987) @@ -1,6 +1,6 @@ <{if $pagination_nav}> -<div class="pagination<{$size}><{$align}>"> - <ul> +<div class="pull-right"> + <ul class="pagination"> <{if $prev_text}> <li class="previous"><a href="<{$prev_url}>"><{$prev_text}></a></li> <{/if}> @@ -26,7 +26,7 @@ </div> <{/if}> <{if $pagination_select}> -<div class="pagination<{$align}>"> +<div class="pull-right"> <form class="form-inline" action="" name="pagenavform"> <{if $showbutton == 1}> <div class="input-append"> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/system_pagenav.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/system_pagenav.html 2015-02-16 19:20:02 UTC (rev 12986) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/system_pagenav.html 2015-02-16 22:27:26 UTC (rev 12987) @@ -1,6 +1,6 @@ <{if $pagination_nav}> -<div class="pagination<{$size}><{$align}>"> - <ul> +<div class="pull-right"> + <ul class="pagination"> <{if $prev_text}> <li class="previous"><a href="<{$prev_url}>"><{$prev_text}></a></li> <{/if}> @@ -26,7 +26,7 @@ </div> <{/if}> <{if $pagination_select}> -<div class="pagination<{$align}>"> +<div class="pull-right"> <form class="form-inline" action="" name="pagenavform"> <{if $showbutton == 1}> <div class="input-append"> |
From: <txm...@us...> - 2015-03-08 21:24:23
|
Revision: 13014 http://sourceforge.net/p/xoops/svn/13014 Author: txmodxoops Date: 2015-03-08 21:24:18 +0000 (Sun, 08 Mar 2015) Log Message: ----------- Added more jquery ui themes Added Paths: ----------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/admin.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/button.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/csscolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/docs.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/jscolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/phpcolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sparqlcolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sqlcolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/xmlcolors.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/help.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/imagemanager.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/lightbox.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/menu.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_flat_0_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_flat_75_ffffff_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_glass_55_fbf9ee_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_glass_65_ffffff_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_glass_75_dadada_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_glass_75_e6e6e6_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_glass_95_fef1ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-icons_222222_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-icons_2e83ff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-icons_454545_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-icons_888888_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/images/ui-icons_cd0a0a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.accordion.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.autocomplete.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.base.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.button.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.core.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.datepicker.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.dialog.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.menu.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.progressbar.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.resizable.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.selectable.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.slider.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.spinner.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.tabs.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/jquery.ui.tooltip.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_flat_75_ffffff_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_glass_65_ffffff_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_glass_75_dadada_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-icons_222222_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-icons_2e83ff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-icons_454545_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-icons_888888_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/images/ui-icons_cd0a0a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.accordion.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.autocomplete.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.button.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.core.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.datepicker.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.dialog.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.menu.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.progressbar.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.resizable.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.selectable.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.slider.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.spinner.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.tabs.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.theme.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/jquery.ui.tooltip.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/minified/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/base/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_glass_50_3baae3_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-icons_2694e8_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-icons_2e83ff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-icons_3d80b3_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-icons_72a7cf_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/images/ui-icons_ffffff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/cupertino/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_flat_55_fbec88_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_glass_85_dfeffc_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_glass_95_fef1ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_217bc0_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_2e83ff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_469bdd_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_6da8d5_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_cd0a0a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_d8e7f3_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/images/ui-icons_f9bd01_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/redmond/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_flat_75_ffffff_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_glass_65_ffffff_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_glass_75_dadada_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-icons_222222_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-icons_2e83ff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-icons_454545_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-icons_888888_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/images/ui-icons_cd0a0a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/jquery-ui.structure.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/jquery-ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/jquery-ui.structure.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/jquery-ui.theme.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/minified/ui.all.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/smoothness/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_glass_55_fcf0ba_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_gloss-wave_100_ece8da_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-hard_15_459e00_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-hard_95_cccccc_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-soft_25_67b021_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_highlight-soft_95_ffedad_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-bg_inset-soft_15_2b2922_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_808080_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_847e71_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_8dc262_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_cd0a0a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_eeeeee_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/images/ui-icons_ffffff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/south-street/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_flat_55_999999_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_flat_75_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_glass_45_0078ae_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_glass_55_f8da4e_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_glass_75_79c9ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_0078ae_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_056b93_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_d8e7f3_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_e0fdff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_f5e175_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_f7a50d_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/images/ui-icons_fcd113_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/jquery-ui.structure.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/jquery-ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/jquery-ui.structure.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/jquery-ui.theme.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/minified/ui.all.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/start/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_flat_30_cccccc_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_flat_55_999999_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_flat_75_aaaaaa_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_glass_45_0078ae_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_glass_55_f8da4e_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_glass_75_79c9ec_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_45_e14f1c_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_50_6eac2c_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_75_2191c0_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_inset-hard_100_fcfdfd_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_0078ae_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_056b93_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_3d3d3d_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_bd7b00_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_d19405_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_d8e7f3_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_e0fdff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_eb990f_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_ed9f26_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_f5e175_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_f7a50d_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_fadc7a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_fcd113_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/images/ui-icons_ffe180_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/jquery-ui.structure.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/jquery-ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/jquery-ui.structure.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/jquery-ui.theme.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/minified/ui.all.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/sunny/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_glass_20_555555_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-icons_222222_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-icons_4b8e0b_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-icons_a83300_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-icons_cccccc_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/images/ui-icons_ffffff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/jquery-ui.min.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-darkness/ui.all.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/animated-overlay.gif XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-icons_222222_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-icons_228ef1_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-icons_ef8c08_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-icons_ffd27a_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/images/ui-icons_ffffff_256x240.png XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/index.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/jquery-ui.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/jquery.ui.theme.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/ui/ui-lightness/ui.all.css Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/admin.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/admin.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/admin.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,256 @@ +@import url(button.css); +@import url(help.css); + +a {outline:none} + +table {width:100%;} +form {margin:0;padding:0;} + +.xo-imgmini { width:16px; height:16px;} +/* Pagenav */ +.xo-pagenav {height: 20px;} +/* Breadcrumb navigation */ +#xo-breadcrumb { + font: 11px Arial, Helvetica, sans-serif; + background-repeat:repeat-x; + height:30px; + line-height:30px; + color:#9b9b9b; + border:solid 1px #cacaca; + width:100%; + overflow:hidden; + margin:0; + padding:0; +} +#xo-breadcrumb li { + list-style-type:none; + float:left; + padding-left:10px; +} +#xo-breadcrumb a { + height:30px; + display:block; + background-repeat:no-repeat; + background-position:right; + padding-right: 15px; + text-decoration: none; + color:#454545; +} +#xo-breadcrumb a:hover {color:#35acc5;} +#xo-breadcrumb .home { border:none; margin: 8px 0;} +#xo-breadcrumb .xo-help { float:right;} +#xo-breadcrumb .xo-help img { + padding:4px 0; + width:22px; + height:22px; +} +#xo-breadcrumb .xo-help a { + height:30px; + display:block; + background-repeat:no-repeat; + background-position:left; + padding: 0 10px 0 15px; + text-decoration: none; + color:#454545; +} +/* Images & Avatars */ +.xo-thumb { + border-top:1px solid #ccc; + border-left:1px solid #ccc; + border-bottom:1px solid #aaa; + border-right:1px solid #aaa; + position:relative; + width:150px; + height:150px; + margin:10px; + padding:6px; + background-color:#fff; +} +.xo-thumb img { border:0;} +.xo-thumbimg { height: 120px;} +/* Blocks Administration */ +#xo-block-managment td { + vertical-align: top; + padding: 0 5px; + width: 220px; +} +#xo-leftcolumn, #xo-rightcolumn { + vertical-align: top; + width: 200px; + padding: 5px; +} +#xo-centercolumn { + vertical-align: top; + background: #f1f1f1; + margin: 0; +} +/* Block drag class */ +.ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; } +.ui-sortable-placeholder * { visibility: hidden; } +/* Blocs filter */ +.xo-blocksfilter .xo-img { float: left;} +.xo-blocksfilter .xo-caption { float: left; padding: 2px 2px 0 2px;} +.xo-blocksfilter .xo-element { float: left; padding: 1px 10px 0 2px;} +/* Block */ +.xo-block { + margin: 5px; + border: 1px solid #ccc; + background-color: #f9f9f9; +} +.xo-block .xo-blocktitle { + padding: 2px; + margin: 1px; + background: #ccc; + font-weight: bold; + cursor: move; +} +.xo-block .xo-blockaction { padding: 2px; text-align: right;} +.xo-block .xo-blockaction img { + width: 16px; + height: 16px; + padding: 2px; +} +.xo-blocksection { + vertical-align: top; + height: 100px; + background: #fff; + border: 1px dashed #666; +} +.xo-blocksection .xo-title { + font-weight:bold; + padding: 2px; + border-bottom: 1px dashed #666; +} +#xo-tabs {} +.xo-blockhide .xo-block { + margin: 5px; + border: 1px solid #ccc; + background-color: #f9f9f9; + width:180px; + float:left; +} +/* Modules */ +.xo-module-header { padding: 5px;} +ul.xo-log-success li { list-style-image: url('../images/yes.png');} +.xo-module-header h4 { margin: 0; border-bottom: dashed 1px #000;} +#xo-module-log { padding: 5px;} +#xo-module-log h4 { margin: 0; border-bottom: dashed 1px #000;} +#xo-module-log .logger { + padding: 0 .5em; + margin: 5px; + min-height: 200px; + height: 350px; + width: 600px; + overflow: auto; + background-color: #fdfdfd; + border: 1px dashed #666; +} +.xo-moduleinfos li {list-style: none;} +/* Settings */ +.xo-catsetting a { + display: block; + float: left; + height: 110px; + width: 110px; + vertical-align: middle; + text-decoration: none; + padding: 2px; + margin: 3px; +} +.xo-catsetting img { margin: 8px 25px 0; text-align:center;} +.xo-catsetting span { + font-weight: bold; + display: block; + text-align:center; +} +#display_post #xo-logger-output { display:none;} +/* Templates */ +#fileTree #xo-logger-output, #display_contenu #xo-logger-output, +.display_file #xo-logger-output, .edit_file #xo-logger-output, .upload_file #xo-logger-output { display: none;} +.upload_file table.outer { border:none;} +.upload_file table.outer th { display:none;} +.display_folder_left{float: left;margin: 15px 2px 0 5px;} + +.display_folder_right{ + float: left; + margin: 15px 10px 0 5px; + width: 65%; +} +.display_folder { + width: 200px; + height: 400px; + border-top: solid 1px #BBB; + border-left: solid 1px #BBB; + border-bottom: solid 1px #FFF; + border-right: solid 1px #FFF; + background: #FFF; + overflow: scroll; + padding: 3px; +} +.display_file{ margin: 15px 10px 0 5px;} +.display_contenu {width: 400px;} +ul.jqueryFileTree { + font-family: Verdana, sans-serif; + font-size: 11px; + line-height: 18px; + padding: 0; + margin: 0; +} +ul.jqueryFileTree li { + list-style: none; + padding: 0; + padding-left: 20px; + margin: 0; + white-space: nowrap; +} +ul.jqueryFileTree a { + color: #333; + text-decoration: none; + display: block; + padding: 0 2px; +} +ul.jqueryFileTree a:hover {background: #BDF;} +/* Core Styles */ +.expanded { +letter-spacing:0.5em; +} +.jqueryFileTree LI.directory { background: url(../images/mimetypes/folder.png) left top no-repeat; } +.jqueryFileTree LI.expanded { letter-spacing:0; background: url(../images/mimetypes/folder_open.png) left top no-repeat; } +.jqueryFileTree LI.file { background: url(../images/mimetypes/empty.png) left top no-repeat; } +.jqueryFileTree LI.wait { background: url(../images/mimetypes/spinner.gif) left top no-repeat; } +/* File Extensions*/ +.jqueryFileTree LI.ext_css { background: url(../images/mimetypes/css.png) left top no-repeat; } +.jqueryFileTree LI.ext_htm { background: url(../images/mimetypes/html.png) left top no-repeat; } +.jqueryFileTree LI.ext_html { background: url(../images/mimetypes/html.png) left top no-repeat; } + +.ui-corner-all { -moz-border-radius: 5px; -webkit-border-radius: 5px; } +/*==================== tooltip =========================*/ +#tooltip { + position: absolute; + border: 1px solid #A4C3EF; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + -khtml-border-radius: 3px; + background: #D2E2F9; + padding: 10px; + color: #333; + display: none; + box-shadow: 3px 2px 3px rgba(0,0,0,0.5); + -moz-box-shadow: 3px 2px 3px rgba(0,0,0,0.5); + -webkit-box-shadow: 3px 2px 3px rgba(0,0,0,0.5); + -khtml-box-shadow: 3px 2px 3px rgba(0,0,0,0.5); + opacity: 0.8; + filter: alpha(opacity = 80); + -moz-opacity: 0.8; + -webkit-opacity: 0.8; + -khtml-opacity: 0.8; +} +/* ===== Redirect messages ===== */ +.errorMsg,.confirmMsg, .resultMsg { padding: .8em; text-align:center; margin-bottom: 1em; border: 2px solid #ddd;} +.errorMsg { background-color: #FBE3E4; color: #D12F19; border-color: #FBC2C4; } +.confirmMsg { background-color: #FFF6BF; color: #817134; border-color: #FFD324; } +.resultMsg { background-color: #E6EFC2; color: #529214; border-color: #C6D880; } +.errorMsg a { background-color: transparent; color: #D12F19; } +.confirmMsg a { background-color: transparent; color: #817134; } +.successMsg a { background-color: transparent; color: #529214; } \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/button.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/button.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/button.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,53 @@ +/* Buttons style */ +.xo-buttons a, .xo-buttons button{ + display:block; + float:left; + margin:0 5px 0 0; + background: #e4e4e5 url(../images/bg_button.gif) repeat-x; + border:1px solid #d6d6d6; + border-top:1px solid #dedede; + border-left:1px solid #dedede; + font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif; + font-size:1em; + line-height:1.1em; + text-decoration:none; + font-weight:bold; + color:#454545; + cursor:pointer; + padding:3px 8px 3px 5px; /* Links */ +} +.xo-buttons a:hover, .xo-buttons button:hover { + border:1px solid #ccc; + border-top:1px solid #d6d6d6; + border-left:1px solid #d6d6d6; +} +.xo-buttons button{ + width:auto; + overflow:visible; + padding:3px 8px 4px 5px; /* IE6 */ +} +.xo-buttons button[type]{ + padding:3px 5px 4px 5px; /* Firefox */ + line-height:15px; /* Safari */ +} +*:first-child+html button[type]{ padding:3px 8px 4px 5px; /* IE7 */} +.xo-buttons button img, .xo-buttons a img{ + margin:0 3px -3px 0 !important; + padding:0; + border:none; + width:16px; + height:16px; +} +.xo-actions button img, .xo-actions a img, .xo-actions img { + padding:0 2px; + border:none; + width:16px; + height:16px; + cursor:pointer; +} +.xo-btn-actions { + padding: 2px; + margin: 1px 0; + background: #fff url(../images/bg_button.gif) repeat-x bottom; + border: 1px solid #ccc; +} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/csscolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/csscolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/csscolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,47 @@ +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; + color: black; +} + +pre.code, .editbox { + color: #666666; +} + +.editbox p { + margin: 0; +} + +span.css-at { + color: #770088; +} + +span.css-unit { + color: #228811; +} + +span.css-value { + color: #770088; +} + +span.css-identifier { + color: black; +} + +span.css-important { + color: #0000FF; +} + +span.css-colorcode { + color: #004499; +} + +span.css-comment { + color: #AA7700; +} + +span.css-string { + color: #AA2222; +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/docs.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/docs.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/docs.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,42 @@ +.underline { + border-bottom: 3px solid #C44; +} + +p.rel { + padding-left: 2em; + text-indent: -2em; +} + +div.border { + border: 1px solid black; + padding: 3px; +} + +code { + font-size: 90%; + color: #144; +} + +pre.code { + margin: 1.1em 12px; + border: 1px solid #CCCCCC; + color: black; + padding: .4em; +} + +.warn { + color: #C00; +} + +.codemirror-iframe { + background: transparent; + color: black; +} + +.CodeMirror-line-numbers { + font-size: 10pt; + margin: 0.4em; + padding-right: 0.4em; + text-align: right; + background: #FAF0E6; +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/index.html 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/jscolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/jscolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/jscolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,55 @@ +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; + color: black; +} + +pre.code, .editbox { + color: #666666; +} + +.editbox p { + margin: 0; +} + +span.js-punctuation { + color: #666666; +} + +span.js-operator { + color: #666666; +} + +span.js-keyword { + color: #770088; +} + +span.js-atom { + color: #228811; +} + +span.js-variable { + color: black; +} + +span.js-variabledef { + color: #0000FF; +} + +span.js-localvariable { + color: #004499; +} + +span.js-property { + color: black; +} + +span.js-comment { + color: #AA7700; +} + +span.js-string { + color: #AA2222; +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/phpcolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/phpcolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/phpcolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,114 @@ +/* +Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved. +The copyrights embodied in the content of this file are licensed by +Yahoo! Inc. under the BSD (revised) open source license + +@author Dan Vlad Dascalescu <da...@ya...> +*/ + +html { + cursor: text; +} + +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; +} + +/*We should define specific styles for every element of the syntax. + the setting below will cause some annoying color to show through if we missed + defining a style for a token. This is also the "color" of the whitespace and + of the cursor. +*/ +pre.code, .editbox { + color: red; +} + +.editbox p { + margin: 0; +} + +span.php-punctuation { + color: blue; +} + +span.php-keyword { + color: #770088; + font-weight: bold; +} + +span.php-operator { + color: blue; +} + +/* __FILE__ etc.; http://php.net/manual/en/reserved.php */ +span.php-compile-time-constant { + color: #776088; + font-weight: bold; +} + +/* output of get_defined_constants(). Differs from http://php.net/manual/en/reserved.constants.php */ +span.php-predefined-constant { + color: darkgreen; + font-weight: bold; +} + +/* PHP reserved "language constructs"... echo() etc.; http://php.net/manual/en/reserved.php */ +span.php-reserved-language-construct { + color: green; + font-weight: bold; +} + +/* PHP built-in functions: glob(), chr() etc.; output of get_defined_functions()["internal"] */ +span.php-predefined-function { + color: green; +} + +/* PHP predefined classes: PDO, Exception etc.; output of get_declared_classes() and different from http://php.net/manual/en/reserved.classes.php */ +span.php-predefined-class { + color: green; +} + +span.php-atom { + color: #228811; +} + +/* class, interface, namespace or function names, but not $variables */ +span.php-t_string { + color: black; +} + +span.php-variable { + color: black; + font-weight: bold; +} + + +span.js-localvariable { + color: #004499; +} + +span.php-comment { + color: #AA7700; + font-stretch: condensed; +/* font-style: italic; This causes line height to slightly change, getting line numbers out of sync */ +} + +span.php-string-single-quoted { + color: #AA2222; +} +/* double quoted strings allow interpolation */ +span.php-string-double-quoted { + color: #AA2222; + font-weight: bold; +} + +span.syntax-error { + background-color: red; +} + +span.deprecated { + font-size: smaller; +} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sparqlcolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sparqlcolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sparqlcolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,39 @@ +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; + color: black; +} + +.editbox p { + margin: 0; +} + +span.sp-keyword { + color: #708; +} + +span.sp-prefixed { + color: #5d1; +} + +span.sp-var { + color: #00c; +} + +span.sp-comment { + color: #a70; +} + +span.sp-literal { + color: #a22; +} + +span.sp-uri { + color: #292; +} + +span.sp-operator { + color: #088; +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sqlcolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sqlcolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/sqlcolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,53 @@ +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; + color: black; +} + +.editbox p { + margin: 0; +} + +span.sql-keyword { + color: blue; +} + +span.sql-var { + color: red; +} + +span.sql-comment { + color: #AA7700; +} + +span.sql-literal { + color: green; +} + +span.sql-operator { + color: blue; +} + +span.sql-word { + color: black; +} + +span.sql-function { + color: darkorange; +} + +span.sql-type { + color: purple; +} + +span.sql-separator { + color: #666666; +} + +span.sql-number { + color: darkcyan; +} + + Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/xmlcolors.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/xmlcolors.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/code_mirror/xmlcolors.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,51 @@ +.editbox { + margin: .4em; + padding: 0; + font-family: monospace; + font-size: 10pt; + color: black; +} + +.editbox p { + margin: 0; +} + +span.xml-tagname { + color: #A0B; +} + +span.xml-attribute { + color: #281; +} + +span.xml-punctuation { + color: black; +} + +span.xml-attname { + color: #00F; +} + +span.xml-comment { + color: #A70; +} + +span.xml-cdata { + color: #48A; +} + +span.xml-processing { + color: #999; +} + +span.xml-entity { + color: #A22; +} + +span.xml-error { + color: #F00; +} + +span.xml-text { + color: black; +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/help.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/help.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/help.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,46 @@ +/* Help */ +.tips{ + color:#000; + border:1px solid #00cc00; + padding:8px; + margin:15px 10px; +} + +.tips img { + width:22px; + height:22px; +} + +p { + text-align:justify; +} + +.xo-help-menu { + border:1px solid #ccc; + padding: 5px; + margin: 5px auto; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + -khtml-border-radius: 3px; +} + +#help-template { + width: 98% !important; + border:1px solid #ccc; + padding: 5px; +} + +#help-content { + width: 98% !important; + margin: 0 auto; +} + +#non-modhelp { + padding: 20px; + background-color: #dfdfdf; + border:1px solid #ccc; + font-size: 12px; + font-weight: bold; + +} Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/imagemanager.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/imagemanager.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/imagemanager.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,136 @@ +html {font-size:100.01%;} +body {font-size:75%;} +body { background-color: #f9f9f9; margin: 10px; + font-family: Verdana, Arial, Helvetica, sans-serif;} +#welcomenot { + background-color: #f1f1f1; + margin: 5px; + padding: 5px; + color: #666; + border:1px solid #ccc; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -khtml-border-radius: 5px; +} + +table { width: 100%; margin: 1px;} +a:link { color: #3a76d6; font-weight: bold; background-color: transparent;} +a:visited { color: #9eb2d6; font-weight: bold; background-color: transparent;} +a:hover {color: #e18a00; background-color: transparent;} +table td { + background-color: #f9f9f9; + font-size: 12px; + padding: 0; + border-width: 0; + vertical-align: top; +} +#imagenav td {vertical-align: bottom; padding: 10px;} +#addimage a, input { + margin:5px; + background: #e4e4e5 url(../images/bg_button.gif) repeat-x; + border: 1px solid #d6d6d6; + border-top: 1px solid #dedede; + border-left: 1px solid #dedede; + font-size:.9em; + line-height:1.1em; + text-decoration:none; + font-weight:bold; + color:#454545; + cursor:pointer; + padding: 5px !important; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -khtml-border-radius: 5px; +} +#addimage a { float: right; display:block;} + +#addimage a:hover { border-top:1px solid #d6d6d6; border-left:1px solid #d6d6d6; color: #000;} +#imagemain td { border: 1px solid #ccc; padding: 5px; vertical-align: middle;} +#imagemain th { + border: 0; + background-image: url(../images/breadcrumb/default/bc_bg.png); + color: #666; + font-size: 11px; + padding: 5px; + vertical-align: top; + text-align:center; + border: 1px solid #ccc; +} +td.body { + padding: 5px; + vertical-align: middle; + border: 1px solid #ccc; + background-color: #f6f6f6; +} +td.caption { + border: 1px solid #ccc; + background-color: #f1f1f1; + color:white; + font-size: 12px; + padding: 5px; + vertical-align: top; + text-align:left; + color: #000; +} +#imageform { border: 1px solid #ccc;} +#header td { + width: 100%; + background-color: #2F5376; + vertical-align: middle; +} +#header #headerbar { border-bottom: 1px solid #ccc; background-color: #ddd;} +#pagenav { text-align:center; margin: 10px;} +#pagenav a { + margin: 2px; + background-color: #D3D2D6; + padding: 4px 8px 4px 8px; + color: #405A80; + font-size: 1em; + font-weight: bold; + border: 1px solid #ccc; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -khtml-border-radius: 5px; + box-shadow: 0 20px 10px -10px rgba(255, 255, 255, 0.3) inset; + -moz-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + -webkit-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + -khtml-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + cursor: pointer; +} +#pagenav a:hover { + background-color: #E6EBFF; + padding: 4px 8px 4px 8px; + color: inherit; + cursor: pointer; +} +.xo-pagact { + margin: 2px 5px 2px 5px; + background-color: #E6EBFF; + padding: 4px; + color: #405A80; + font-size: 1em; + font-weight: bold; + border: 1px solid #ccc; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -khtml-border-radius: 5px; + box-shadow: 0 20px 10px -10px rgba(255, 255, 255, 0.3) inset; + -moz-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + -webkit-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + -khtml-box-shadow : 0 20px 10px -10px rgba( 255, 255, 255, 0.3) inset; + cursor: pointer; +} +.xo-counterpage,.xo-pagarrow { + margin: 0; + padding: 4px; + color: #405A80; + background-color: #D3D2D6; + border: 1px solid #ccc; +} +.xo-counterpage:hover {} +.xo-pagarrow { letter-spacing: 0.2em;} +#footer {text-align:right; padding: 5px;} \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/index.html 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/lightbox.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/lightbox.css (rev 0) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/css/lightbox.css 2015-03-08 21:24:18 UTC (rev 13014) @@ -0,0 +1,101 @@ +/** + * jQuery lightBox plugin + * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) + * and adapted to me for use like a plugin from jQuery. + * @name jquery-lightbox-0.5.css + * @author Leandro Vieira Pinho - http://leandrovieira.com + * @version 0.5 + * @date April 11, 2008 + * @category jQuery plugin + * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com) + * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US + * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin + */ +#jquery-overlay { + position: absolute; + top: 0; + left: 0; + z-index: 90; + width: 100%; + height: 500px; +} +#jquery-lightbox { + position: absolute; + top: 0; + left: 0; + width: 100%; + z-index: 100; + text-align: center; + line-height: 0; +} +#jquery-lightbox a img { border: none; } +#lightbox-container-image-box { + position: relative; + background-color: #fff; + width: 250px; + height: 250px; + margin: 0 auto; +} +#lightbox-container-image { padding: 10px; } +#lightbox-loading { + position: absolute; + top: 40%; + left: 0%; + height: 25%; + width: 100%; + text-align: center; + line-height: 0; +} +#lightbox-nav { + position: absolute; + top: 0; + left... [truncated message content] |
From: <txm...@us...> - 2015-03-26 22:55:03
|
Revision: 13024 http://sourceforge.net/p/xoops/svn/13024 Author: txmodxoops Date: 2015-03-26 22:55:00 +0000 (Thu, 26 Mar 2015) Log Message: ----------- Updated Fixed bugs default admin theme Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_blocks.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_comments.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_images.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_modules.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_templates.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/content.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/dashboard.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/logger.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/style.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/tabs.css XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/default.php XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_icons.html XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_toolbar.html Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_blocks.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_blocks.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_blocks.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -107,10 +107,11 @@ </tbody> </table> </div> -<{/if}> +<{else}> <div class="form-inline" id="xo-block-add" <{if $filterform}>class="hide"<{/if}>> <{if !$filterform}><br /><{/if}> <{$blockform}> </div> <!-- Preview block --> -<div id="xo-preview-block" class="hide"></div> \ No newline at end of file +<div id="xo-preview-block" class="hide"></div> +<{/if}> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_comments.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_comments.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_comments.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -13,11 +13,10 @@ </div> </div> <div class="clear"></div> -<table id="xo-comment-sorter" class="table table-striped"> +<table id="xo-comment-sorter" class="table table-striped table-bordered"> <thead> <tr> <th class="text-center width5"><input type='checkbox' name='allbox' id='allbox' onclick='xoopsCheckAll("commentslist", "allbox");' value='Check All' /></th> - <th class="text-center width5"></th> <th class="text-center"><{$smarty.const._AM_SYSTEM_COMMENTS_TITLE}></th> <th class="text-center"><{$smarty.const._AM_SYSTEM_COMMENTS_POSTED}></th> <th class="text-center"><{$smarty.const._AM_SYSTEM_COMMENTS_IP}></th> @@ -66,4 +65,4 @@ <{/foreach}> <!--Pop-pup--> <div class="text-right"><{$nav}></div> -<{/if}> +<{/if}> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_images.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_images.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_images.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -4,13 +4,13 @@ <div class="pull-right"> <div class="xo-buttons"> <{if !$edit_form && !$listimg}> - <button id="xo-addcat-btn" class="btn btn-default" onclick="xo_toggle('div#xo-category-add');" title="<{$smarty.const._AM_SYSTEM_IMAGES_ADDCAT}>"> + <button id="xo-addcat-btn" class="btn btn-default" title="<{$smarty.const._AM_SYSTEM_IMAGES_ADDCAT}>"> <img src="<{xoAdminIcons add.png}>" alt="<{$smarty.const._AM_SYSTEM_IMAGES_ADDCAT}>" /> <{$smarty.const._AM_SYSTEM_IMAGES_ADDCAT}> </button> <{/if}> <{if $cat_img || $listimg}> - <button id="xo-addimg-btn" class="btn btn-default" onclick="xo_toggle('div#xo-images-add');" title="<{$smarty.const._AM_SYSTEM_IMAGES_ADDIMG}>"> + <button id="xo-addimg-btn" class="btn btn-default" title="<{$smarty.const._AM_SYSTEM_IMAGES_ADDIMG}>"> <img src="<{xoAdminIcons add.png}>" alt="<{$smarty.const._AM_SYSTEM_IMAGES_ADDIMG}>" /> <{$smarty.const._AM_SYSTEM_IMAGES_ADDIMG}> </button> @@ -72,7 +72,7 @@ <{/if}> <{if $images}> <!-- Image list --> -<div id="xo-category-add" class="show"> +<div id="xo-category-add"> <{foreach item=img from=$images}> <div class="pull-left"> <div class="ui-corner-all xo-thumb text-center"> @@ -113,13 +113,13 @@ </div> <{if $nav_menu}><div class="xo-avatar-pagenav pull-right"><{$nav_menu}></div><div class="clear spacer"></div><{/if}> <{else}> -<div id="xo-category-add" class="show"> +<div id="xo-category-add"> <div class="clear"></div> </div> <{/if}> <!-- Add Image form --> -<div id="xo-images-add" class="hide"> +<div id="xo-images-add"> <br /> <{$image_form.javascript}> <form name="<{$image_form.name}>" id="<{$image_form.name}>" action="<{$image_form.action}>" method="<{$image_form.method}>" <{$image_form.extra}> > @@ -137,7 +137,7 @@ <div class="spacer bold"><{$element.caption}><{if $element.required}><span class="red"> *</span><{/if}></div> <div class="spacer"><{$element.description}></div> </td> - <td class="even"><{$element.body}></td> + <td class="form-inline"><{$element.body}></td> </tr> <{else}> <{$element.body}> @@ -148,7 +148,7 @@ </form> </div> <!-- Add Category form --> -<div id="xo-category-add" class="hide"> +<div id="xo-category-add"> <br /> <{$imagecat_form.javascript}> <form name="<{$imagecat_form.name}>" id="<{$imagecat_form.name}>" action="<{$imagecat_form.action}>" method="<{$imagecat_form.method}>" <{$imagecat_form.extra}> > @@ -166,7 +166,7 @@ <div class="spacer bold"><{$element.caption}><{if $element.required}><span class="red"> *</span><{/if}></div> <div class="spacer"><{$element.description}></div> </td> - <td class="even"><{$element.body}></td> + <td class="form-inline"><{$element.body}></td> </tr> <{else}> <{$element.body}> @@ -178,7 +178,7 @@ </div> <!-- Edit form image --> <{if $edit_form}> -<div id="xo-images-add" class="show"> +<div id="xo-images-add"> <{$edit_thumbs}> <br /> <{$edit_form.javascript}> @@ -197,7 +197,7 @@ <div class="spacer bold"><{$element.caption}><{if $element.required}><span class="red"> *</span><{/if}></div> <div class="spacer"><{$element.description}></div> </td> - <td class="even"><{$element.body}></td> + <td class="form-inline"><{$element.body}></td> </tr> <{else}> <{$element.body}> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_modules.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_modules.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_modules.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -5,8 +5,10 @@ IMG_OFF = '<{xoAdminIcons cancel.png}>'; </script> <div class="pull-left"> - <img class="cursorpointer" onclick="system_moduleLargeView();" src="<{xoAdminIcons view_large.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" /> - <img class="cursorpointer" onclick="system_moduleListView();" src="<{xoAdminIcons view_small.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" /> + <button class="btn btn-default cursorpointer" onclick="system_moduleLargeView();" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>"><i class="glyphicon glyphicon-th-large"></i></button> + <!-- <img class="cursorpointer" src="<{xoAdminIcons view_large.png}>" onclick="system_moduleLargeView();" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" /> --> + <button class="btn btn-default cursorpointer" onclick="system_moduleListView();" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>"><i class="glyphicon glyphicon-th-list"></i></button> + <!-- <img class="cursorpointer" onclick="system_moduleListView();" src="<{xoAdminIcons view_small.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" /> --> </div> <div class="pull-right"> <div class="xo-buttons"> @@ -99,7 +101,7 @@ </td> <td> <{if $row.warning_update == 1}> - <a class="tooltip maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}> + <a class="maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}> <{else}> <{$row.version}> <{$row.module_status}> <{/if}> @@ -152,7 +154,7 @@ </td> <td> <{if $row.warning_update == 1}> - <a class="tooltip maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}> + <a class="maxi" style="color:red;" href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=update&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_UPDATE}>"><{$row.version}></a><br /><{$smarty.const._AM_SYSTEM_MODULES_UPDATE}> <{else}> <{$row.version}> <{$row.module_status}> <{/if}> @@ -193,8 +195,10 @@ <{if $toinstall_mods}> <div class="pull-left"> - <img class="cursorpointer" onclick="system_moduleLargeView();" src="<{xoAdminIcons view_large.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" /> - <img class="cursorpointer" onclick="system_moduleListView();" src="<{xoAdminIcons view_small.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" /> + <button class="btn btn-default cursorpointer" onclick="system_moduleLargeView();" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>"><i class="glyphicon glyphicon-th-large"></i></button> + <!-- <img class="cursorpointer" src="<{xoAdminIcons view_large.png}>" onclick="system_moduleLargeView();" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>" /> --> + <button class="btn btn-default cursorpointer" onclick="system_moduleListView();" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLARGE}>"><i class="glyphicon glyphicon-th-list"></i></button> + <!-- <img class="cursorpointer" onclick="system_moduleListView();" src="<{xoAdminIcons view_small.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" title="<{$smarty.const._AM_SYSTEM_MODULES_VIEWLINE}>" /> --> </div> <div class="clear spacer"></div> <table class="table table-bordered"> @@ -223,8 +227,8 @@ </td> <td><{$row.version}> <{$row.module_status}></td> <td class="xo-modsimages"> - <a href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=install&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>"> - <img src="<{xoAdminIcons install.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>" /> + <a href="<{$xoops_url}>/modules/system/admin.php?fct=modulesadmin&op=install&module=<{$row.dirname}>" title="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>"><img src="<{xoAdminIcons install.png}>" alt="<{$smarty.const._AM_SYSTEM_MODULES_INSTALL}>" /> + <!-- <i class="glyphicon glyphicon-circle-arrow-up"></i> --> </a> <img class="cursorpointer" onclick="display_dialog(<{$row.mid}>, true, true, 'slide', 'slide', 240, 450);" src="<{xoAdminIcons info.png}>" alt="<{$smarty.const._INFO}>" title="<{$smarty.const._INFO}>" /> </td> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_templates.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_templates.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/templates/admin/system_templates.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -11,8 +11,8 @@ </thead> <tbody> <tr> - <td class="aligntop col-md-2"><div id="fileTree" class="display_folder"></div></td> - <td class="aligntop col-md-10"> + <td class="aligntop col-md-1"><div id="fileTree" class="display_folder"></div></td> + <td class="aligntop col-md-11"> <div id="display_form" class="form-inline"><{$form}></div> <div id="display_contenu"></div> <div id='display_message' class="text-center" style="display:none;"></div> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/content.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/content.css 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/content.css 2015-03-26 22:55:00 UTC (rev 13024) @@ -206,13 +206,13 @@ text-decoration: underline; } -/*=============== styles for tables =================*/ +/*=============== styles for tables =================*//* table { margin: 0; width: 100%; border: none; border-collapse: separate /*collapse*/; - border-spacing: 1px; + /*border-spacing: 1px; } th { @@ -220,7 +220,7 @@ color: #fff; padding: 4px; vertical-align: middle; -} +}*/ .outer { width: 99%; @@ -255,7 +255,7 @@ padding: 5px; font-weight: bold; } - +/* tr.head td { background-color: #BDE3FB; padding: 5px; @@ -280,7 +280,7 @@ font-weight: bold; } -td.head {max-width: 300px !important;} +td.head {max-width: 300px !important;}*/ /*============= XOOPS Editors =============*/ body.mceContentBody { background-color: #fff; Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/dashboard.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/dashboard.css 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/dashboard.css 2015-03-26 22:55:00 UTC (rev 13024) @@ -71,7 +71,7 @@ background-position: left top; background-repeat: no-repeat; font-weight: bold; - height: 30px; + height: 43px; vertical-align: middle; padding: 10px 40px 0 40px; border-bottom: 3px solid #393e41; Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/logger.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/logger.css 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/logger.css 2015-03-26 22:55:00 UTC (rev 13024) @@ -12,7 +12,7 @@ */ #xo-logger-errors, #xo-logger-deprecated, #xo-logger-queries, #xo-logger-blocks, #xo-logger-extra, #xo-logger-timers{ - max-width: 95% !important; + max-width: 96% !important; } #xo-logger-output { margin: 0 auto !important; @@ -24,7 +24,7 @@ margin-top: -2px; padding-left: 2%; padding-right: 2%; - width: 96% !important; + width: 100% !important; } #xo-logger-errors {} Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/style.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/style.css 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/style.css 2015-03-26 22:55:00 UTC (rev 13024) @@ -114,4 +114,4 @@ background: #EEEDED; color: #333; border: 2px solid #666; -} +} \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/tabs.css =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/tabs.css 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/assets/css/tabs.css 2015-03-26 22:55:00 UTC (rev 13024) @@ -14,7 +14,7 @@ list-style:none; margin:0 !important; padding: 10px 0 0 0; - height:30px; + height:43px; border-bottom: 3px solid #393e41; } Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/default.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/default.php 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/default.php 2015-03-26 22:55:00 UTC (rev 13024) @@ -74,7 +74,8 @@ $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/formenu.js'); $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/menu.js'); $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/tooltip.js'); - $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/tabs.jquery.tools.min.js'); + $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/tabs.jquery.tools.min.js'); + $xoTheme->addScript(XOOPS_ADMINTHEME_URL . '/default/assets/js/default.js'); $tpl->assign('lang_cp', _CPHOME); //start system overview Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_icons.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_icons.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_icons.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -4,16 +4,16 @@ <div id="xo-icon"> <{foreach item=op from=$mod_options}> <a href="<{$op.link}>" data-toggle="tooltip" data-original-title="<{$op.desc}>" title="<{$op.desc}>"> - <img src='<{$op.icon|default:"$theme_icons/icon_options.png"}>' alt="<{$op.desc}>" /> + <img class="img-rounded" src='<{$op.icon|default:"$theme_icons/icon_options.png"}>' alt="<{$op.desc}>" /> <br /><span><{$op.title}></span> </a> <{/foreach}> <a href="<{xoAppUrl modules/system/admin.php}>" data-toggle="tooltip" data-original-title="<{$smarty.const._AM_SYSTEM_CONFIG}>" title="<{$smarty.const._AM_SYSTEM_CONFIG}>"> - <img src='<{"$theme_icons/configuration.png"}>' /> + <img class="img-rounded" src='<{"$theme_icons/configuration.png"}>' /> <span><{$smarty.const._AM_SYSTEM_CONFIG}></span> </a> <a href="<{xoAppUrl modules/system/help.php}>" data-toggle="tooltip" data-original-title="<{$smarty.const._AM_SYSTEM_HELP}>" title="<{$smarty.const._AM_SYSTEM_HELP}>"> - <img src='<{"$theme_icons/help.png"}>' /> + <img class="img-rounded" src='<{"$theme_icons/help.png"}>' /> <span><{$smarty.const._AM_SYSTEM_HELP}></span> </a> </div> Modified: XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_toolbar.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_toolbar.html 2015-03-25 23:37:10 UTC (rev 13023) +++ XoopsCore/branches/2.5.x/2.5.8_timgno/htdocs/modules/system/themes/default/xotpl/xo_toolbar.html 2015-03-26 22:55:00 UTC (rev 13024) @@ -2,20 +2,19 @@ <div id="xo-modname"> <{$modname}> </div> - <div id="xo-toolbar"> + <div class="thumbnail" id="xo-toolbar"> <{foreach item=op from=$mod_options}> - <a class="tooltip" href="<{$op.link}>" title="<{$op.title}>"> - <img src='<{$op.icon|default:"$theme_icons/icon_options.png"}>' alt="<{$op.title}>" /> + <a href="<{$op.link}>" data-toggle="tooltip" data-original-title="<{$op.title}>" title="<{$op.title}>"> + <img class="img-rounded" src='<{$op.icon|default:"$theme_icons/icon_options.png"}>' alt="<{$op.title}>" /> </a> - <{/foreach}> - + <{/foreach}> <{if $moddir!='system' && $mod_options}> - <a class="tooltip" href="<{$xoops_url}>/modules/system/admin.php?fct=preferences&op=showmod&mod=<{$modid}>" title="<{$smarty.const._OXYGEN_SITEPREF}>"> - <img src="<{$theme_icons}>/prefs.png" alt="<{$smarty.const._OXYGEN_SITEPREF}>" /> + <a href="<{$xoops_url}>/modules/system/admin.php?fct=preferences&op=showmod&mod=<{$modid}>" data-toggle="tooltip" data-original-title="<{$smarty.const._OXYGEN_SITEPREF}>" title="<{$smarty.const._OXYGEN_SITEPREF}>"> + <img class="img-rounded" src="<{$theme_icons}>/prefs.png" alt="<{$smarty.const._OXYGEN_SITEPREF}>" /> </a> <{/if}> - <a class="tooltip" href="<{xoAppUrl modules/system/help.php}>" title="<{$smarty.const._AM_SYSTEM_HELP}>"> - <img src='<{"$theme_icons/help.png"}>' /> + <a href="<{xoAppUrl modules/system/help.php}>" data-toggle="tooltip" data-original-title="<{$smarty.const._AM_SYSTEM_HELP}>" title="<{$smarty.const._AM_SYSTEM_HELP}>"> + <img class="img-rounded" src='<{"$theme_icons/help.png"}>' /> </a> </div> </div> \ No newline at end of file |