Elgg  Version 1.11
maintenance.php
Go to the documentation of this file.
1 <?php
7 
8 echo elgg_view('css/elements/reset', $vars);
9 echo elgg_view('css/elements/core', $vars);
10 echo elgg_view('css/elements/helpers', $vars);
11 
12 ?>
13 /* <style> /**/
14 
15 body {
16  font-size: 80%;
17  font-family: "Lucida Grande", Arial, Tahoma, Verdana, sans-serif;
18  line-height: 1.4em;
19 }
20 h1, h2, h3, h4, h5, h6 {
21  color: #666;
22  font-weight: bold;
23 }
24 h1 {
25  font-size: 2em;
26  margin-bottom: 1em;
27 }
28 h3 {
29  font-size: 1.3em;
30  margin-bottom: 0.4em;
31 }
32 a {
33  color: #999;
34 }
35 p {
36  margin-bottom: 15px;
37 }
38 p:last-child {
39  margin-bottom: 0;
40 }
41 
42 
43 /* ***************************************
44  LAYOUT
45 *************************************** */
46 .elgg-body-maintenance {
47  margin: 100px auto 0 auto;
48  position: relative;
49  width: 530px;
50 }
51 .elgg-module-maintenance {
52  position: absolute;
53  top: 0;
54  left: 0;
55 }
56 .elgg-module-maintenance > .elgg-head {
57  height: 17px;
58 }
59 .elgg-module-maintenance > .elgg-body {
60  padding: 10px 20px;
61 }
62 .elgg-module-maintenance > .elgg-foot {
63  height: 17px;
64 }
65 .elgg-module-maintenance > .elgg-head {
66  background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_top.png) no-repeat left top;
67 }
68 .elgg-module-maintenance > .elgg-body {
69  background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_middle.png) repeat-y left top;
70 }
71 .elgg-module-maintenance > .elgg-foot {
72  background: url(<?php echo $url; ?>_graphics/walled_garden/one_column_bottom.png) no-repeat left top;
73 }
74 .elgg-system-messages {
75  position: fixed;
76  top: 24px;
77  right: 20px;
78  z-index: 2000;
79 }
80 .elgg-system-messages li {
81  margin-top: 10px;
82 }
83 .elgg-system-messages li p {
84  margin: 0;
85 }
86 .elgg-output {
87  margin-bottom: 3em;
88 }
89 .elgg-module-maintenance-login {
90  font-size: 12px;
91  line-height: 1.4em;
92  width: 200px;
93  float: right;
94  margin: 0;
95  border: 1px solid #ccc;
96  padding: 5px;
97  border-radius: 5px;
98 }
99 
100 /* ***************************************
101  USER INPUT DISPLAY RESET
102 *************************************** */
103 
104 .elgg-output {
105  margin-top: 10px;
106 }
107 .elgg-output dt { font-weight: bold }
108 .elgg-output dd { margin: 0 0 1em 1em }
109 
110 .elgg-output ul, .elgg-output ol {
111  margin: 0 1.5em 1.5em 0;
112  padding-left: 1.5em;
113 }
114 .elgg-output ul {
115  list-style-type: disc;
116 }
117 .elgg-output ol {
118  list-style-type: decimal;
119  list-style-position: inside;
120  padding-left: .4em;
121 }
122 .elgg-output table {
123  border: 1px solid #ccc;
124 }
125 .elgg-output table td {
126  border: 1px solid #ccc;
127  padding: 3px 5px;
128 }
129 .elgg-output img {
130  max-width: 100%;
131  height: auto;
132 }
133 
134 /* ***************************************
135  Form Elements
136 *************************************** */
137 fieldset > div {
138  margin-bottom: 5px;
139 }
140 fieldset > div:last-child {
141  margin-bottom: 0;
142 }
143 label {
144  font-weight: bold;
145  color: #333;
146  font-size: 110%;
147 }
148 input, textarea {
149  border: 1px solid #ccc;
150  color: #666;
151  font: 120% Arial, Helvetica, sans-serif;
152  padding: 5px;
153  width: 100%;
154  border-radius: 5px;
155  -webkit-box-sizing: border-box;
156  -moz-box-sizing: border-box;
157  box-sizing: border-box;
158 }
159 
160 input[type=email]:focus,
161 input[type=password]:focus,
162 input[type=text]:focus,
163 input[type=url]:focus,
164 textarea:focus {
165  border: solid 1px #aaa;
166  background: #eee;
167  color:#333;
168  /* We remove outlines from specific input types so we can leave the browser
169  defaults (like glows) for everything else */
170  outline: 0 none;
171 }
172 input[type="checkbox"],
173 input[type="radio"] {
174  margin: 0 3px 0 0;
175  padding: 0;
176  border: none;
177  width: auto;
178 }
179 .elgg-input-checkboxes.elgg-horizontal li,
180 .elgg-input-radios.elgg-horizontal li {
181  display: inline;
182  padding-right: 10px;
183 }
184 .elgg-button {
185  font-size: 14px;
186  font-weight: bold;
187  border-radius: 5px;
188  width: auto;
189  padding: 2px 4px;
190  cursor: pointer;
191  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
192 }
193 .elgg-button-submit {
194  background-color: #666;
195  border-color: #555;
196  color: white;
197  text-shadow: 1px 1px 0px black;
198  text-decoration: none;
199 }
200 .elgg-button-submit:hover {
201  background-color: #333;
202  border-color: #222;
203 }
204 
205 /* ***************************************
206  Messages
207 *************************************** */
208 .elgg-message {
209  color: white;
210  display: block;
211  padding: 3px 10px;
212  opacity: 0.9;
213  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
214  border-radius: 8px;
215  font-weight: bold;
216 }
217 .elgg-state-success {
218  background-color: black;
219 }
220 .elgg-state-error {
221  background-color: red;
222 }
223 .elgg-state-notice {
224  background-color: #4690D6;
225 }
elgg message elgg state success
Definition: admin.php:252
$url
Maintenance mode CSS.
Definition: maintenance.php:6
elgg message
Definition: admin.php:240
font sans serif
Definition: admin.php:83
ul
Definition: admin.php:44
elgg plugin contributors elgg plugin contributors dd
Definition: admin.php:1475
box shadow
Definition: admin.php:358
h2
Definition: admin.php:85
elgg input text
Definition: admin.php:490
body
Definition: admin.php:36
list style position
Definition: typography.php:154
p
Definition: admin.php:118
elgg page messages
Definition: admin.php:233
clearfix elgg elgg elgg elgg page elgg page elgg elgg foot
Definition: admin.php:127
elgg module
Definition: admin.php:324
text decoration
Definition: admin.php:99
$CONFIG walled_garden
Is current site in walled garden mode?
Definition: config.php:213
margin right
Definition: admin.php:181
font weight
Definition: admin.php:65
elgg output dt
Definition: typography.php:142
em
Definition: admin.php:47
elgg admin notices a elgg admin notice
Definition: admin.php:265
h1
Definition: admin.php:85
fieldset div
Definition: admin.php:470
font family
Definition: admin.php:83
h6
Definition: admin.php:85
z index
Definition: admin.php:354
min width
Definition: admin.php:166
border top
Definition: admin.php:386
clearfix elgg elgg elgg elgg page elgg page elgg elgg elgg elgg col elgg image block
Definition: admin.php:127
elgg message elgg state error
Definition: admin.php:247
margin bottom
Definition: admin.php:38
clearfix elgg elgg elgg elgg page elgg page elgg head
Definition: admin.php:127
elgg button submit
Definition: admin.php:545
border color
Definition: admin.php:42
font Tahoma
Definition: admin.php:83
ui datepicker calendar ui state hover
Definition: admin.php:646
h4
Definition: admin.php:85
elgg echo
Translates a string.
Definition: languages.js:43
font Verdana
Definition: admin.php:83
elgg_get_site_url($site_guid=0)
Get the URL for the current (or specified) site.
elgg_view($view, $vars=array(), $bypass=false, $ignored=false, $viewtype= '')
Return a parsed view.
Definition: views.php:354
font Arial
Definition: admin.php:83
img
Definition: admin.php:40
td
Definition: admin.php:63
ol
Definition: admin.php:44
border radius
Definition: admin.php:244
elgg menu user li
Definition: admin.php:211
elgg button
Definition: admin.php:527
list style
Definition: admin.php:1174
login(\ElggUser $user, $persistent=false)
Logs in a specified .
Definition: sessions.php:320
h5
Definition: admin.php:85
if(!$site) if(!($site instanceof ElggSite)) $site url
font size
Definition: admin.php:81
webkit box sizing
Definition: admin.php:292
a
Definition: admin.php:97
label
Definition: admin.php:460
list style type
Definition: admin.php:748
elgg table input[type=checkbox]
Definition: admin.php:400
$site email
margin left
Definition: admin.php:290
elgg fieldset
Definition: admin.php:513
h3
Definition: admin.php:85
this section has the sole purpose of protecting the integrity of the free software distribution system
Definition: LICENSE.txt:218
table
Definition: admin.php:59
line height
Definition: admin.php:82
if(file_exists($welcome)) $vars
Definition: upgrade.php:93
elgg output
Definition: typography.php:138