slitaz-forge rev 9

Add doc.slitaz.org SliTaz theme
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 22 13:12:02 2011 +0100 (2011-02-22)
parents 41f54a8ee839
children 19bb493d351d
files doc/lib/tpl/slitaz-brown/UWEB.css doc/lib/tpl/slitaz-brown/design.css doc/lib/tpl/slitaz-brown/detail.php doc/lib/tpl/slitaz-brown/images/UWEB.png doc/lib/tpl/slitaz-brown/images/button-dw.png doc/lib/tpl/slitaz-brown/images/button-xhtml.png doc/lib/tpl/slitaz-brown/images/favicon.ico doc/lib/tpl/slitaz-brown/images/header-img.png doc/lib/tpl/slitaz-brown/images/link_icon.gif doc/lib/tpl/slitaz-brown/images/logo.png doc/lib/tpl/slitaz-brown/images/mail_icon.gif doc/lib/tpl/slitaz-brown/images/tools.png doc/lib/tpl/slitaz-brown/layout.css doc/lib/tpl/slitaz-brown/main.php doc/lib/tpl/slitaz-brown/media.css doc/lib/tpl/slitaz-brown/mediamanager.php doc/lib/tpl/slitaz-brown/print.css doc/lib/tpl/slitaz-brown/rtl.css doc/lib/tpl/slitaz-brown/style.ini
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/doc/lib/tpl/slitaz-brown/UWEB.css	Tue Feb 22 13:12:02 2011 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +/**
     1.5 + * This stylesheet adds the Universal Wiki Edit Button log to the edit page button
     1.6 + *
     1.7 + * For more info about this Wiki community project visit http://www.aboutus.org/uweb
     1.8 +
     1.9 +
    1.10 +html>body div.dokuwiki form.btn_edit input.button {
    1.11 +  padding: 0.125em 0.4em 0.125em 2em;
    1.12 +  background:  __background__ url(images/UWEB.png) no-repeat 0.2em 0.2em;
    1.13 +}
    1.14 +
    1.15 +/* nice alphatransparency background except for IE <7 */
    1.16 +html>body div.dokuwiki form.btn_edit input.button {
    1.17 +  padding: 0px 0px 0px 18px;
    1.18 +  background: url(images/UWEB.png) no-repeat left bottom;
    1.19 +}
    1.20 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/doc/lib/tpl/slitaz-brown/design.css	Tue Feb 22 13:12:02 2011 +0100
     2.3 @@ -0,0 +1,1101 @@
     2.4 +/**
     2.5 + * Design elements for default Template
     2.6 + *
     2.7 + * @author Andreas Gohr <andi@splitbrain.org>
     2.8 + * @author Anika Henke <henke@cosmocode.de>
     2.9 + */
    2.10 +
    2.11 +/* -------------- general elements --------------- */
    2.12 +
    2.13 +/* * { padding: 0; margin: 0; } */
    2.14 +
    2.15 +/* SliTaz stuff */
    2.16 +html {
    2.17 +	min-height:  102%;
    2.18 +}
    2.19 +
    2.20 +body {
    2.21 +	background: #ffffff;
    2.22 +	color: black;
    2.23 +	font: 13px sans-serif, vernada, arial;
    2.24 +	margin: 0;
    2.25 +	border-top: 34px solid #f1f1f1;
    2.26 +}
    2.27 +
    2.28 +/* Accessibility */
    2.29 +
    2.30 +#access {
    2.31 +	position: absolute;
    2.32 +	top: 0px;
    2.33 +	right: 0px;
    2.34 +	text-align: right;
    2.35 +	width: auto;
    2.36 +	margin: 0;
    2.37 +	padding: 4px 4px 4px 20px;
    2.38 +	font-size: 11px;
    2.39 +	font-weight: bold;
    2.40 +}
    2.41 +
    2.42 +#access a {
    2.43 +	text-decoration: none;
    2.44 +	font-weight: bold
    2.45 +}
    2.46 +
    2.47 +#access a:hover, div.plugin_translation a:hover {
    2.48 +	background: transparent;
    2.49 +	color: #b64b22;
    2.50 +}
    2.51 +
    2.52 +#access img {
    2.53 +	vertical-align: middle;
    2.54 +}
    2.55 +
    2.56 +/* Header and title */
    2.57 +
    2.58 +#header {
    2.59 +	/*background: #f0ba08 url(pics/website/header.png) repeat-x top;*/
    2.60 +	background: #351a0a url(images/header-img.png) no-repeat top right;
    2.61 +	color: black;
    2.62 +	width: 100%;
    2.63 +	height: 42px;
    2.64 +	border-top: 1px solid black;
    2.65 +	border-bottom: 1px solid #999;
    2.66 +	margin-bottom: 33px;
    2.67 +}
    2.68 +
    2.69 +#titre {
    2.70 +	position: absolute;
    2.71 +	font-size: 14px;
    2.72 +	font-weight: bolder ;
    2.73 +	left: 180px;
    2.74 +	top: 18px;
    2.75 +}
    2.76 +
    2.77 +#logo {
    2.78 +	position: absolute;
    2.79 +	float: left;
    2.80 +	left: 16px;
    2.81 +	top: -10px;
    2.82 +	width: 200px;
    2.83 +	height: 74px;
    2.84 +}
    2.85 +
    2.86 +/* Page content */
    2.87 +
    2.88 +#content {
    2.89 +	background: white;
    2.90 +	color: black;
    2.91 +	text-align: justify;
    2.92 +	height: auto;
    2.93 +	margin: 0;
    2.94 +	padding: 0px 80px 40px 80px;
    2.95 +}
    2.96 +
    2.97 +#content li, #content-full li {
    2.98 +	line-height: 1.5em;
    2.99 +	text-align: left;
   2.100 +}
   2.101 +
   2.102 +/* Box and block. */
   2.103 +
   2.104 +.infobox {
   2.105 +	margin: 20px 60px;
   2.106 +	padding: 12px;
   2.107 +	background: #f8f8f8;
   2.108 +}
   2.109 +
   2.110 +.infobox img { vertical-align: middle; }
   2.111 +/* .infobox:hover { background-color: #f2b21d; } */
   2.112 +.infobox:hover { background-color: #FBFBFB; }
   2.113 +
   2.114 +.block {
   2.115 +	/*padding-bottom: 35%;*/
   2.116 +	color: black;
   2.117 +	min-height: 200px;
   2.118 +	margin-bottom: 20px;
   2.119 +}
   2.120 +
   2.121 +.block ul {
   2.122 +	list-style-type: none;
   2.123 +	margin: 0;
   2.124 +	padding: 0 20px;
   2.125 +}
   2.126 +
   2.127 +.block_left {
   2.128 +	width: 46%;
   2.129 +	float: left;
   2.130 +	background-color: #eaeaea;
   2.131 +	margin: 4px 2px;
   2.132 +	padding: 0 10px 10px 10px;
   2.133 +}
   2.134 +
   2.135 +.block_right {
   2.136 +	width: 46%;
   2.137 +	float: right;
   2.138 +	background-color: #eaeaea;
   2.139 +	margin: 4px 2px;
   2.140 +	padding: 0 10px 10px 10px;
   2.141 +}
   2.142 +
   2.143 +#block_top {
   2.144 +	color: black;
   2.145 +	background-color: #eaeaea;
   2.146 +	min-height: 180px;
   2.147 +	margin-bottom: 0;
   2.148 +	margin-right: 340px;
   2.149 +	padding: 5px 0 0 10px;
   2.150 +}
   2.151 +
   2.152 +#block_nav {
   2.153 +	width: 300px;
   2.154 +	min-height: 180px;
   2.155 +	float: right;
   2.156 +	background-color: #eaeaea;
   2.157 +	margin: 0;
   2.158 +	padding: 5px 0 0 10px;
   2.159 +}
   2.160 +
   2.161 +.infobox, .block_left, .block_right, #block_top, #block_nav, #footer {
   2.162 +	-moz-border-radius: 8px;
   2.163 +	-webkit-border-radius: 8px;
   2.164 +	border-radius: 8px;
   2.165 +	-moz-box-shadow: 0 1px 3px #666;
   2.166 +	-webkit-box-shadow: 0 1px 3px #666;
   2.167 +	box-shadow: 0 1px 3px #666;
   2.168 +	/* CSS3 transition */
   2.169 +	-webkit-transition-property: background-color;
   2.170 +	-webkit-transition-duration: 2s;
   2.171 +	-moz-transition-property: background-color;
   2.172 +	-moz-transition-duration: 2s;
   2.173 +	transition-property: background-color;
   2.174 +	transition-duration: 2s;
   2.175 +}
   2.176 +
   2.177 +#block_nav {
   2.178 +	font-weight: bold;
   2.179 +}
   2.180 +
   2.181 +#block_nav a {
   2.182 +	text-decoration: none;
   2.183 +}
   2.184 +
   2.185 +#block_nav li a:hover {
   2.186 +	color: #b64b22;
   2.187 +}
   2.188 +
   2.189 +#block_nav ul {
   2.190 +	margin: 0;
   2.191 +	list-style-type: none;
   2.192 +}
   2.193 +
   2.194 +#block_nav h3, #block_top h3 {
   2.195 +	font-size: 110%;
   2.196 +}
   2.197 +
   2.198 +.block_left:hover, .block_right:hover, #block_top:hover,
   2.199 +#block_nav:hover, #footer:hover { 
   2.200 +	background-color: #f8f8f8;
   2.201 +}
   2.202 +
   2.203 +.right_box {
   2.204 +	width: 50%;
   2.205 +	float: right;
   2.206 +}
   2.207 +	
   2.208 +/* Button */
   2.209 +
   2.210 +.button { margin-left: 20px; }
   2.211 +
   2.212 +.button a { 
   2.213 +	background-color: #b64b22;
   2.214 +	color: #ffffff;
   2.215 +	margin-right: 6px;
   2.216 +	padding: 6px 10px;
   2.217 +	font-size: 14px;
   2.218 +	-moz-border-radius: 4px;
   2.219 +	-webkit-border-radius: 4px;
   2.220 +	border-radius: 4px;
   2.221 +	-moz-box-shadow: 0 1px 3px #666;
   2.222 +	-webkit-box-shadow: 0 1px 3px #666;
   2.223 +	box-shadow: 0 1px 3px #666;
   2.224 +}
   2.225 +
   2.226 +.button a:hover, input[type=submit]:hover { 
   2.227 +	background-color: #a3431f;
   2.228 +	color: #ffffff;
   2.229 +}
   2.230 +
   2.231 +/* HTML styles */
   2.232 +
   2.233 +h1 {
   2.234 +	color: #444444;
   2.235 +	background: transparent;
   2.236 +	text-align: left;
   2.237 +	margin: 0;
   2.238 +	font-size: 150%;
   2.239 +	font-weight: bold;
   2.240 +	padding: 0;
   2.241 +}
   2.242 +
   2.243 +h2 {
   2.244 +	color: #b64b22;
   2.245 +	padding: 0;
   2.246 +	margin: 20px 0 0 0;
   2.247 +	font-size: 130%;
   2.248 +	font-weight: bold;
   2.249 +}
   2.250 +
   2.251 +h3 {
   2.252 +	font-weight: bold;
   2.253 +	color: #666666;
   2.254 +	background: transparent;
   2.255 +}
   2.256 +	
   2.257 +h3 img { 
   2.258 +	vertical-align: middle;
   2.259 +	width: 20px;
   2.260 +	height: 20px;
   2.261 +	padding-right: 4px; 
   2.262 +}
   2.263 +
   2.264 +a {
   2.265 +	text-decoration: underline;
   2.266 +	color: #103A5E;
   2.267 +	background: inherit;
   2.268 +}
   2.269 +
   2.270 +a:hover {
   2.271 +	text-decoration: none;
   2.272 +	color: blue;
   2.273 +	background: inherit;
   2.274 +}
   2.275 +
   2.276 +code {
   2.277 +	font-size: 12px;
   2.278 +	color: #669900;
   2.279 +	background: inherit;
   2.280 +}
   2.281 +
   2.282 +tt {
   2.283 +	color: #15EE15;
   2.284 +	background: inherit;
   2.285 +}
   2.286 +
   2.287 +img {
   2.288 +	border: 0pt none;
   2.289 +}
   2.290 +
   2.291 +pre {
   2.292 +	padding: 5px;
   2.293 +	color: black;
   2.294 +	background: #E1E0B0;
   2.295 +}
   2.296 +
   2.297 +pre.script {
   2.298 +	padding: 10px;
   2.299 +	color: black;
   2.300 +	background: #E8E8E8;
   2.301 +	border: 1px inset #606060;
   2.302 +}
   2.303 +
   2.304 +textarea {
   2.305 +	background: #E5E5E5;
   2.306 +	margin-top: 12px;
   2.307 +}
   2.308 +
   2.309 +.year:after {
   2.310 +	/* content: "2007-2011"; */
   2.311 +	content: "2011";
   2.312 +}
   2.313 +
   2.314 +/* Footer */
   2.315 +
   2.316 +#footer {
   2.317 +	margin: 0px 80px 80px 80px;
   2.318 +	padding: 10px;
   2.319 +	background: #eaeaea;
   2.320 +	color: #666666;
   2.321 +	height: 180px;
   2.322 +	clear: both;
   2.323 +	border-radius: 8px;
   2.324 +	-moz-border-radius: 8px;
   2.325 +	-webkit-border-radius: 8px;
   2.326 +	-moz-box-shadow: 0 1px 3px #666;
   2.327 +	-webkit-box-shadow: 0 1px 3px #666;
   2.328 +	box-shadow: 0 1px 3px #666;
   2.329 +}
   2.330 +#footer a {
   2.331 +	background: inherit;
   2.332 +	color: #666666;
   2.333 +}
   2.334 +#footer a:hover {
   2.335 +	background: inherit;
   2.336 +	color: #333333;
   2.337 +}
   2.338 +#footer ul {
   2.339 +	list-style-type: none;
   2.340 +}
   2.341 +#footer li {
   2.342 +	padding: 2px;
   2.343 +}
   2.344 +#footer h4 {
   2.345 +	margin: 0 20px;
   2.346 +	font-size: 125%;
   2.347 +}
   2.348 +
   2.349 +/* the document */
   2.350 +div.dokuwiki div.page {
   2.351 +  text-align: justify;
   2.352 +  background: #ffffff;
   2.353 +}
   2.354 +
   2.355 +div.dokuwiki table {
   2.356 +  font-size: 100%;
   2.357 +}
   2.358 +
   2.359 +div.dokuwiki tr,
   2.360 +div.dokuwiki td,
   2.361 +div.dokuwiki th {
   2.362 +}
   2.363 +
   2.364 +div.dokuwiki img {
   2.365 +  border: 0;
   2.366 +}
   2.367 +
   2.368 +div.dokuwiki p,
   2.369 +div.dokuwiki blockquote,
   2.370 +div.dokuwiki table,
   2.371 +div.dokuwiki pre {
   2.372 +  margin: 0 0 1.0em 0;
   2.373 +}
   2.374 +
   2.375 +div.dokuwiki hr {
   2.376 +  border: 0px;
   2.377 +  border-top: 1px solid __border__;
   2.378 +  text-align: center;
   2.379 +  height: 0px;
   2.380 +}
   2.381 +
   2.382 +div.dokuwiki div.nothing {
   2.383 +  text-align: center;
   2.384 +  margin: 2em;
   2.385 +}
   2.386 +
   2.387 +/* ---------------- forms ------------------------ */
   2.388 +
   2.389 +div.dokuwiki form {
   2.390 +  border: none;
   2.391 +  display: inline;
   2.392 +}
   2.393 +
   2.394 +div.dokuwiki label.block {
   2.395 +  display: block;
   2.396 +  text-align: right;
   2.397 +  font-weight: bold;
   2.398 +  min-height: 20px;
   2.399 +  margin: 0;
   2.400 +}
   2.401 +
   2.402 +div.dokuwiki label.simple {
   2.403 +  display: block;
   2.404 +  text-align: left;
   2.405 +  font-weight: normal;
   2.406 +}
   2.407 +
   2.408 +div.dokuwiki label.block input.edit {
   2.409 +  width: 50%;
   2.410 +}
   2.411 +
   2.412 +div.dokuwiki fieldset {
   2.413 +  width: 300px;
   2.414 +  text-align: center;
   2.415 +  border: 1px solid __border__;
   2.416 +  padding: 0.5em;
   2.417 +  margin: auto;
   2.418 +}
   2.419 +
   2.420 +div.dokuwiki textarea.edit {
   2.421 +  font-family: monospace;
   2.422 +  font-size: 14px;
   2.423 +  color: __text__;
   2.424 +  background-color: __background__;
   2.425 +  border: 1px solid __border__;
   2.426 +  padding: 0.3em 0 0 0.3em;
   2.427 +  width: 100%;
   2.428 +}
   2.429 +
   2.430 +div.dokuwiki input.edit,
   2.431 +div.dokuwiki select.edit {
   2.432 +  font-size: 100%;
   2.433 +  border: 1px solid __border__;
   2.434 +  color: __text__;
   2.435 +  background-color: __background__;
   2.436 +  vertical-align: middle;
   2.437 +  margin: 1px;
   2.438 +  padding: 0.20em 0.3em;
   2.439 +  display: inline;
   2.440 +}
   2.441 +
   2.442 +div.dokuwiki select.edit {
   2.443 +  padding: 0.1em 0;
   2.444 +}
   2.445 +
   2.446 +div.dokuwiki input.missing {
   2.447 +  font-size: 100%;
   2.448 +  border: 1px solid __border__;
   2.449 +  color: __text__;
   2.450 +  background-color: #ffcccc;
   2.451 +  vertical-align: middle;
   2.452 +  margin: 1px;
   2.453 +  padding: 0.20em 0.3em;
   2.454 +  display: inline;
   2.455 +}
   2.456 +
   2.457 +/* disabled style - not understood by IE */
   2.458 +div.dokuwiki textarea.edit[disabled],
   2.459 +div.dokuwiki textarea.edit[readonly],
   2.460 +div.dokuwiki input.edit[disabled],
   2.461 +div.dokuwiki input.edit[readonly],
   2.462 +div.dokuwiki select.edit[disabled] {
   2.463 +  background-color: __background_neu__!important;
   2.464 +  color: __text_neu__!important;
   2.465 +}
   2.466 +
   2.467 +/* edit form */
   2.468 +div.dokuwiki div.toolbar,
   2.469 +div.dokuwiki div#wiki__editbar {
   2.470 +   margin: 2px 0;
   2.471 +   text-align: left;
   2.472 +}
   2.473 +div.dokuwiki div#size__ctl {
   2.474 +   float: right;
   2.475 +   width: 60px;
   2.476 +   height: 2.7em;
   2.477 +}
   2.478 +div.dokuwiki #size__ctl img {
   2.479 +   cursor: pointer;
   2.480 +}
   2.481 +div.dokuwiki div#wiki__editbar div.editButtons {
   2.482 +   float: left;
   2.483 +   padding: 0 1.0em 0.7em 0;
   2.484 +}
   2.485 +div.dokuwiki div#wiki__editbar div.summary {
   2.486 +   float: left;
   2.487 +}
   2.488 +div.dokuwiki .nowrap {
   2.489 +   white-space: nowrap;
   2.490 +}
   2.491 +div.dokuwiki div#draft__status {
   2.492 +  float: right;
   2.493 +  color: __text_alt__;
   2.494 +}
   2.495 +
   2.496 +/* --------- buttons ------------------- */
   2.497 +
   2.498 +
   2.499 +div.dokuwiki input.button,
   2.500 +div.dokuwiki button.button {
   2.501 +  border: 0px solid #eaeaea;
   2.502 +  color: #0F314E;
   2.503 +  background-color: transparent;
   2.504 +  vertical-align: middle;
   2.505 +  text-decoration: none;
   2.506 +  font-size: 12px;
   2.507 +  font-weight: bold;
   2.508 +  cursor: pointer;
   2.509 +  padding: 0;
   2.510 +}
   2.511 +
   2.512 +div.dokuwiki input:hover.button {
   2.513 +  color: #DF8F06;
   2.514 +}
   2.515 +
   2.516 +* html div.dokuwiki input.button,
   2.517 +* html div.dokuwiki button.button {
   2.518 +  height: 24px;
   2.519 +}
   2.520 +
   2.521 +div.dokuwiki div.secedit input.button {
   2.522 +  border: 1px solid #eaeaea;
   2.523 +  color: #3E1220;
   2.524 +  background-color: transparent;
   2.525 +  vertical-align: middle;
   2.526 +  text-decoration: none;
   2.527 +  margin: 0;
   2.528 +  padding: 0;
   2.529 +  font-size: 10px;
   2.530 +  cursor: pointer;
   2.531 +  float: right;
   2.532 +  display: inline;
   2.533 +}
   2.534 +
   2.535 +/* ----------- page navigator ------------- */
   2.536 +
   2.537 +div.dokuwiki div.pagenav {
   2.538 +    margin: 1em 0 0 0;
   2.539 +}
   2.540 +
   2.541 +div.dokuwiki div.pagenav-prev {
   2.542 +    text-align: right;
   2.543 +    float: left;
   2.544 +    width: 49%
   2.545 +}
   2.546 +
   2.547 +div.dokuwiki div.pagenav-next {
   2.548 +    text-align: left;
   2.549 +    float: right;
   2.550 +    width: 49%
   2.551 +}
   2.552 +
   2.553 +/* --------------- Links ------------------ */
   2.554 +
   2.555 +div.dokuwiki a:link,
   2.556 +div.dokuwiki a:visited {
   2.557 +  color: __extern__;
   2.558 +  text-decoration: none;
   2.559 +}
   2.560 +div.dokuwiki a:hover,
   2.561 +div.dokuwiki a:active {
   2.562 +  color: __text__;
   2.563 +  text-decoration: underline;
   2.564 +}
   2.565 +
   2.566 +div.dokuwiki h1 a {
   2.567 +  color: #3E1220 !important;
   2.568 +  text-decoration: none !important;
   2.569 +}
   2.570 +
   2.571 +div.dokuwiki h2 a {
   2.572 +  color: #DF8F06 !important;
   2.573 +  text-decoration: none !important;
   2.574 +  border-left: 10px solid #F3F3F3;
   2.575 +  padding: 4px 0px 4px 4px;
   2.576 +}
   2.577 +
   2.578 +div.dokuwiki h3 a,
   2.579 +div.dokuwiki h4 a,
   2.580 +div.dokuwiki h5 a,
   2.581 +div.dokuwiki a.nolink {
   2.582 +  color: #6c0023 !important;
   2.583 +  text-decoration: none !important;
   2.584 +}
   2.585 +
   2.586 +/* external link */
   2.587 +div.dokuwiki a.urlextern {
   2.588 +  background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
   2.589 +  padding: 1px 0px 1px 16px;
   2.590 +}
   2.591 +
   2.592 +/* windows share */
   2.593 +div.dokuwiki a.windows {
   2.594 +  background: transparent url(images/windows.gif) 0px 1px no-repeat;
   2.595 +  padding: 1px 0px 1px 16px;
   2.596 +}
   2.597 +
   2.598 +/* interwiki link (icon are set by dokuwiki) */
   2.599 +div.dokuwiki a.interwiki {
   2.600 +}
   2.601 +
   2.602 +/* link to some embedded media */
   2.603 +div.dokuwiki a.media {
   2.604 +}
   2.605 +
   2.606 +div.dokuwiki a.urlextern:link,
   2.607 +div.dokuwiki a.windows:link,
   2.608 +div.dokuwiki a.interwiki:link {
   2.609 +  color: __extern__;
   2.610 +}
   2.611 +
   2.612 +div.dokuwiki a.urlextern:visited,
   2.613 +div.dokuwiki a.windows:visited,
   2.614 +div.dokuwiki a.interwiki:visited {
   2.615 +  color: purple;
   2.616 +}
   2.617 +div.dokuwiki a.urlextern:hover,
   2.618 +div.dokuwiki a.urlextern:active,
   2.619 +div.dokuwiki a.windows:hover,
   2.620 +div.dokuwiki a.windows:active,
   2.621 +div.dokuwiki a.interwiki:hover,
   2.622 +div.dokuwiki a.interwiki:active {
   2.623 +  color: __text__;
   2.624 +}
   2.625 +
   2.626 +/* email link */
   2.627 +div.dokuwiki a.mail {
   2.628 +  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
   2.629 +  padding: 1px 0px 1px 16px;
   2.630 +}
   2.631 +
   2.632 +/* existing wikipage */
   2.633 +div.dokuwiki a.wikilink1 {
   2.634 +  color: #0F314E;
   2.635 +  text-decoration: underline;
   2.636 +}
   2.637 +div.dokuwiki a.wikilink1:hover {
   2.638 +  text-decoration: none;
   2.639 +  color: blue;
   2.640 +}
   2.641 +
   2.642 +/* not existing wikipage */
   2.643 +div.dokuwiki a.wikilink2 {
   2.644 +  color: __missing__ !important;
   2.645 +  text-decoration: none !important;
   2.646 +  border-bottom: dashed 1px __missing__ !important;
   2.647 +}
   2.648 +
   2.649 +/* ------------- Page elements ----------------- */
   2.650 +
   2.651 +div.dokuwiki div.preview {
   2.652 +  background-color: __background_neu__;
   2.653 +  margin: 0 0 0 2em;
   2.654 +  padding: 4px;
   2.655 +  border: 1px dashed __text__;
   2.656 +}
   2.657 +
   2.658 +div.dokuwiki div.breadcrumbs {
   2.659 +  background-color: #f1f1f1;
   2.660 +  color: __text_neu__;
   2.661 +  font-size: 85%;
   2.662 +  padding: 1px 0px 1px 18px;
   2.663 +  margin: 0px 100px 0px 100px;
   2.664 +}
   2.665 +
   2.666 +div.dokuwiki span.user {
   2.667 +  color: __text_other__;
   2.668 +  font-size: 90%;
   2.669 +}
   2.670 +
   2.671 +div.dokuwiki li.minor {
   2.672 +  color: __text_neu__;
   2.673 +  font-style: italic;
   2.674 +}
   2.675 +
   2.676 +/* embedded images */
   2.677 +div.dokuwiki img.media {
   2.678 +  margin: 3px;
   2.679 +}
   2.680 +
   2.681 +div.dokuwiki img.medialeft {
   2.682 +  border: 0;
   2.683 +  float: left;
   2.684 +  margin: 0 1.5em 0 0;
   2.685 +}
   2.686 +
   2.687 +div.dokuwiki img.mediaright {
   2.688 +  border: 0;
   2.689 +  float: right;
   2.690 +  margin: 0 0 0 1.5em;
   2.691 +}
   2.692 +
   2.693 +div.dokuwiki img.mediacenter {
   2.694 +  border: 0;
   2.695 +  display: block;
   2.696 +  margin: 0 auto;
   2.697 +}
   2.698 +
   2.699 +/* smileys */
   2.700 +div.dokuwiki img.middle {
   2.701 +  vertical-align: middle;
   2.702 +}
   2.703 +
   2.704 +div.dokuwiki acronym {
   2.705 +  cursor: help;
   2.706 +  border-bottom: 1px dotted __text__;
   2.707 +}
   2.708 +
   2.709 +/* general headline setup */
   2.710 +div.dokuwiki h1,
   2.711 +div.dokuwiki h2,
   2.712 +div.dokuwiki h3,
   2.713 +div.dokuwiki h4,
   2.714 +div.dokuwiki h5 {
   2.715 +    background-color: transparent;
   2.716 +    clear: left;
   2.717 +}
   2.718 +
   2.719 +/* unordered lists */
   2.720 +div.dokuwiki ul {
   2.721 +  line-height: 1.5em;
   2.722 +  list-style-type: square;
   2.723 +  list-style-image: none;
   2.724 +  margin: 0 0 0.5em 1.5em;
   2.725 +  color: __text_alt__;
   2.726 +}
   2.727 +
   2.728 +/* ordered lists */
   2.729 +div.dokuwiki ol {
   2.730 +  line-height: 1.5em;
   2.731 +  list-style-image: none;
   2.732 +  margin: 0 0 0.5em 1.5em;
   2.733 +  color: __text_alt__;
   2.734 +  font-weight: bold;
   2.735 +}
   2.736 +
   2.737 +/* the list items overriding the ul/ol definition */
   2.738 +div.dokuwiki .li {
   2.739 +  color: __text__;
   2.740 +  font-weight: normal;
   2.741 +}
   2.742 +
   2.743 +div.dokuwiki ol {list-style-type: decimal}
   2.744 +div.dokuwiki ol ol {list-style-type: upper-roman}
   2.745 +div.dokuwiki ol ol ol {list-style-type: lower-alpha}
   2.746 +div.dokuwiki ol ol ol ol {list-style-type: lower-greek}
   2.747 +
   2.748 +div.dokuwiki li.open {
   2.749 +  list-style-image: url(images/open.gif);
   2.750 +    /*list-style-type: circle;*/
   2.751 +}
   2.752 +
   2.753 +div.dokuwiki li.closed {
   2.754 +  list-style-image: url(images/closed.gif);
   2.755 +    /*list-style-type: disc;*/
   2.756 +}
   2.757 +
   2.758 +div.dokuwiki blockquote {
   2.759 +  border-left: 2px solid __border__;
   2.760 +  padding-left: 3px;
   2.761 +}
   2.762 +
   2.763 +div.dokuwiki pre {
   2.764 +  font-size: 100%;
   2.765 +  padding: 5px;
   2.766 +  color: black;
   2.767 +  background: #E1E0B0;
   2.768 +  border: 0;
   2.769 +  overflow: auto;
   2.770 +}
   2.771 +
   2.772 +/* code blocks by indention */
   2.773 +div.dokuwiki pre.pre {
   2.774 +  background-color: __background_other__;
   2.775 +}
   2.776 +
   2.777 +/* code blocks by code tag */
   2.778 +div.dokuwiki pre.code {
   2.779 +  -moz-border-radius: 4px;
   2.780 +  -webkit-border-radius: 4px;
   2.781 +  background-color: #e6e6be;
   2.782 +  color: black;
   2.783 +  padding: 5px ;
   2.784 +  border: 0;
   2.785 +}
   2.786 +
   2.787 +/* inline code words */
   2.788 +div.dokuwiki code {
   2.789 +  font-size: 120%;
   2.790 +   
   2.791 +  
   2.792 +}
   2.793 +
   2.794 +/* code blocks by file tag */
   2.795 +div.dokuwiki pre.file {
   2.796 +  background-color: __background_alt__;
   2.797 +}
   2.798 +
   2.799 +/* inline tables */
   2.800 +div.dokuwiki table.inline {
   2.801 +  background-color: __background__;
   2.802 +  border-spacing: 0px;
   2.803 +  border-collapse: collapse;
   2.804 +}
   2.805 +
   2.806 +div.dokuwiki table.inline th {
   2.807 +  padding: 3px;
   2.808 +  border: 1px solid __border__;
   2.809 +  background-color: __background_alt__;
   2.810 +}
   2.811 +
   2.812 +div.dokuwiki table.inline td {
   2.813 +  padding: 3px;
   2.814 +  border: 1px solid __border__;
   2.815 +}
   2.816 +
   2.817 +/* ---------- table of contents ------------------- */
   2.818 +
   2.819 +div.dokuwiki div.toc {
   2.820 +  margin: 1.2em 0 0 2em;
   2.821 +  float: right;
   2.822 +  width: 200px;
   2.823 +  font-size: 80%;
   2.824 +  clear: both;
   2.825 +}
   2.826 +
   2.827 +div.dokuwiki div.tocheader {
   2.828 +  border: 1px solid __border__;
   2.829 +  background-color: __background_alt__;
   2.830 +  text-align: left;
   2.831 +  font-weight: bold;
   2.832 +  padding: 3px;
   2.833 +  margin-bottom: 2px;
   2.834 +}
   2.835 +
   2.836 +div.dokuwiki span.toc_open,
   2.837 +div.dokuwiki span.toc_close {
   2.838 +    border: 0.4em solid __background_alt__;
   2.839 +    float: right;
   2.840 +    display: block;
   2.841 +    margin: 0.4em 3px 0 0;
   2.842 +}
   2.843 +
   2.844 +div.dokuwiki span.toc_open span,
   2.845 +div.dokuwiki span.toc_close span {
   2.846 +    display: none;
   2.847 +}
   2.848 +
   2.849 +div.dokuwiki span.toc_open {
   2.850 +    margin-top: 0.4em;
   2.851 +    border-top: 0.4em solid __text__;
   2.852 +}
   2.853 +
   2.854 +div.dokuwiki span.toc_close {
   2.855 +    margin-top: 0;
   2.856 +    border-bottom: 0.4em solid __text__;
   2.857 +}
   2.858 +
   2.859 +div.dokuwiki #toc__inside {
   2.860 +  border: 1px solid __border__;
   2.861 +  background-color: __background__;
   2.862 +  text-align: left;
   2.863 +  padding: 0.5em 0 0.7em 0;
   2.864 +}
   2.865 +
   2.866 +div.dokuwiki ul.toc {
   2.867 +  list-style-type: none;
   2.868 +  list-style-image: none;
   2.869 +  line-height: 1.2em;
   2.870 +  padding-left: 1em;
   2.871 +  margin: 0;
   2.872 +}
   2.873 +
   2.874 +div.dokuwiki ul.toc li {
   2.875 +  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
   2.876 +  padding-left: 0.4em;
   2.877 +}
   2.878 +
   2.879 +div.dokuwiki ul.toc li.clear {
   2.880 +  background-image: none;
   2.881 +  padding-left: 0.4em;
   2.882 +}
   2.883 +
   2.884 +div.dokuwiki a.toc:link,
   2.885 +div.dokuwiki a.toc:visited {
   2.886 +  color: __extern__;
   2.887 +}
   2.888 +
   2.889 +div.dokuwiki a.toc:hover,
   2.890 +div.dokuwiki a.toc:active {
   2.891 +  color: __text__;
   2.892 +}
   2.893 +
   2.894 +/* ---------------------------- Diff rendering --------------------------*/
   2.895 +div.dokuwiki table.diff {
   2.896 +  background-color: __background__;
   2.897 +  width: 100%;
   2.898 +}
   2.899 +div.dokuwiki td.diff-blockheader {
   2.900 +  font-weight: bold;
   2.901 +}
   2.902 +div.dokuwiki table.diff th {
   2.903 +  border-bottom: 1px solid __border__;
   2.904 +  font-size: 120%;
   2.905 +  width: 50%;
   2.906 +  font-weight: normal;
   2.907 +  text-align: left;
   2.908 +}
   2.909 +div.dokuwiki table.diff td {
   2.910 +  font-family: monospace;
   2.911 +  font-size: 100%;
   2.912 +}
   2.913 +div.dokuwiki td.diff-addedline {
   2.914 +  background-color: #ddffdd;
   2.915 +}
   2.916 +div.dokuwiki td.diff-deletedline {
   2.917 +    background-color: #ffffbb;
   2.918 +}
   2.919 +div.dokuwiki td.diff-context {
   2.920 +    background-color: __background_neu__;
   2.921 +}
   2.922 +div.dokuwiki table.diff td.diff-addedline strong,
   2.923 +div.dokuwiki table.diff td.diff-deletedline strong {
   2.924 +    color: red;
   2.925 +}
   2.926 +
   2.927 +/* --------------------- footnotes -------------------------------- */
   2.928 +
   2.929 +div.dokuwiki div.footnotes {
   2.930 +  clear: both;
   2.931 +  border-top: 1px solid __border__;
   2.932 +  padding-left: 1em;
   2.933 +  margin-top: 1em;
   2.934 +}
   2.935 +
   2.936 +div.dokuwiki div.fn {
   2.937 +  font-size: 90%;
   2.938 +}
   2.939 +
   2.940 +div.dokuwiki a.fn_bot {
   2.941 +  font-weight: bold;
   2.942 +}
   2.943 +
   2.944 +/* insitu-footnotes */
   2.945 +div.insitu-footnote {
   2.946 +  font-size: 80%;
   2.947 +  line-height: 1.2em;
   2.948 +  border: 1px solid __border__;
   2.949 +  background-color: __background_other__;
   2.950 +  text-align: left;
   2.951 +  padding: 4px;
   2.952 +  max-width: 40%;    /* IE's width is handled in javascript */
   2.953 +}
   2.954 +
   2.955 +/* overcome IE issue with one line code or file boxes which require h. scrolling */
   2.956 +* html .insitu-footnote pre.code,
   2.957 +* html .insitu-footnote pre.file {
   2.958 +  padding-bottom: 18px;
   2.959 +}
   2.960 +
   2.961 +/* --------------- search result formating --------------- */
   2.962 +div.dokuwiki .search_result {
   2.963 +  margin-bottom: 6px;
   2.964 +  padding: 0 10px 0 30px;
   2.965 +}
   2.966 +
   2.967 +div.dokuwiki .search_snippet {
   2.968 +  color: __text_other__;
   2.969 +  font-size: 12px;
   2.970 +  margin-left: 20px;
   2.971 +}
   2.972 +
   2.973 +div.dokuwiki .search_sep {
   2.974 +  color: __text__;
   2.975 +}
   2.976 +
   2.977 +div.dokuwiki .search_hit {
   2.978 +  color: __text__;
   2.979 +  background-color: __highlight__;
   2.980 +}
   2.981 +div.dokuwiki strong.search_hit {
   2.982 +  font-weight: normal;
   2.983 +}
   2.984 +
   2.985 +div.dokuwiki div.search_quickresult {
   2.986 +  margin: 0 0 15px 30px;
   2.987 +  padding: 0 10px 10px 0;
   2.988 +  border-bottom: 1px dashed __border__;
   2.989 +}
   2.990 +div.dokuwiki div.search_quickresult h3 {
   2.991 +  margin: 0 0 1.0em 0;
   2.992 +  font-size: 1em;
   2.993 +  font-weight: bold;
   2.994 +}
   2.995 +
   2.996 +div.dokuwiki ul.search_quickhits {
   2.997 +  margin: 0 0 0.5em 1.0em;
   2.998 +}
   2.999 +
  2.1000 +div.dokuwiki ul.search_quickhits li {
  2.1001 +  margin: 0 1.0em 0 1.0em;
  2.1002 +  float:left;
  2.1003 +  width: 30%;
  2.1004 +}
  2.1005 +
  2.1006 +/* ------------------ Additional ---------------------- */
  2.1007 +
  2.1008 +div.footerinc {
  2.1009 +    text-align: left;
  2.1010 +    margin: 10px 80px;
  2.1011 +}
  2.1012 +.footerinc a img {
  2.1013 +    opacity: 0.5;
  2.1014 +    border: 0;
  2.1015 +}
  2.1016 +
  2.1017 +.footerinc a:hover img {
  2.1018 +    opacity: 1;
  2.1019 +}
  2.1020 +
  2.1021 +/* ---------- AJAX quicksearch ----------- */
  2.1022 +
  2.1023 +div.dokuwiki div.ajax_qsearch {
  2.1024 +  position: absolute;
  2.1025 +  right: 237px;;
  2.1026 +  width: 200px;
  2.1027 +  opacity: 0.9;
  2.1028 +  display: none;
  2.1029 +  font-size: 80%;
  2.1030 +  line-height: 1.2em;
  2.1031 +  border: 1px solid __border__;
  2.1032 +  background-color: __background_other__;
  2.1033 +  text-align: left;
  2.1034 +  padding: 4px;
  2.1035 +}
  2.1036 +
  2.1037 +/* --------- Toolbar -------------------- */
  2.1038 +button.toolbutton {
  2.1039 +  background-color: transparent;
  2.1040 +  padding: 0px;
  2.1041 +  margin: 0 1px 0 0;
  2.1042 +  border: 1px solid __border__;
  2.1043 +  cursor: pointer;
  2.1044 +}
  2.1045 +
  2.1046 +div.picker {
  2.1047 +  width: 250px;
  2.1048 +  border: 1px solid __border__;
  2.1049 +  background-color: __background_alt__;
  2.1050 +}
  2.1051 +
  2.1052 +button.pickerbutton {
  2.1053 +  padding: 0px;
  2.1054 +  margin: 0 1px 1px 0;
  2.1055 +  border: 0;
  2.1056 +  background-color: transparent;
  2.1057 +  font-size: 80%;
  2.1058 +  cursor: pointer;
  2.1059 +}
  2.1060 +
  2.1061 +/* ---------------  Image Details  ----------------- */
  2.1062 +
  2.1063 +div.dokuwiki div.img_big {
  2.1064 +  float: left;
  2.1065 +  margin-right: 0.5em;
  2.1066 +}
  2.1067 +
  2.1068 +div.dokuwiki dl.img_tags dt {
  2.1069 +  font-weight: bold;
  2.1070 +  background-color: __background_alt__;
  2.1071 +}
  2.1072 +div.dokuwiki dl.img_tags dd {
  2.1073 +  background-color: __background_neu__;
  2.1074 +}
  2.1075 +
  2.1076 +div.dokuwiki div.imagemeta {
  2.1077 +  color: __text_neu__;
  2.1078 +  font-size: 70%;
  2.1079 +  line-height: 95%;
  2.1080 +}
  2.1081 +
  2.1082 +div.dokuwiki div.imagemeta img.thumb {
  2.1083 +  float:left;
  2.1084 +  margin-right: 0.1em;
  2.1085 +}
  2.1086 +
  2.1087 +div.notify { 
  2.1088 +	background: #FFCE21;
  2.1089 +	color: #222;
  2.1090 +	border: 1px solid #000;
  2.1091 +	font-size: 90%;
  2.1092 +	margin: 0;
  2.1093 +	padding: 4px;
  2.1094 +	-moz-border-radius: 4px;
  2.1095 +	-webkit-border-radius: 4px;
  2.1096 +	border-radius: 4px;
  2.1097 +	position: absolute;
  2.1098 +	top: 43px;
  2.1099 +	right: 24px;
  2.1100 +	width: 600px;
  2.1101 +}
  2.1102 +
  2.1103 +#access div.notify a { text-decoration: underline; }
  2.1104 +#access div.notify a:hover { text-decoration: none; }
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/doc/lib/tpl/slitaz-brown/detail.php	Tue Feb 22 13:12:02 2011 +0100
     3.3 @@ -0,0 +1,92 @@
     3.4 +<?php
     3.5 +/**
     3.6 + * DokuWiki Image Detail Template
     3.7 + *
     3.8 + * This is the template for displaying image details
     3.9 + *
    3.10 + * You should leave the doctype at the very top - It should
    3.11 + * always be the very first line of a document.
    3.12 + *
    3.13 + * @link   http://wiki.splitbrain.org/wiki:tpl:templates
    3.14 + * @author Andreas Gohr <andi@splitbrain.org>
    3.15 + */
    3.16 +
    3.17 +// must be run from within DokuWiki
    3.18 +if (!defined('DOKU_INC')) die();
    3.19 +
    3.20 +?>
    3.21 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    3.22 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    3.23 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
    3.24 +<head>
    3.25 +  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    3.26 +  <title>
    3.27 +     <?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?>
    3.28 +    [<?php echo strip_tags($conf['title'])?>]
    3.29 +  </title>
    3.30 +
    3.31 +  <?php tpl_metaheaders()?>
    3.32 +
    3.33 +  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
    3.34 +</head>
    3.35 +
    3.36 +<body>
    3.37 +<div class="dokuwiki">
    3.38 +  <?php html_msgarea()?>
    3.39 +
    3.40 +  <div class="page">
    3.41 +    <?php if($ERROR){ print $ERROR; }else{ ?>
    3.42 +
    3.43 +    <h1><?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?></h1>
    3.44 +
    3.45 +    <div class="img_big">
    3.46 +      <?php tpl_img(900,700) ?>
    3.47 +    </div>
    3.48 +
    3.49 +    <div class="img_detail">
    3.50 +      <p class="img_caption">
    3.51 +        <?php print nl2br(hsc(tpl_img_getTag(array('IPTC.Caption',
    3.52 +                                               'EXIF.UserComment',
    3.53 +                                               'EXIF.TIFFImageDescription',
    3.54 +                                               'EXIF.TIFFUserComment')))); ?>
    3.55 +      </p>
    3.56 +
    3.57 +      <p>&larr; <?php echo $lang['img_backto']?> <?php tpl_pagelink($ID)?></p>
    3.58 +
    3.59 +      <dl class="img_tags">
    3.60 +        <?php
    3.61 +          $t = tpl_img_getTag('Date.EarliestTime');
    3.62 +          if($t) print '<dt>'.$lang['img_date'].':</dt><dd>'.strftime($conf['dformat'],$t).'</dd>';
    3.63 +
    3.64 +          $t = tpl_img_getTag('File.Name');
    3.65 +          if($t) print '<dt>'.$lang['img_fname'].':</dt><dd>'.hsc($t).'</dd>';
    3.66 +
    3.67 +          $t = tpl_img_getTag(array('Iptc.Byline','Exif.TIFFArtist','Exif.Artist','Iptc.Credit'));
    3.68 +          if($t) print '<dt>'.$lang['img_artist'].':</dt><dd>'.hsc($t).'</dd>';
    3.69 +
    3.70 +          $t = tpl_img_getTag(array('Iptc.CopyrightNotice','Exif.TIFFCopyright','Exif.Copyright'));
    3.71 +          if($t) print '<dt>'.$lang['img_copyr'].':</dt><dd>'.hsc($t).'</dd>';
    3.72 +
    3.73 +          $t = tpl_img_getTag('File.Format');
    3.74 +          if($t) print '<dt>'.$lang['img_format'].':</dt><dd>'.hsc($t).'</dd>';
    3.75 +
    3.76 +          $t = tpl_img_getTag('File.NiceSize');
    3.77 +          if($t) print '<dt>'.$lang['img_fsize'].':</dt><dd>'.hsc($t).'</dd>';
    3.78 +
    3.79 +          $t = tpl_img_getTag('Simple.Camera');
    3.80 +          if($t) print '<dt>'.$lang['img_camera'].':</dt><dd>'.hsc($t).'</dd>';
    3.81 +
    3.82 +          $t = tpl_img_getTag(array('IPTC.Keywords','IPTC.Category'));
    3.83 +          if($t) print '<dt>'.$lang['img_keywords'].':</dt><dd>'.hsc($t).'</dd>';
    3.84 +
    3.85 +        ?>
    3.86 +      </dl>
    3.87 +      <?php //Comment in for Debug// dbg(tpl_img_getTag('Simple.Raw'));?>
    3.88 +    </div>
    3.89 +
    3.90 +  <?php } ?>
    3.91 +  </div>
    3.92 +</div>
    3.93 +</body>
    3.94 +</html>
    3.95 +
     4.1 Binary file doc/lib/tpl/slitaz-brown/images/UWEB.png has changed
     5.1 Binary file doc/lib/tpl/slitaz-brown/images/button-dw.png has changed
     6.1 Binary file doc/lib/tpl/slitaz-brown/images/button-xhtml.png has changed
     7.1 Binary file doc/lib/tpl/slitaz-brown/images/favicon.ico has changed
     8.1 Binary file doc/lib/tpl/slitaz-brown/images/header-img.png has changed
     9.1 Binary file doc/lib/tpl/slitaz-brown/images/link_icon.gif has changed
    10.1 Binary file doc/lib/tpl/slitaz-brown/images/logo.png has changed
    11.1 Binary file doc/lib/tpl/slitaz-brown/images/mail_icon.gif has changed
    12.1 Binary file doc/lib/tpl/slitaz-brown/images/tools.png has changed
    13.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    13.2 +++ b/doc/lib/tpl/slitaz-brown/layout.css	Tue Feb 22 13:12:02 2011 +0100
    13.3 @@ -0,0 +1,54 @@
    13.4 +/**
    13.5 + * Tableless Layout for default template
    13.6 + *
    13.7 + * @author Andreas Gohr <andi@splitbrain.org>
    13.8 + * @author moraes <moraes@tipos.com.br>
    13.9 + */
   13.10 +
   13.11 +/* -------------- top row --------------- */
   13.12 +
   13.13 +div.dokuwiki .pagename {
   13.14 +  float: left;
   13.15 +  font-size: 200%;
   13.16 +  font-weight: bolder;
   13.17 +  color: __background_alt__;
   13.18 +  text-align: left;
   13.19 +  vertical-align: middle;
   13.20 +}
   13.21 +
   13.22 +div.dokuwiki .pagename a {
   13.23 +  color: __extern__ !important;
   13.24 +  text-decoration: none !important;
   13.25 +}
   13.26 +
   13.27 +/* ---------------  top and bottom bar ---------------- */
   13.28 +
   13.29 +#bar__bottomleft { margin-top: 3px;}
   13.30 +
   13.31 +div.dokuwiki .bar-left {
   13.32 +  float: left;
   13.33 +  margin-left: 14px;
   13.34 +}
   13.35 +
   13.36 +div.dokuwiki .bar-right {
   13.37 +  float: right;
   13.38 +  text-align: right;
   13.39 +  margin-right: 14px;
   13.40 +}
   13.41 +
   13.42 +/* ------------- File Metadata ----------------------- */
   13.43 +
   13.44 +div.dokuwiki div.meta {
   13.45 +  clear: both;
   13.46 +  margin-top: 1em;
   13.47 +  color: #666666;
   13.48 +  font-size: 85%;
   13.49 +}
   13.50 +
   13.51 +div.dokuwiki div.meta div.user {
   13.52 +  float: left;
   13.53 +}
   13.54 +
   13.55 +div.dokuwiki div.meta div.doc {
   13.56 +  text-align: right;
   13.57 +}
    14.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    14.2 +++ b/doc/lib/tpl/slitaz-brown/main.php	Tue Feb 22 13:12:02 2011 +0100
    14.3 @@ -0,0 +1,140 @@
    14.4 +<?php
    14.5 +/**
    14.6 + * DokuWiki SliTaz Template - With code from the default theme by
    14.7 + * Andreas Gohr <andi@splitbrain.org>
    14.8 + * 
    14.9 + */
   14.10 +
   14.11 +// must be run from within DokuWiki
   14.12 +if (!defined('DOKU_INC')) die();
   14.13 +
   14.14 +?>
   14.15 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   14.16 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   14.17 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>"
   14.18 + lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction']?>">
   14.19 +<head>
   14.20 +  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   14.21 +  <title>
   14.22 +    <?php tpl_pagetitle()?>
   14.23 +    [<?php echo strip_tags($conf['title'])?>]
   14.24 +  </title>
   14.25 +
   14.26 +  <?php tpl_metaheaders()?>
   14.27 +
   14.28 +  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
   14.29 +</head>
   14.30 +<body>
   14.31 +
   14.32 +<div class="dokuwiki">
   14.33 +
   14.34 +<!-- Header -->
   14.35 +<div id="header">
   14.36 +	<?php html_msgarea()?>
   14.37 +<!-- Access -->
   14.38 +<div id="access">
   14.39 +<?php
   14.40 +$translation = &plugin_load('helper','translation');
   14.41 +echo $translation->showTranslations();
   14.42 +?>
   14.43 +</div>
   14.44 +    <a href="http://doc.slitaz.org/"><img id="logo"
   14.45 +		src="<?php echo DOKU_TPL?>images/logo.png"
   14.46 +		title="doc.slitaz.org" alt="doc.slitaz.org" /></a>
   14.47 +    <p id="titre">#!/Doc/<?php tpl_link(wl($ID,'do=backlink'),tpl_pagetitle($ID,true),'title="'.$lang['btn_backlink'].'"')?>
   14.48 +    </p>
   14.49 +</div>
   14.50 +
   14.51 +<!-- Content -->
   14.52 +<div id="content">
   14.53 +
   14.54 +<!-- Block begin -->
   14.55 +<div class="block">
   14.56 +	<!-- Nav block begin -->
   14.57 +	<div id="block_nav">
   14.58 +		<h3><img src="<?php echo DOKU_TPL?>images/tools.png" alt=".png" />Wiki Tools</h3>
   14.59 +		<div><?php tpl_button('recent')?></div>
   14.60 +		<div><?php tpl_button('subscription')?></div>
   14.61 +		<div><?php tpl_button('admin')?></div>
   14.62 +		<div><?php tpl_button('profile')?></div>
   14.63 +		<div><?php tpl_button('login')?></div>
   14.64 +	<!-- Nav block end -->
   14.65 +	</div>
   14.66 +	<!-- Top block begin -->
   14.67 +	<div id="block_top">
   14.68 +		<p>
   14.69 +			The central place for all SliTaz documentation.
   14.70 +		</p>
   14.71 +		<div><?php tpl_searchform()?>
   14.72 +		</div>
   14.73 +		<h3><img src="<?php echo DOKU_TPL?>images/tools.png" alt=".png" />Page Tools</h3>
   14.74 +		<div><?php tpl_button('edit')?></div>
   14.75 +		<div><?php tpl_button('history')?></div>
   14.76 +		<div><?php tpl_button('index')?></div>
   14.77 +	<!-- Top block end -->
   14.78 +	</div>
   14.79 +<!-- Block end -->
   14.80 +</div>
   14.81 +
   14.82 +<?php flush()?>
   14.83 +
   14.84 +<!-- wikipage start -->
   14.85 +<?php tpl_content()?>
   14.86 +<!-- wikipage stop -->
   14.87 +
   14.88 +<div class="clearer">&nbsp;</div>
   14.89 +<?php flush()?>
   14.90 +
   14.91 +<div class="meta">
   14.92 +  <div class="user">
   14.93 +	<?php tpl_userinfo()?>
   14.94 +  </div>
   14.95 +  <div class="doc">
   14.96 +	<?php tpl_pageinfo()?>
   14.97 +  </div>
   14.98 +</div>
   14.99 +
  14.100 +<!-- End of content -->
  14.101 +</div>
  14.102 +
  14.103 +<!-- End of: class="dokuwiki" -->
  14.104 +</div>
  14.105 +
  14.106 +<!-- Footer -->
  14.107 +<div id="footer">
  14.108 +	<div class="right_box">
  14.109 +	<h4>SliTaz Network</h4>
  14.110 +		<ul>
  14.111 +			<li><a href="http://www.slitaz.org/">Main Website</a></li>
  14.112 +			<li><a href="http://forum.slitaz.org/">Support Forum</a></li>
  14.113 +			<li><a href="http://scn.slitaz.org/">Community Network</a></li>
  14.114 +			<li><a href="http://labs.slitaz.org/">Laboratories</a></li>
  14.115 +			<li><a href="http://pkgs.slitaz.org/">Packages</a></li>
  14.116 +			<li><a href="http://boot.slitaz.org/">Web Boot</a></li>
  14.117 +		</ul>
  14.118 +	</div>
  14.119 +	<h4>SliTaz Website</h4>
  14.120 +	<ul>
  14.121 +		<li><a href="#header">Top of the page</a></li>
  14.122 +		<li>Copyright &copy; <?php echo date('Y'); ?></span>
  14.123 +			<a href="http://www.slitaz.org/">SliTaz</a> -
  14.124 +			<a href="http://www.gnu.org/copyleft/fdl.html">GNU FDL</a></li>
  14.125 +		<li><a href="http://www.slitaz.org/en/about/">About the project</a></li>
  14.126 +		<li><a href="http://www.slitaz.org/netmap.php">Network Map</a></li>
  14.127 +		<li>Page modified the <?php echo (date( "d M Y", getlastmod())); ?></li>
  14.128 +		<li>
  14.129 +			<a <?php echo $tgt?> href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0">
  14.130 +			<img src="<?php echo DOKU_TPL; ?>images/button-xhtml.png" width="80" height="15" alt="Valid XHTML 1.0" /></a>
  14.131 +			<a <?php echo $tgt?> href="http://wiki.splitbrain.org/wiki:dokuwiki" title="Driven by DokuWiki">
  14.132 +			<img src="<?php echo DOKU_TPL; ?>images/button-dw.png" width="80" height="15" alt="Driven by DokuWiki" /></a>
  14.133 +		</li>
  14.134 +	</ul>
  14.135 +</div>
  14.136 +
  14.137 +<div class="no">
  14.138 +	<?php /* provide DokuWiki housekeeping, required in all templates */
  14.139 +	tpl_indexerWebBug() ?>
  14.140 +</div>
  14.141 +
  14.142 +</body>
  14.143 +</html>
    15.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    15.2 +++ b/doc/lib/tpl/slitaz-brown/media.css	Tue Feb 22 13:12:02 2011 +0100
    15.3 @@ -0,0 +1,200 @@
    15.4 +/**
    15.5 + * The CSS in here cotrols the appearance of the media manager
    15.6 + */
    15.7 +
    15.8 +#media__manager {
    15.9 +    height: 100%;
   15.10 +    overflow: hidden;
   15.11 +}
   15.12 +
   15.13 +#media__left {
   15.14 +    width: 30%;
   15.15 +    border-right: solid 1px __border__;
   15.16 +
   15.17 +    height: 100%;
   15.18 +    overflow: auto;
   15.19 +    position: absolute;
   15.20 +    left: 0;
   15.21 +}
   15.22 +
   15.23 +#media__right {
   15.24 +    width: 69.7%;
   15.25 +
   15.26 +    height: 100%;
   15.27 +    overflow: auto;
   15.28 +    position: absolute;
   15.29 +    right: 0;
   15.30 +}
   15.31 +
   15.32 +#media__manager h1 {
   15.33 +    margin: 0;
   15.34 +    padding: 0;
   15.35 +    margin-bottom: 0.5em;
   15.36 +}
   15.37 +
   15.38 +/* --- Tree formatting --- */
   15.39 +
   15.40 +#media__tree img {
   15.41 +    float:left;
   15.42 +    padding: 0.5em 0.3em 0 0;
   15.43 +}
   15.44 +
   15.45 +#media__tree ul {
   15.46 +    list-style-type: none;
   15.47 +    list-style-image: none;
   15.48 +}
   15.49 +
   15.50 +#media__tree li {
   15.51 +    clear: left;
   15.52 +    list-style-type: none;
   15.53 +    list-style-image: none;
   15.54 +}
   15.55 +*+html #media__tree li,
   15.56 +* html #media__tree li {
   15.57 +    border: 1px solid __background__;
   15.58 +}/* I don't understand this, but this fixes a style bug in IE;
   15.59 +it's dirty, so any "real" fixes are welcome */
   15.60 +
   15.61 +/* --- options --- */
   15.62 +
   15.63 +#media__opts {
   15.64 +    padding-left: 1em;
   15.65 +    margin-bottom: 0.5em;
   15.66 +}
   15.67 +
   15.68 +#media__opts input {
   15.69 +    float: left;
   15.70 +    position: absolute;
   15.71 +}
   15.72 +*+html #media__opts input,
   15.73 +* html #media__opts input {
   15.74 +    position: static;
   15.75 +}
   15.76 +
   15.77 +#media__opts label {
   15.78 +    display: block;
   15.79 +    float: left;
   15.80 +    margin-left: 30px;
   15.81 +}
   15.82 +*+html #media__opts label,
   15.83 +* html #media__opts label {
   15.84 +    margin-left: 10px;
   15.85 +}
   15.86 +
   15.87 +#media__opts br {
   15.88 +    clear: left;
   15.89 +}
   15.90 +
   15.91 +/* --- file list --- */
   15.92 +
   15.93 +#media__content img.load {
   15.94 +    margin: 1em auto;
   15.95 +}
   15.96 +
   15.97 +#media__content #scroll__here {
   15.98 +    border: 1px dashed __border__;
   15.99 +}
  15.100 +
  15.101 +#media__content .odd {
  15.102 +    background-color: __background_other__;
  15.103 +    padding: 0.4em;
  15.104 +}
  15.105 +
  15.106 +#media__content .even {
  15.107 +    padding: 0.4em;
  15.108 +}
  15.109 +
  15.110 +#media__content a.mediafile {
  15.111 +    margin-right: 1.5em;
  15.112 +    font-weight: bold;
  15.113 +}
  15.114 +
  15.115 +#media__content div.detail {
  15.116 +    padding: 0.3em 0 0.3em 2em;
  15.117 +}
  15.118 +
  15.119 +#media__content div.detail div.thumb {
  15.120 +    float: left;
  15.121 +    width: 130px;
  15.122 +    text-align: center;
  15.123 +    margin-right: 0.4em;
  15.124 +}
  15.125 +
  15.126 +
  15.127 +#media__content img.btn {
  15.128 +    vertical-align: text-bottom;
  15.129 +}
  15.130 +
  15.131 +#media__content div.example {
  15.132 +    color: __text_neu__;
  15.133 +    margin-left: 1em;
  15.134 +}
  15.135 +
  15.136 +/* --- upload form --- */
  15.137 +
  15.138 +#media__content div.upload {
  15.139 +    font-size: 90%;
  15.140 +    padding: 0 0.5em 0.5em 0.5em;
  15.141 +}
  15.142 +
  15.143 +#media__content form#dw__upload {
  15.144 +    display: block;
  15.145 +    border-bottom: solid 1px __border__;
  15.146 +    padding: 0 0.5em 1em 0.5em;
  15.147 +}
  15.148 +#media__content form#dw__upload fieldset {
  15.149 +    padding: 0;
  15.150 +    margin: 0;
  15.151 +    border: none;
  15.152 +    width: auto;
  15.153 +}
  15.154 +#media__content form#dw__upload p {
  15.155 +    text-align: left;
  15.156 +    padding: 0.25em 0;
  15.157 +    margin: 0;
  15.158 +    line-height: 1.0em;
  15.159 +}
  15.160 +#media__content form#dw__upload label.check {
  15.161 +    float: none;
  15.162 +    width: auto;
  15.163 +    margin-left: 11.5em;
  15.164 +}
  15.165 +
  15.166 +/* --- meta edit form --- */
  15.167 +
  15.168 +#media__content form.meta {
  15.169 +    display: block;
  15.170 +    padding: 0 0 1em 0;
  15.171 +}
  15.172 +
  15.173 +#media__content form.meta label {
  15.174 +    display: block;
  15.175 +    width: 25%;
  15.176 +    float: left;
  15.177 +    font-weight: bold;
  15.178 +    margin-left: 1em;
  15.179 +    clear: left;
  15.180 +}
  15.181 +
  15.182 +#media__content form.meta .edit {
  15.183 +    font: 100% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
  15.184 +    float: left;
  15.185 +    width: 70%;
  15.186 +    padding-right: 0;
  15.187 +    padding-left: 0.2em;
  15.188 +    margin: 2px;
  15.189 +}
  15.190 +
  15.191 +#media__content form.meta textarea.edit {
  15.192 +    height: 8em;
  15.193 +}
  15.194 +
  15.195 +#media__content form.meta div.metafield {
  15.196 +    clear: left;
  15.197 +}
  15.198 +
  15.199 +#media__content form.meta div.buttons {
  15.200 +    clear: left;
  15.201 +    margin-left: 20%;
  15.202 +    padding-left: 1em;
  15.203 +}
    16.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    16.2 +++ b/doc/lib/tpl/slitaz-brown/mediamanager.php	Tue Feb 22 13:12:02 2011 +0100
    16.3 @@ -0,0 +1,44 @@
    16.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    16.5 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    16.6 +<?php
    16.7 +/**
    16.8 + * DokuWiki Default Template
    16.9 + *
   16.10 + * This is the template for the media manager popup
   16.11 + *
   16.12 + * You should leave the doctype at the very top - It should
   16.13 + * always be the very first line of a document.
   16.14 + *
   16.15 + * @link   http://wiki.splitbrain.org/wiki:tpl:templates
   16.16 + * @author Andreas Gohr <andi@splitbrain.org>
   16.17 + */
   16.18 +?>
   16.19 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
   16.20 +<head>
   16.21 +  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   16.22 +  <title>
   16.23 +    <?php echo hsc($lang['mediaselect'])?>
   16.24 +    [<?php echo strip_tags($conf['title'])?>]
   16.25 +  </title>
   16.26 +  <?php tpl_metaheaders()?>
   16.27 +  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
   16.28 +</head>
   16.29 +
   16.30 +<body>
   16.31 +<div id="media__manager" class="dokuwiki">
   16.32 +    <div id="media__left">
   16.33 +        <?php html_msgarea()?>
   16.34 +        <h1><?php echo hsc($lang['mediaselect'])?></h1>
   16.35 +
   16.36 +        <?php /* keep the id! additional elements are inserted via JS here */?>
   16.37 +        <div id="media__opts"></div>
   16.38 +
   16.39 +        <?php tpl_mediaTree() ?>
   16.40 +    </div>
   16.41 +
   16.42 +    <div id="media__right">
   16.43 +        <?php tpl_mediaContent() ?>
   16.44 +    </div>
   16.45 +</div>
   16.46 +</body>
   16.47 +</html>
    17.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    17.2 +++ b/doc/lib/tpl/slitaz-brown/print.css	Tue Feb 22 13:12:02 2011 +0100
    17.3 @@ -0,0 +1,235 @@
    17.4 +
    17.5 +body {
    17.6 +  font: 10pt "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
    17.7 +  background-color: White;
    17.8 +  color: Black;
    17.9 +}
   17.10 +
   17.11 +table {
   17.12 +  font-size: 100%;
   17.13 +  padding:0;
   17.14 +  margin:0;
   17.15 +}
   17.16 +
   17.17 +tr,td,th {padding:0; margin:0;}
   17.18 +
   17.19 +img {border:0}
   17.20 +
   17.21 +a {
   17.22 +  color:#000000;
   17.23 +  text-decoration:none;
   17.24 +  background: none !important;
   17.25 +}
   17.26 +
   17.27 +
   17.28 +div.meta {
   17.29 +  clear:both;
   17.30 +  margin-top: 1em;
   17.31 +  font-size:70%;
   17.32 +  text-align:right;
   17.33 +}
   17.34 +
   17.35 +
   17.36 +div.notify,
   17.37 +div.info,
   17.38 +div.success,
   17.39 +div.error,
   17.40 +div.breadcrumbs,
   17.41 +div.secedit {
   17.42 +  display:none;
   17.43 +}
   17.44 +
   17.45 +/* --------------------- Text formating -------------------------------- */
   17.46 +
   17.47 +/* external link */
   17.48 +a.urlextern:after {
   17.49 +   content: " [" attr(href) "]";
   17.50 +   font-size: 90%;
   17.51 +}
   17.52 +
   17.53 +/* interwiki link */
   17.54 +a.interwiki:after {
   17.55 +   content: " [" attr(href) "]";
   17.56 +   font-size: 90%;
   17.57 +}
   17.58 +
   17.59 +/* email link */
   17.60 +a.mail:after {
   17.61 +   content: " [" attr(href) "]";
   17.62 +   font-size: 90%;
   17.63 +}
   17.64 +
   17.65 +/* existing wikilink */
   17.66 +a.wikilink1    {text-decoration:underline }
   17.67 +
   17.68 +/* the document */
   17.69 +div.page {
   17.70 +  text-align: justify;
   17.71 +}
   17.72 +
   17.73 +/* general headline setup */
   17.74 +h1, h2, h3, h4, h5 {
   17.75 +    color: Black;
   17.76 +    background-color: transparent;
   17.77 +    font-family: "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
   17.78 +    font-size: 100%;
   17.79 +    font-weight: normal;
   17.80 +    margin-left:    0;
   17.81 +    margin-right:   0;
   17.82 +    margin-top:     0;
   17.83 +    margin-bottom:  1em;
   17.84 +    padding-left:   0;
   17.85 +    padding-right:  0;
   17.86 +    padding-top:    0.5em;
   17.87 +    padding-bottom: 0;
   17.88 +    border-bottom: 1px solid #000000;
   17.89 +    clear:left;
   17.90 +}
   17.91 +
   17.92 +/* special headlines */
   17.93 +h1 {font-size: 160%; font-weight: bold;}
   17.94 +h2 {font-size: 150%; }
   17.95 +h3 {font-size: 140%; border-bottom: none; }
   17.96 +h4 {font-size: 120%; border-bottom: none; }
   17.97 +h5 {font-size: 100%; border-bottom: none; }
   17.98 +
   17.99 +/* embedded images */
  17.100 +img.media {
  17.101 +  margin: 3px;
  17.102 +}
  17.103 +
  17.104 +img.medialeft {
  17.105 +  border: 0;
  17.106 +  float: left;
  17.107 +  margin: 0 1.5em 0 0;
  17.108 +}
  17.109 +
  17.110 +img.mediaright {
  17.111 +  border: 0;
  17.112 +  float: right;
  17.113 +  margin: 0 0 0 1.5em;
  17.114 +}
  17.115 +
  17.116 +/* unordered lists */
  17.117 +ul {
  17.118 +    line-height: 1.5em;
  17.119 +    list-style-type: square;
  17.120 +    margin: 0 0 0.5em 1.5em;
  17.121 +    padding: 0;
  17.122 +
  17.123 +}
  17.124 +
  17.125 +/* ordered lists */
  17.126 +ol {
  17.127 +    line-height: 1.5em;
  17.128 +    margin: 0 0 0.5em 2.5em;
  17.129 +    padding: 0;
  17.130 +    font-weight: normal;
  17.131 +}
  17.132 +ol ol {
  17.133 +    margin: 0 0 0.5em 1.5em;
  17.134 +}
  17.135 +
  17.136 +div.dokuwiki ol {list-style-type: decimal}
  17.137 +div.dokuwiki ol ol {list-style-type: upper-roman}
  17.138 +div.dokuwiki ol ol ol {list-style-type: lower-alpha}
  17.139 +div.dokuwiki ol ol ol ol {list-style-type: lower-greek}
  17.140 +
  17.141 +/* the list items overriding the ol definition */
  17.142 +span.li {
  17.143 +    font-weight: normal;
  17.144 +}
  17.145 +
  17.146 +/* code blocks by indention */
  17.147 +pre.pre {
  17.148 +  font-size: 8pt;
  17.149 +  padding: 0.5em;
  17.150 +  border: 1px dashed #000000;
  17.151 +  color: Black;
  17.152 +  overflow: visible;
  17.153 +}
  17.154 +
  17.155 +/* code blocks by code tag */
  17.156 +pre.code {
  17.157 +  font-size: 8pt;
  17.158 +  padding: 0.5em;
  17.159 +  border: 1px dashed #000000;
  17.160 +  color: Black;
  17.161 +  overflow: visible;
  17.162 +}
  17.163 +
  17.164 +/* inline code words */
  17.165 +code {
  17.166 +  font-size: 120%;
  17.167 +}
  17.168 +
  17.169 +/* code blocks by file tag */
  17.170 +pre.file {
  17.171 +  font-size: 8pt;
  17.172 +  padding: 0.5em;
  17.173 +  border: 1px dotted #000000;
  17.174 +  color: Black;
  17.175 +  overflow: visible;
  17.176 +}
  17.177 +
  17.178 +/* footnotes */
  17.179 +div.footnotes{
  17.180 +  clear:both;
  17.181 +  border-top: 1px solid #000000;
  17.182 +  padding-left: 1em;
  17.183 +  margin-top: 1em;
  17.184 +}
  17.185 +
  17.186 +div.fn{
  17.187 +  font-size:90%;
  17.188 +}
  17.189 +
  17.190 +a.fn_top{
  17.191 +  vertical-align:super;
  17.192 +  font-size:80%;
  17.193 +}
  17.194 +
  17.195 +a.fn_bot{
  17.196 +  vertical-align:super;
  17.197 +  font-size:80%;
  17.198 +  font-weight:bold;
  17.199 +}
  17.200 +
  17.201 +acronym{
  17.202 +  border: 0;
  17.203 +}
  17.204 +
  17.205 +/* ---------- inline tables ------------------- */
  17.206 +
  17.207 +table.inline {
  17.208 +  font-size: 80%;
  17.209 +  background-color: #ffffff;
  17.210 +  border-spacing: 0px;
  17.211 +  border-collapse: collapse;
  17.212 +}
  17.213 +
  17.214 +table.inline th {
  17.215 +  padding: 3px;
  17.216 +  border: 1px solid #000000;
  17.217 +  border-bottom: 2px solid #000000;
  17.218 +}
  17.219 +
  17.220 +table.inline td {
  17.221 +  padding: 3px;
  17.222 +  border: 1px solid #000000;
  17.223 +}
  17.224 +
  17.225 +.leftalign{
  17.226 +  text-align: left;
  17.227 +}
  17.228 +
  17.229 +.centeralign{
  17.230 +  text-align: center;
  17.231 +}
  17.232 +
  17.233 +.rightalign{
  17.234 +  text-align: right;
  17.235 +}
  17.236 +
  17.237 +.toc, .footerinc, .header, .bar, .user {display:none}
  17.238 +
    18.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    18.2 +++ b/doc/lib/tpl/slitaz-brown/rtl.css	Tue Feb 22 13:12:02 2011 +0100
    18.3 @@ -0,0 +1,119 @@
    18.4 +/**
    18.5 + * Layout and dedsign corrections for right-to-left languages
    18.6 + *
    18.7 + * @author Andreas Gohr <andi@splitbrain.org>
    18.8 + * @author Dotan Kamber <kamberd@yahoo.com>
    18.9 + */
   18.10 +
   18.11 +.bar-left {
   18.12 +  float: right;
   18.13 +  text-align: right;
   18.14 +}
   18.15 +
   18.16 +.bar-right {
   18.17 +  float: left;
   18.18 +  text-align: left;
   18.19 +}
   18.20 +
   18.21 +.pagename {
   18.22 +  float: right;
   18.23 +  text-align: right;
   18.24 +}
   18.25 +
   18.26 +.logo {
   18.27 +  float: left;
   18.28 +  text-align: left;
   18.29 +}
   18.30 +
   18.31 +label {
   18.32 +  text-align: left;
   18.33 +}
   18.34 +
   18.35 +label.simple {
   18.36 +  text-align: right;
   18.37 +}
   18.38 +
   18.39 +div.meta div.user {
   18.40 +  float: right
   18.41 +}
   18.42 +
   18.43 +div.meta div.doc {
   18.44 +  text-align: left;
   18.45 +}
   18.46 +
   18.47 +/* ------------------  Design corrections  --------------------------------- */
   18.48 +
   18.49 +div.dokuwiki ul,
   18.50 +div.dokuwiki ol {
   18.51 +  margin: 0.5em 1.5em 0.5em 0;
   18.52 +}
   18.53 +
   18.54 +div.dokuwiki a.urlextern,
   18.55 +div.dokuwiki a.interwiki,
   18.56 +div.dokuwiki a.windows,
   18.57 +div.dokuwiki a.mail,
   18.58 +div.dokuwiki a.mail.JSnocheck {
   18.59 +  /* should work but doesn't - so we just disable icons here*/
   18.60 +  /*
   18.61 +  background-position: right 1px;
   18.62 +  padding-right: 16px;
   18.63 +  */
   18.64 +  background-image: none !important;
   18.65 +  padding: 0px 0px 0px 0px;
   18.66 +}
   18.67 +
   18.68 +div.dokuwiki div.secedit input.button {
   18.69 +  float: left;
   18.70 +}
   18.71 +
   18.72 +/* headlines */
   18.73 +div.dokuwiki h1, div.dokuwiki h2, div.dokuwiki h3, div.dokuwiki h4, div.dokuwiki h5 {
   18.74 +  clear: right;
   18.75 +}
   18.76 +
   18.77 +/* special headlines */
   18.78 +div.dokuwiki h1 {margin-left: 0px; margin-right: 0px;}
   18.79 +div.dokuwiki h2 {margin-left: 0px; margin-right: 20px;}
   18.80 +div.dokuwiki h3 {margin-left: 0px; margin-right: 40px;}
   18.81 +div.dokuwiki h4 {margin-left: 0px; margin-right: 60px;}
   18.82 +div.dokuwiki h5 {margin-left: 0px; margin-right: 80px;}
   18.83 +
   18.84 +/* indent different sections */
   18.85 +div.dokuwiki div.level1 {margin-left: 0px; margin-right: 3px;}
   18.86 +div.dokuwiki div.level2 {margin-left: 0px; margin-right: 23px;}
   18.87 +div.dokuwiki div.level3 {margin-left: 0px; margin-right: 43px;}
   18.88 +div.dokuwiki div.level4 {margin-left: 0px; margin-right: 63px;}
   18.89 +div.dokuwiki div.level5 {margin-left: 0px; margin-right: 83px;}
   18.90 +
   18.91 +/* TOC control */
   18.92 +div.dokuwiki div.toc {
   18.93 +  float: left;
   18.94 +}
   18.95 +
   18.96 +div.dokuwiki div.tocheader {
   18.97 +  text-align: right;
   18.98 +}
   18.99 +
  18.100 +div.dokuwiki #toc__inside {
  18.101 +  text-align: right;
  18.102 +}
  18.103 +
  18.104 +div.dokuwiki ul.toc {
  18.105 +  padding: 0;
  18.106 +  padding-right: 1em;
  18.107 +}
  18.108 +
  18.109 +div.dokuwiki ul.toc li {
  18.110 +  background-position: right 0.6em;
  18.111 +  padding-right:0.4em;
  18.112 +  direction: rtl;
  18.113 +}
  18.114 +
  18.115 +div.dokuwiki ul.toc li.clear {
  18.116 +  padding-right:0.4em;
  18.117 +}
  18.118 +
  18.119 +div.dokuwiki pre {
  18.120 +  text-align: left;
  18.121 +}
  18.122 +
    19.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    19.2 +++ b/doc/lib/tpl/slitaz-brown/style.ini	Tue Feb 22 13:12:02 2011 +0100
    19.3 @@ -0,0 +1,67 @@
    19.4 +; Please see http://www.php.net/manual/en/function.parse-ini-file.php
    19.5 +; for limitations of the ini format used here
    19.6 +
    19.7 +; Define the stylesheets your template uses here. The second value
    19.8 +; defines for which output media the style should be loaded. Currently
    19.9 +; print, screen and rtl are supported. rtl styles are loaded additionally
   19.10 +; to screen styles if a right-to-left language is selected (eg. hebrew)
   19.11 +[stylesheets]
   19.12 +layout.css     = screen
   19.13 +design.css     = screen
   19.14 +style.css      = screen
   19.15 +
   19.16 +media.css      = screen
   19.17 +
   19.18 +UWEB.css      = screen
   19.19 +
   19.20 +rtl.css        = rtl
   19.21 +print.css      = print
   19.22 +
   19.23 +; This section is used to configure some placeholder values used in
   19.24 +; the stylesheets. Changing this file is the simplest method to
   19.25 +; give your wiki a new look.
   19.26 +[replacements]
   19.27 +
   19.28 +;--------------------------------------------------------------------------
   19.29 +;------ guaranteed dokuwiki color placeholders that every plugin can use
   19.30 +; main text and background colors
   19.31 +__text__           = "#000"
   19.32 +__background__     = "#fff"
   19.33 +; alternative text and background colors
   19.34 +__text_alt__       = "#638c9c"
   19.35 +__background_alt__ = "#dee7ec"
   19.36 +; neutral text and background colors
   19.37 +__text_neu__       = "#666"
   19.38 +__background_neu__ = "#f5f5f5"
   19.39 +; border color
   19.40 +__border__         = "#dadada"
   19.41 +;--------------------------------------------------------------------------
   19.42 +
   19.43 +; other text and background colors
   19.44 +__text_other__       = "#ccc"
   19.45 +__background_other__ = "#f7f9fa"
   19.46 +
   19.47 +; these are used for links
   19.48 +__extern__    = "#436976"
   19.49 +__existing__  = "#090"
   19.50 +__missing__   = "#f30"
   19.51 +
   19.52 +; highlighting search snippets
   19.53 +__highlight__ = "#ff9"
   19.54 +
   19.55 +
   19.56 +;--------------------------------------------------------------------------
   19.57 +;------ for keeping old templates and plugins compatible to the old pattern
   19.58 +; (to be deleted at the next or after next release)
   19.59 +__white__      = "#fff"
   19.60 +__lightgray__  = "#f5f5f5"
   19.61 +__mediumgray__ = "#ccc"
   19.62 +__darkgray__   = "#666"
   19.63 +__black__      = "#000"
   19.64 +
   19.65 +; these are the shades of blue
   19.66 +__lighter__   = "#f7f9fa"
   19.67 +__light__     = "#eef3f8"
   19.68 +__medium__    = "#dee7ec"
   19.69 +__dark__      = "#8cacbb"
   19.70 +__darker__    = "#638c9c"