Skip to content

Commit

Permalink
Updates - version 1.1
Browse files Browse the repository at this point in the history
Amended hardcoded home url to reference site home instead
Added css for making table internal lines visible as per Moodle tracker
issue https://tracker.moodle.org/browse/MDL-27774
Updated css to make editing buttons on blocks more visible
  • Loading branch information
LearnTribe committed May 15, 2013
1 parent 0d49ccd commit ee13d79
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 5 deletions.
2 changes: 1 addition & 1 deletion layout/frontpage.php
Expand Up @@ -49,7 +49,7 @@
echo $PAGE->headingmenu; ?>
</br><form name="form1" method="get" align="right" action="<?php echo $CFG->wwwroot.'/course/search.php' ?>" id="form1"><input type="text" size="25" name="search" id="coursesearchbox" /> <input type="submit" value="Search Modules" /></form>
</div>
<a class="logo" title="Home" href="http://inspire.rcs.ac.uk/"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<a class="logo" href="<?php echo $CFG->wwwroot; ?>" title="<?php print_string('home'); ?>"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>

<?php if ($hascustommenu) { ?>
Expand Down
2 changes: 1 addition & 1 deletion layout/general.php
Expand Up @@ -50,7 +50,7 @@
echo $PAGE->headingmenu ?>
</br><form name="form1" method="get" action="<?php echo $CFG->wwwroot.'/course/search.php' ?>" id="form1"><input type="text" size="25" name="search" id="coursesearchbox" /> <input type="submit" value="Search Modules" /></form>
</div>
<a class="logo" title="Home" href="http://inspire.rcs.ac.uk/"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<a class="logo" href="<?php echo $CFG->wwwroot; ?>" title="<?php print_string('home'); ?>"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<?php if ($hasheading) { ?>
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
</br>
Expand Down
2 changes: 1 addition & 1 deletion layout/report.php
Expand Up @@ -41,7 +41,7 @@
<div id="page-header" class="inside">
<div id="page-header-wrapper" class="wrapper clearfix">

<a class="logo" title="Home" href="https://inspire.rcs.ac.uk/"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<a class="logo" href="<?php echo $CFG->wwwroot; ?>" title="<?php print_string('home'); ?>"><img src="<?php echo $OUTPUT->pix_url('/pix_core/logo', 'theme');?>" align="left"/></a>
<?php if ($hasheading) { ?>
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
<div class="headermenu"><?php
Expand Down
41 changes: 41 additions & 0 deletions style/core.css
Expand Up @@ -118,6 +118,47 @@ fieldset#general {
font-size: 1.2em;
}


/* Table - fix for missing internal gridlines
---------------------------------------------*/
td {
border-width:1px;
}


/* Editing Icons - make them more visible
---------------------------------------------*/

.block .header .commands .icon img{
background-color: #F3F8ED;
border: 2px solid #3B4C25;
border-radius: 5px;
height: 12px;
margin-right: 3px;
padding: 2px;
width: 12px;
}

.block_action img, .block_action input{
background-color: #F3F8ED;
border: 2px solid #3B4C25;
border-radius: 3px;
height: 8px;
margin-right: 1px;
padding: 1px;
width: 8px;
}

#dockeditempanel .dockeditempanel_hd .commands img, #dockeditempanel .dockeditempanel_hd .commands input{
background-color: #F3F8ED;
border: 2px solid #3B4C25;
border-radius: 3px;
height: 8px;
margin-right: 1px;
padding: 2px;
width: 8px;
}

/* Course
-------------------------------*/

Expand Down
4 changes: 2 additions & 2 deletions version.php
Expand Up @@ -26,8 +26,8 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2013030402; // The current module version (Date: YYYYMMDDXX)
$plugin->version = 2013051403; // The current module version (Date: YYYYMMDDXX)
$plugin->requires = 2012110900; // Requires this Moodle version
$plugin->component = 'theme_mars'; // Full name of the plugin (used for diagnostics)
$plugin->maturity = MATURITY_STABLE;
$plugin->release = "1.0";
$plugin->release = "1.1";

0 comments on commit ee13d79

Please sign in to comment.