2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This script prints basic CSS for the installer
22 * @copyright 2011 Petr Skoda (http://skodak.org)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 if (file_exists(__DIR__
.'/../config.php')) {
31 // and remove some of the CSS in $content.
32 $files = array('boost/style/moodle.css');
36 foreach($files as $file) {
37 $content .= file_get_contents(__DIR__
.'/../theme/'.$file) . "\n";
47 direction: ltr !important;
58 textarea, .uneditable-input {
74 padding-bottom: 0.5em;
115 $content = str_replace('[[pix:theme|hgradient]]', '../theme/standard/pix/hgradient.jpg', $content);
116 $content = str_replace('[[pix:theme|vgradient]]', '../theme/standard/pix/vgradient.jpg', $content);
118 @header
('Content-Disposition: inline; filename="css.php"');
119 @header
('Cache-Control: no-store, no-cache, must-revalidate');
120 @header
('Cache-Control: post-check=0, pre-check=0', false);
121 @header
('Pragma: no-cache');
122 @header
('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
123 @header
('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
124 @header
('Accept-Ranges: none');
125 @header
('Content-Type: text/css; charset=utf-8');