NOBUG: Fixed SVG browser compatibility
[moodle.git] / install / css.php
blob94254a9cb3041176791ab928becded262ae4ae3c
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * This script prints basic CSS for the installer
20 * @package core
21 * @subpackage install
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')) {
27 // already installed
28 die;
31 // and remove some of the CSS in $content.
32 $files = array('boost/style/moodle.css');
34 $content = '';
36 foreach($files as $file) {
37 $content .= file_get_contents(__DIR__.'/../theme/'.$file) . "\n";
40 $content .= <<<EOF
42 body {
43 padding: 4px;
46 .text-ltr {
47 direction: ltr !important;
50 .headermain {
51 margin: 15px;
54 h2 {
55 text-align:center;
58 textarea, .uneditable-input {
59 width: 50%;
62 #installdiv {
63 margin-left:auto;
64 margin-right:auto;
65 padding: 5px;
66 margin-bottom: 15px;
69 #installdiv dt {
70 font-weight: bold;
73 #installdiv dd {
74 padding-bottom: 0.5em;
77 .stage {
78 margin-top: 2em;
79 margin-bottom: 2em;
80 padding: 25px;
83 #installform {
84 width: 100%;
87 #envresult {
88 text-align:left;
89 width: auto;
90 margin-left:10em;
93 #envresult dd {
94 color: red;
97 fieldset {
98 text-align:center;
99 border:none;
102 fieldset .configphp,
103 fieldset .alert {
104 text-align: left;
105 direction: ltr;
108 .sitelink {
109 text-align: center;
112 EOF;
114 // fix used urls
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');
127 echo $content;