Added BETA quality version of colors theme from Urs Hunkler
3
theme/colors/README.html
Executable file
@ -0,0 +1,3 @@
|
||||
<h3>Colors Moodle theme.</h3>
|
||||
|
||||
<p>A Moodle Theme from <strong>Urs Hunkler, <a href="http://www.unodo.de" target="_blank">unodo</a></strong>.</p>
|
1212
theme/colors/colors.css
Executable file
154
theme/colors/config.php
Executable file
@ -0,0 +1,154 @@
|
||||
<?PHP // $Id$
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// This file contains a few configuration variables that control
|
||||
/// how Moodle uses this theme.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->sheets = array('reset', 'colors');
|
||||
|
||||
/// This variable is an array containing the names of all the
|
||||
/// stylesheet files you want included in this theme, and in what order
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->standardsheets = array('styles_layout');
|
||||
|
||||
/// This variable can be set to an array containing
|
||||
/// filenames from the *STANDARD* theme. If the
|
||||
/// array exists, it will be used to choose the
|
||||
/// files to include in the standard style sheet.
|
||||
/// When false, then no files are used.
|
||||
/// When true or NON-EXISTENT, then ALL standard files are used.
|
||||
/// This parameter can be used, for example, to prevent
|
||||
/// having to override too many classes.
|
||||
/// Note that the trailing .css should not be included
|
||||
/// eg $THEME->standardsheets = array('styles_layout','styles_fonts','styles_color');
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->parent = '';
|
||||
|
||||
/// This variable can be set to the name of a parent theme
|
||||
/// which you want to have included before the current theme.
|
||||
/// This can make it easy to make modifications to another
|
||||
/// theme without having to actually change the files
|
||||
/// If this variable is empty or false then a parent theme
|
||||
/// is not used.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->parentsheets = false;
|
||||
|
||||
/// This variable can be set to an array containing
|
||||
/// filenames from a chosen *PARENT* theme. If the
|
||||
/// array exists, it will be used to choose the
|
||||
/// files to include in the standard style sheet.
|
||||
/// When false, then no files are used.
|
||||
/// When true or NON-EXISTENT, then ALL standard files are used.
|
||||
/// This parameter can be used, for example, to prevent
|
||||
/// having to override too many classes.
|
||||
/// Note that the trailing .css should not be included
|
||||
/// eg $THEME->parentsheets = array('styles_layout','styles_fonts','styles_color');
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
$THEME->modsheets = true;
|
||||
|
||||
/// When this is enabled, then this theme will search for
|
||||
/// files named "styles.php" inside all Activity modules and
|
||||
/// include them. This allows modules to provide some basic
|
||||
/// layouts so they work out of the box.
|
||||
/// It is HIGHLY recommended to leave this enabled.
|
||||
|
||||
|
||||
$THEME->blocksheets = true;
|
||||
|
||||
/// When this is enabled, then this theme will search for
|
||||
/// files named "styles.php" inside all Block modules and
|
||||
/// include them. This allows Blocks to provide some basic
|
||||
/// layouts so they work out of the box.
|
||||
/// It is HIGHLY recommended to leave this enabled.
|
||||
|
||||
|
||||
$THEME->langsheets = false;
|
||||
|
||||
/// By setting this to true, then this theme will search for
|
||||
/// a file named "styles.php" inside the current language
|
||||
/// directory. This allows different languages to provide
|
||||
/// different styles.
|
||||
|
||||
|
||||
$THEME->courseformatsheets = true;
|
||||
|
||||
/// When this is enabled, this theme will search for files
|
||||
/// named "styles.php" inside all course formats and
|
||||
/// include them. This allows course formats to provide
|
||||
/// their own default styles.
|
||||
|
||||
|
||||
$THEME->metainclude = true;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from this theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->standardmetainclude = true;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from the standard theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->parentmetainclude = false;
|
||||
|
||||
/// When this is enabled (or not set!) then Moodle will try
|
||||
/// to include a file meta.php from the parent theme into the
|
||||
/// <head></head> part of the page.
|
||||
|
||||
|
||||
$THEME->navmenuwidth = 50;
|
||||
|
||||
/// You can use this to control the cutoff point for strings
|
||||
/// in the navmenus (list of activities in popup menu etc)
|
||||
/// Default is 50 characters wide.
|
||||
|
||||
|
||||
$THEME->makenavmenulist = false;
|
||||
|
||||
/// By setting this to true, then you will have access to a
|
||||
/// new variable in your header.html and footer.html called
|
||||
/// $navmenulist ... this contains a simple XHTML menu of
|
||||
/// all activities in the current course, mostly useful for
|
||||
/// creating popup navigation menus and so on.
|
||||
|
||||
|
||||
$THEME->resource_mp3player_colors =
|
||||
'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
|
||||
'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
|
||||
'font=Arial&fontColour=3333FF&buffer=10&waitForPlay=no&autoPlay=yes';
|
||||
|
||||
/// With this you can control the colours of the "big" MP3 player
|
||||
/// that is used for MP3 resources.
|
||||
|
||||
|
||||
$THEME->filter_mediaplugin_colors =
|
||||
'bgColour=000000&btnColour=ffffff&btnBorderColour=cccccc&iconColour=000000&'.
|
||||
'iconOverColour=00cc00&trackColour=cccccc&handleColour=ffffff&loaderColour=ffffff&'.
|
||||
'waitForPlay=yes';
|
||||
|
||||
/// ...And this controls the small embedded player
|
||||
|
||||
|
||||
$THEME->custompix = true;
|
||||
|
||||
/// If true, then this theme must have a "pix"
|
||||
/// subdirectory that contains copies of all
|
||||
/// files from the moodle/pix directory, plus a
|
||||
/// "pix/mod" directory containing all the icons
|
||||
/// for all the activity modules.
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
?>
|
BIN
theme/colors/favicon.ico
Executable file
After Width: | Height: | Size: 894 B |
28
theme/colors/footer.html
Executable file
@ -0,0 +1,28 @@
|
||||
|
||||
<?php
|
||||
print_container_end(); // content container
|
||||
|
||||
print_container_start(true, '', 'footer');
|
||||
|
||||
echo '<p class="helplink">';
|
||||
echo page_doc_link(get_string('moodledocslink'));
|
||||
echo '</p>';
|
||||
|
||||
echo $loggedinas;
|
||||
echo $homelink;
|
||||
|
||||
$useridarray = array(2, 3 // MD
|
||||
);
|
||||
|
||||
if (!empty($performanceinfo) && isloggedin() && in_array($USER->id, $useridarray)) {
|
||||
echo $performanceinfo;
|
||||
}
|
||||
|
||||
print_container_end();
|
||||
?>
|
||||
</div>
|
||||
<?php
|
||||
include($CFG->themedir.'/colors/js/js.php');
|
||||
?>
|
||||
</body>
|
||||
</html>
|
124
theme/colors/gradients.css
Executable file
@ -0,0 +1,124 @@
|
||||
/**
|
||||
* Adds all the nice finish to the standard theme
|
||||
*
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #b9baa3;
|
||||
}
|
||||
#page {
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
background-color: #fcfde5;
|
||||
border-color: #838373;
|
||||
border-top-style: none;
|
||||
border-bottom-style: none;
|
||||
border-left-style: solid;
|
||||
border-left-width: 5px;
|
||||
border-right-width: 5px;
|
||||
border-right-style: solid;
|
||||
}
|
||||
|
||||
#header-home,
|
||||
#header {
|
||||
height: 50px;
|
||||
padding: 5px;
|
||||
}
|
||||
#header-home hr {
|
||||
display: none;
|
||||
}
|
||||
.headermain,
|
||||
h1.headermain {
|
||||
margin: 10px 0 0 10px;
|
||||
}
|
||||
.navbar {
|
||||
border-style: none;
|
||||
border-top: 1px solid #e7e8d6;
|
||||
background-color: #fcfcf5;
|
||||
border-bottom: 1px solid #f5f5e9;
|
||||
}
|
||||
#layout-table {
|
||||
width: 960px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
#layout-table #left-column {
|
||||
width: 220px !important;
|
||||
background-color: #f68933;
|
||||
}
|
||||
#layout-table #middle-column {
|
||||
padding: 0;
|
||||
background-color: #bfffc5;
|
||||
}
|
||||
#layout-table #right-column {
|
||||
width: 220px !important;
|
||||
background-color: #1d6fcf;
|
||||
}
|
||||
#course-view .section td.side {
|
||||
background: #e8ffea;
|
||||
}
|
||||
.sideblock {
|
||||
width: 210px;
|
||||
}
|
||||
.sideblock .content {
|
||||
background: transparent;
|
||||
border-style: none;
|
||||
}
|
||||
.sideblock a {
|
||||
color: #eee;
|
||||
}
|
||||
.sideblock .header,
|
||||
.sideblock h2.header {
|
||||
padding: 5px;
|
||||
border-style: none;
|
||||
width: 100%;
|
||||
}
|
||||
#left-column .sideblock .header,
|
||||
#left-column .sideblock h2.header {
|
||||
background-color: #da5a23;
|
||||
}
|
||||
#right-column .sideblock .header,
|
||||
#right-column .sideblock h2.header {
|
||||
background-color: #4b95ed;
|
||||
}
|
||||
table.minicalendar {
|
||||
border-style: none;
|
||||
}
|
||||
#course-view .section td.content {
|
||||
border-style: none;
|
||||
}
|
||||
#course-view .section td.side {
|
||||
border-style: none;
|
||||
}
|
||||
#course-view .section .spacer {
|
||||
border-top: 1px solid #a3daa8;
|
||||
}
|
||||
.headingblock, h2.headingblock {
|
||||
border-style: none;
|
||||
background-color: #e8ffea;
|
||||
}
|
||||
.block_admin_tree.sideblock .link.current {
|
||||
background-color: #f6c8a4;
|
||||
color: #000;
|
||||
display: block;
|
||||
}
|
||||
#adminsettings fieldset {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: transparent;
|
||||
border-style: none;
|
||||
}
|
||||
#adminsettings div.form-item {
|
||||
clear: both;
|
||||
margin: 1em 0 2em 0;
|
||||
padding: 0;
|
||||
}
|
||||
#adminsettings .form-label {
|
||||
width: 8em;
|
||||
}
|
||||
#adminsettings .form-setting,
|
||||
#adminsettings .form-description {
|
||||
margin-left: 8.5em;
|
||||
}
|
39
theme/colors/header.html
Executable file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html<?php echo $direction ?>>
|
||||
<head>
|
||||
<?php echo $meta ?>
|
||||
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
||||
<title><?php echo $title ?></title>
|
||||
<link rel="shortcut icon" href="<?php echo $CFG->httpsthemewww .'/'. current_theme() ?>/favicon.ico" />
|
||||
<?php include("$CFG->javascript"); ?>
|
||||
</head>
|
||||
|
||||
<body<?php echo " $bodytags"; ?>>
|
||||
|
||||
<div id="page">
|
||||
|
||||
<?php if ($home) { // This is what gets printed on the home page only
|
||||
?>
|
||||
<?php print_container_start(true, '', 'header-home'); ?>
|
||||
<h1 class="headermain"><?php echo $heading ?></h1>
|
||||
<div class="headermenu"><?php echo $menu ?></div>
|
||||
<?php print_container_end(); ?>
|
||||
<div class="navbar clearfix">
|
||||
|
||||
</div>
|
||||
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
|
||||
?>
|
||||
<?php print_container_start(true, '', 'header'); ?>
|
||||
<h1 class="headermain"><?php echo $heading ?></h1>
|
||||
<div class="headermenu"><?php echo $menu ?></div>
|
||||
<?php print_container_end(); ?>
|
||||
<div class="navbar clearfix">
|
||||
<?php if ($navigation) { // This is the navigation table with breadcrumbs
|
||||
?>
|
||||
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
|
||||
<div class="navbutton"><?php echo $button; ?></div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<!-- END OF HEADER -->
|
||||
<?php print_container_start(false, '', 'content'); ?>
|
42
theme/colors/js/CSSClass.js
Executable file
@ -0,0 +1,42 @@
|
||||
/**
|
||||
* CSSClass.js: utilities for manipulating the CSS class of an HTML element.
|
||||
*
|
||||
* This module defines a single global symbol named CSSClass. This object
|
||||
* contains utility functions for working with the class attribute (className
|
||||
* property) of HTML elements. All functions take two arguments: the element
|
||||
* e being tested or manipulated and the CSS class c that is to be tested,
|
||||
* added, or removed. If element e is a string, it is taken as an element
|
||||
* id and passed to document.getElementById().
|
||||
*/
|
||||
var CSSClass = {}; // Create our namespace object
|
||||
|
||||
// Return true if element e is a member of the class c; false otherwise
|
||||
CSSClass.is = function(e, c) {
|
||||
if (typeof e == "string") e = document.getElementById(e); // element id
|
||||
|
||||
// Before doing a regexp search, optimize for a couple of common cases.
|
||||
var classes = e.className;
|
||||
if (!classes) return false; // Not a member of any classes
|
||||
if (classes == c) return true; // Member of just this one class
|
||||
|
||||
// Otherwise, use a regular expression to search for c as a word by itself
|
||||
// \b in a regular expression requires a match at a word boundary.
|
||||
return e.className.search("\\b" + c + "\\b") != -1;
|
||||
};
|
||||
|
||||
// Add class c to the className of element e if it is not already there.
|
||||
CSSClass.add = function(e, c) {
|
||||
if (typeof e == "string") e = document.getElementById(e); // element id
|
||||
if (CSSClass.is(e, c)) return; // If already a member, do nothing
|
||||
if (e.className) c = " " + c; // Whitespace separator, if needed
|
||||
e.className += c; // Append the new class to the end
|
||||
};
|
||||
|
||||
// Remove all occurrences (if any) of class c from the className of element e
|
||||
CSSClass.remove = function(e, c) {
|
||||
if (typeof e == "string") e = document.getElementById(e); // element id
|
||||
// Search the className for all occurrences of c and replace with "".
|
||||
// \s* matches any number of whitespace characters.
|
||||
// "g" makes the regular expression match any number of occurrences
|
||||
e.className = e.className.replace(new RegExp("\\b"+ c+"\\b\\s*", "g"), "");
|
||||
};
|
46
theme/colors/js/js.php
Executable file
@ -0,0 +1,46 @@
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
/* <![CDATA[ */
|
||||
var CSSClass={};CSSClass.is=function(e,c){if(typeof e=="string")e=document.getElementById(e);var classes=e.className;if(!classes)return false;if(classes==c)return true;return e.className.search("\\b"+c+"\\b")!=-1;};CSSClass.add=function(e,c){if(typeof e=="string")e=document.getElementById(e);if(CSSClass.is(e,c))return;if(e.className)c=" "+c;e.className+=c;};CSSClass.remove=function(e,c){if(typeof e=="string")e=document.getElementById(e);e.className=e.className.replace(new RegExp("\\b"+c+"\\b\\s*","g"),"");};
|
||||
|
||||
var jsscript = {
|
||||
|
||||
corrections: function () {
|
||||
if (top.user) {
|
||||
top.document.getElementsByTagName('frameset')[0].rows = "117,30%,0,200";
|
||||
}
|
||||
|
||||
// check for layouttabel and add haslayouttable class to body
|
||||
function setbodytag () {
|
||||
var bd = document.getElementsByTagName('body')[0];
|
||||
if (bd) {
|
||||
var tagname = 'nolayouttable';
|
||||
if (document.getElementById('middle-column')) {
|
||||
var lc = document.getElementById('left-column');
|
||||
var rc = document.getElementById('right-column');
|
||||
if ( lc && rc ) {
|
||||
tagname = 'haslayouttable rightandleftcolumn';
|
||||
} else if (lc) {
|
||||
tagname = 'haslayouttable onlyleftcolumn';
|
||||
} else if (rc) {
|
||||
tagname = 'haslayouttable onlyrightcolumn';
|
||||
} else {
|
||||
tagname = 'haslayouttable onlymiddlecolumn';
|
||||
}
|
||||
}
|
||||
CSSClass.add(bd, tagname);
|
||||
} else {
|
||||
setTimeout(function() { setbodytag() }, 10);
|
||||
}
|
||||
};
|
||||
|
||||
setbodytag();
|
||||
},
|
||||
|
||||
init: function() {
|
||||
jsscript.corrections();
|
||||
}
|
||||
};
|
||||
|
||||
jsscript.init();
|
||||
/* ]]> */
|
||||
</script>
|
6
theme/colors/meta.php
Executable file
@ -0,0 +1,6 @@
|
||||
<!--[if IE 7]>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $CFG->httpsthemewww ?>/colors/styles_ie7.css" />
|
||||
<![endif]-->
|
||||
<!--[if IE 6]>
|
||||
<link rel="stylesheet" type="text/css" href="<?php echo $CFG->httpsthemewww ?>/colors/styles_ie6.css" />
|
||||
<![endif]-->
|
BIN
theme/colors/pix/a/em1_bwgreater.gif
Executable file
After Width: | Height: | Size: 853 B |
BIN
theme/colors/pix/a/em1_greater.gif
Executable file
After Width: | Height: | Size: 853 B |
BIN
theme/colors/pix/a/em1_lesser.gif
Executable file
After Width: | Height: | Size: 855 B |
BIN
theme/colors/pix/a/em1_raquo.gif
Executable file
After Width: | Height: | Size: 851 B |
BIN
theme/colors/pix/a/l_breadcrumb.gif
Executable file
After Width: | Height: | Size: 71 B |
BIN
theme/colors/pix/a/r_breadcrumb.gif
Executable file
After Width: | Height: | Size: 82 B |
BIN
theme/colors/pix/a/r_go.gif
Executable file
After Width: | Height: | Size: 922 B |
BIN
theme/colors/pix/a/r_next.gif
Executable file
After Width: | Height: | Size: 853 B |
BIN
theme/colors/pix/a/r_previous.gif
Executable file
After Width: | Height: | Size: 855 B |
BIN
theme/colors/pix/adv.gif
Executable file
After Width: | Height: | Size: 118 B |
BIN
theme/colors/pix/b.gif
Executable file
After Width: | Height: | Size: 75 B |
BIN
theme/colors/pix/c/course.gif
Executable file
After Width: | Height: | Size: 378 B |
BIN
theme/colors/pix/c/event.gif
Executable file
After Width: | Height: | Size: 409 B |
BIN
theme/colors/pix/c/group.gif
Executable file
After Width: | Height: | Size: 399 B |
BIN
theme/colors/pix/c/site.gif
Executable file
After Width: | Height: | Size: 409 B |
BIN
theme/colors/pix/c/user.gif
Executable file
After Width: | Height: | Size: 386 B |
BIN
theme/colors/pix/css.gif
Executable file
After Width: | Height: | Size: 750 B |
BIN
theme/colors/pix/docs.gif
Executable file
After Width: | Height: | Size: 176 B |
BIN
theme/colors/pix/f/audio.gif
Executable file
After Width: | Height: | Size: 420 B |
BIN
theme/colors/pix/f/avi.gif
Executable file
After Width: | Height: | Size: 277 B |
BIN
theme/colors/pix/f/dmg.gif
Executable file
After Width: | Height: | Size: 3.7 KiB |
BIN
theme/colors/pix/f/docm.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/docx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/dotm.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/dotx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/edit.gif
Executable file
After Width: | Height: | Size: 417 B |
BIN
theme/colors/pix/f/env.gif
Executable file
After Width: | Height: | Size: 409 B |
BIN
theme/colors/pix/f/excel.gif
Executable file
After Width: | Height: | Size: 425 B |
BIN
theme/colors/pix/f/explore.gif
Executable file
After Width: | Height: | Size: 404 B |
BIN
theme/colors/pix/f/flash.gif
Executable file
After Width: | Height: | Size: 426 B |
BIN
theme/colors/pix/f/folder.gif
Executable file
After Width: | Height: | Size: 394 B |
BIN
theme/colors/pix/f/help.gif
Executable file
After Width: | Height: | Size: 414 B |
BIN
theme/colors/pix/f/html.gif
Executable file
After Width: | Height: | Size: 270 B |
BIN
theme/colors/pix/f/image.gif
Executable file
After Width: | Height: | Size: 397 B |
BIN
theme/colors/pix/f/jbc.gif
Executable file
After Width: | Height: | Size: 251 B |
BIN
theme/colors/pix/f/jcl.gif
Executable file
After Width: | Height: | Size: 405 B |
BIN
theme/colors/pix/f/jcw.gif
Executable file
After Width: | Height: | Size: 405 B |
BIN
theme/colors/pix/f/jmt.gif
Executable file
After Width: | Height: | Size: 402 B |
BIN
theme/colors/pix/f/jmx.gif
Executable file
After Width: | Height: | Size: 405 B |
BIN
theme/colors/pix/f/jqz.gif
Executable file
After Width: | Height: | Size: 393 B |
BIN
theme/colors/pix/f/move.gif
Executable file
After Width: | Height: | Size: 303 B |
BIN
theme/colors/pix/f/odb.gif
Executable file
After Width: | Height: | Size: 830 B |
BIN
theme/colors/pix/f/odc.gif
Executable file
After Width: | Height: | Size: 830 B |
BIN
theme/colors/pix/f/odf.gif
Executable file
After Width: | Height: | Size: 826 B |
BIN
theme/colors/pix/f/odg.gif
Executable file
After Width: | Height: | Size: 826 B |
BIN
theme/colors/pix/f/odi.gif
Executable file
After Width: | Height: | Size: 821 B |
BIN
theme/colors/pix/f/odm.gif
Executable file
After Width: | Height: | Size: 831 B |
BIN
theme/colors/pix/f/odp.gif
Executable file
After Width: | Height: | Size: 814 B |
BIN
theme/colors/pix/f/ods.gif
Executable file
After Width: | Height: | Size: 811 B |
BIN
theme/colors/pix/f/odt.gif
Executable file
After Width: | Height: | Size: 268 B |
BIN
theme/colors/pix/f/parent.gif
Executable file
After Width: | Height: | Size: 402 B |
BIN
theme/colors/pix/f/pdf.gif
Executable file
After Width: | Height: | Size: 418 B |
BIN
theme/colors/pix/f/potm.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/potx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/powerpoint.gif
Executable file
After Width: | Height: | Size: 428 B |
BIN
theme/colors/pix/f/ppam.gif
Executable file
After Width: | Height: | Size: 624 B |
BIN
theme/colors/pix/f/ppsm.gif
Executable file
After Width: | Height: | Size: 635 B |
BIN
theme/colors/pix/f/ppsx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/pptm.gif
Executable file
After Width: | Height: | Size: 630 B |
BIN
theme/colors/pix/f/pptx.gif
Executable file
After Width: | Height: | Size: 630 B |
BIN
theme/colors/pix/f/text.gif
Executable file
After Width: | Height: | Size: 268 B |
BIN
theme/colors/pix/f/unknown.gif
Executable file
After Width: | Height: | Size: 286 B |
BIN
theme/colors/pix/f/video.gif
Executable file
After Width: | Height: | Size: 274 B |
BIN
theme/colors/pix/f/web.gif
Executable file
After Width: | Height: | Size: 420 B |
BIN
theme/colors/pix/f/word.gif
Executable file
After Width: | Height: | Size: 419 B |
BIN
theme/colors/pix/f/xlam.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/xlsb.gif
Executable file
After Width: | Height: | Size: 626 B |
BIN
theme/colors/pix/f/xlsm.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/xlsx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/xltm.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/xltx.gif
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
theme/colors/pix/f/xml.gif
Executable file
After Width: | Height: | Size: 286 B |
BIN
theme/colors/pix/f/zip.gif
Executable file
After Width: | Height: | Size: 402 B |
BIN
theme/colors/pix/g/f1.png
Executable file
After Width: | Height: | Size: 4.8 KiB |
BIN
theme/colors/pix/g/f2.png
Executable file
After Width: | Height: | Size: 2.0 KiB |
BIN
theme/colors/pix/help.gif
Executable file
After Width: | Height: | Size: 441 B |
0
theme/colors/pix/i/ICONS-16x16
Executable file
BIN
theme/colors/pix/i/admin.gif
Executable file
After Width: | Height: | Size: 374 B |
BIN
theme/colors/pix/i/agg_mean.gif
Executable file
After Width: | Height: | Size: 117 B |
BIN
theme/colors/pix/i/agg_sum.gif
Executable file
After Width: | Height: | Size: 267 B |
BIN
theme/colors/pix/i/ajaxloader.gif
Executable file
After Width: | Height: | Size: 1.8 KiB |
BIN
theme/colors/pix/i/all.gif
Executable file
After Width: | Height: | Size: 468 B |
BIN
theme/colors/pix/i/backup.gif
Executable file
After Width: | Height: | Size: 409 B |
BIN
theme/colors/pix/i/calc.gif
Executable file
After Width: | Height: | Size: 374 B |
BIN
theme/colors/pix/i/calendar.gif
Executable file
After Width: | Height: | Size: 186 B |
BIN
theme/colors/pix/i/closed.gif
Executable file
After Width: | Height: | Size: 76 B |
BIN
theme/colors/pix/i/course.gif
Executable file
After Width: | Height: | Size: 378 B |
BIN
theme/colors/pix/i/cross_red_big.gif
Executable file
After Width: | Height: | Size: 333 B |
BIN
theme/colors/pix/i/cross_red_small.gif
Executable file
After Width: | Height: | Size: 131 B |
BIN
theme/colors/pix/i/db.gif
Executable file
After Width: | Height: | Size: 376 B |