[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 /* 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. 13 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/>. 16 */ /** 17 * Wiki module style sheet 18 * 19 * @package mod-wiki-2.0 20 * @copyright 2009 Marc Alier, Jordi Piguillem marc.alier@upc.edu 21 * @copyright 2009 Universitat Politecnica de Catalunya http://www.upc.edu 22 * 23 * @author Jordi Piguillem 24 * @author Marc Alier 25 * @author David Jimenez 26 * @author Josep Arus 27 * @author Kenneth Riba 28 * 29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 30 */ 31 .wiki_contentbox { 32 width: 80%; 33 margin: auto; 34 min-width: 200px; 35 min-height: 100px; 36 } 37 38 .wiki_editor { 39 width: 50%; 40 margin: auto; 41 margin-top: 10px; 42 margin-bottom: 10px; 43 } 44 45 .wiki_previewbox { 46 width: 50%; 47 margin: auto; 48 border: thin solid blue; 49 } 50 51 .wiki_button { 52 margin: 5px; 53 } 54 55 .wiki_warning { 56 color: red; 57 } 58 59 .emptycomments { 60 color: red; 61 display: inline; 62 } 63 64 .wiki-toc { 65 border: 1px solid #BBB; 66 background: #EEE; 67 margin: 16px; 68 padding: 8px; 69 } 70 71 .wiki-toc-title { 72 color: #666; 73 font-size: 1.1em; 74 font-variant: small-caps; 75 text-align: center; 76 } 77 78 .wiki-toc-section { 79 padding: 0; 80 margin: 2px 8px; 81 } 82 83 .wiki-toc-section-2 { 84 padding-left: 12px; 85 } 86 87 .wiki-toc-section-3 { 88 padding-left: 24px; 89 } 90 91 .wiki_form-button { 92 margin-left: 0%; 93 } 94 95 .wiki-form-center { 96 text-align: center; 97 margin: auto; 98 width: 320px; 99 } 100 101 .wiki-upload-table { 102 margin: 8px auto; 103 clear: both; 104 } 105 106 .wiki-upload-table table { 107 margin: auto; 108 } 109 110 .wiki-upload-table h3 { 111 margin: 4px 0px; 112 text-align: center; 113 } 114 115 .wiki-upload-section { 116 border: 1px solid #EEE; 117 width: 400px; 118 margin: 8px auto; 119 } 120 121 .wiki-upload-section legend { 122 font-weight: bold; 123 font-size: 0.9em; 124 margin-left: 16px; 125 } 126 127 .wiki-tags { 128 text-align: right; 129 } 130 131 .wiki_modifieduser p { 132 line-height: 35px; 133 } 134 135 .wiki_modifieduser img { 136 border: thin solid black; 137 } 138 139 .wiki_restore_yes, .wiki_deletecomment_yes, 140 .dir-rtl .wiki_restore_no, .dir-rtl .wiki_deletecomment_no { 141 float: left; 142 } 143 .wiki_restore_no, .wiki_deletecomment_no, 144 .dir-rtl .wiki_restore_yes, .dir-rtl .wiki_deletecomment_yes { 145 float: right; 146 } 147 148 .wiki_restoreform, .wiki_deletecommentform { 149 width: 10%; 150 margin: auto; 151 } 152 153 .wiki_versionuser { 154 float: left; 155 } 156 157 .wiki_diffuserleft,.wiki_diffuserright { 158 font-weight: normal; 159 padding-top: 1%; 160 } 161 162 .wiki_diffuserleft { 163 float: right; 164 } 165 166 .dir-rtl .wiki_diffuserleft { 167 float: left; 168 } 169 170 .wiki_diffuserright { 171 float: left; 172 } 173 174 .wiki_compareheading { 175 font-weight: normal; 176 } 177 178 .wiki_restore,.wiki_diffview,.wiki_difftime,.wiki_headingtime { 179 font-size: 0.8em; 180 font-weight: normal; 181 } 182 183 .wiki_difftime,.wiki_headingtime { 184 font-style: oblique; 185 text-align: center; 186 } 187 188 .wiki_diff_oldpaging { 189 float: left; 190 width: 40%; 191 min-width: 200px; 192 margin-left: 5%; 193 } 194 195 .wiki_diff_newpaging { 196 float: right; 197 width: 40%; 198 min-width: 200px; 199 margin-right: 5%; 200 } 201 202 .wiki_diff_old,.wiki_diff_new { 203 float: left; 204 min-width: 200px; 205 width: 40%; 206 } 207 208 .wiki_difftable td { 209 width: 50%; 210 float: left; 211 } 212 213 .wiki_histdate { 214 text-align: left; 215 } 216 217 .wiki_histnewdate { 218 border-top: 1px dotted gray; 219 } 220 221 .ouw_deleted { 222 background: #FFFFAA; 223 color: red; 224 text-decoration: line-through; 225 } 226 227 .ouw_added { 228 background: #CCFFCC; 229 color: red; 230 } 231 232 a.wiki_newentry:link, a.wiki_newentry:visited { 233 color: red; 234 font-style: italic; 235 } 236 237 .wiki_newentry a { 238 color: red; 239 font-style: italic; 240 } 241 242 #intro.generalbox { 243 margin-top: 10px; 244 padding: 5px; 245 } 246 247 .wiki_navigation_container { 248 margin: 0 auto; 249 } 250 251 .wiki_navigation_from { 252 float: left; 253 width: 40%; 254 min-width: 200px; 255 margin-left: 5%; 256 } 257 258 .wiki_navigation_to { 259 float: left; 260 width: 40%; 261 min-width: 200px; 262 margin-right: 5%; 263 } 264 265 .wiki_headingtitle { 266 text-align: center; 267 } 268 269 .wiki_clear { 270 clear: both; 271 } 272 273 .wiki_right { 274 text-align: right; 275 } 276 277 .wiki_index { 278 text-align: right; 279 } 280 281 .notunderlined { 282 text-decoration: none; 283 } 284 285 a.wiki_edit_section { 286 font-size: 0.6em; 287 vertical-align: top; 288 position: relative; 289 float: right; 290 } 291 292 .midpad { 293 text-align: center; 294 margin-top: 0.4em; 295 margin-bottom: 0.4em; 296 } 297 298 .block_wiki_search ul { 299 margin-top: 0.5em; 300 margin-bottom: 3px; 301 } 302 303 .wiki-attachment:before { 304 content: url("/mod/wiki/pix/attachment.png"); 305 padding-right: 2px; 306 } 307 308 /** Print CSS */ 309 #wiki_printable_content { 310 text-align: left; 311 } 312 313 .dir-rtl #wiki_printable_content { 314 text-align: right; 315 } 316 317 #wiki_printable_content a { 318 color: black; 319 } 320 321 #wiki_printable_title { 322 font-size: 2.2em; 323 text-decoration: underline; 324 } 325 326 .wiki_diff_boxes { 327 width: 100%; 328 clear: both; 329 } 330 331 .wiki_diff_paging { 332 width: 100%; 333 clear: both; 334 } 335 336 .wiki_grayline { 337 color: gray 338 } 339 340 .wikisearchresults{ 341 padding-left: 50px; 342 padding-top: 20px; 343 } 344 345 .wiki-diff-container {width:95%;margin:10px auto;} 346 .wiki-diff-container .wiki-diff-leftside, 347 .wiki-diff-container .wiki-diff-rightside {width:49.5%;margin:0;padding:0;float:left;} 348 .wiki-diff-container .wiki-diff-rightside {margin-left:1%;} 349 .wiki-diff-container .wiki-diff-heading, 350 .wiki-diff-container .no-overflow {padding:10px;border:1px solid #DDD;} 351 .wiki-diff-container .wiki-diff-rightside .wiki_diffversion {text-align:right;} 352 353 .wikieditor-toolbar img{ 354 width: 22px; 355 height: 22px; 356 vertical-align: middle; 357 } 358 359 .path-mod-wiki .printicon { 360 background: url([[pix:t/print]]) no-repeat scroll 2px center transparent; padding-left: 20px; 361 } 362 #page-mod-wiki-prettyview .displayprinticon {text-align: right;}
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |