1/****************************************************************************** 2 ******************************** ATTENTION ********************************* 3 DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! 4 ****************************************************************************** 5 If you want to add some own screen CSS, have a look at the README of this 6 template and "/user/screen.css". You have been warned! 7 *****************************************************************************/ 8 9/* Notes about how the template CSS works: 10 11 - This template includes 3rd party CSS files: 12 1) CSS from the "starter" DokuWiki template by Anika Henke (brings 13 important and basic styling for syntax and core features) 14 2) CSS from the original "vector" skin for MediaWiki (brings the basic 15 layout and overwrites some "default" styling) 16 These files will be included BEFORE this specific CSS file. In this file, 17 I just overwrite non fitting MediaWiki "vector" and DokuWiki "starter" 18 CSS + add some CSS for some exclusive objects of this template 19 - Why I am doing this? Well, read <http://j.mp/eq8zSo>. I followed the main 20 principle described there and simply apply it to the two sources ("starter" 21 template and "vector" skin). 22 - This way also ensures a painless update, if there are new versions of 23 MediaWiki vector or DokuWiki CSS files. Cause these 3rd party components 24 were not edited or partially copied, I do not have to track their changes 25 in detail. 26 27 Explanation of the different sections in here: 28 - "Styles/corrections for the template itself" 29 General CSS targeting the template structure. This section overwrites non 30 fitting CSS of the "vector" MediaWiki skin and "starter" DokuWiki 31 template. Read the notes above and <http://j.mp/eq8zSo> if you do not know 32 why I am doing it this way. 33 - "Browser Hacks and corrections" 34 Section containing bigger hacks for browser specific problems. 35*/ 36 37 38/****************************************************************************** 39 ************** Styles/corrections for the template itself ******************** 40 ******************************************************************************/ 41/* --------------- general styling --------------- */ 42/* general tags */ 43html { 44 background-color: #f3f3f3; 45} 46div.dokuwiki p, 47div.dokuwiki blockquote, 48div.dokuwiki table, 49div.dokuwiki pre { 50 margin: 0 0 1.0em 0; 51} 52div.dokuwiki caption { 53 font-family: sans-serif; 54} 55 56/* forms */ 57div.dokuwiki textarea.edit { 58 font-family: monospace, serif; 59 /* second generic font fixes problem with font-size, see 60http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */ 61 font-size: 14px; 62 color: __text__; 63 background-color: __background__; 64 border: 1px solid __border__; 65 padding: 0.3em 0 0 0.3em; 66 width: 100%; 67 line-height: 17px; 68} 69div.dokuwiki legend { 70 font-family: sans-serif; 71 font-weight: normal; 72 background-color: transparent; 73 text-align: left; /* needed for webkit browsers */ 74} 75 76/* nice alphatransparency background except for IE <7 */ 77html>body div.dokuwiki textarea.edit { 78 background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top; 79} 80 81div.dokuwiki input.edit, 82div.dokuwiki select.edit { 83 font-size: 100%; 84 border: 1px solid __border__; 85 color: __text__; 86 background-color: __background__; 87 vertical-align: middle; 88 margin: 1px; 89 padding: 0.20em 0.3em; 90 display: inline; 91 font-weight: normal; 92} 93 94/* nice alphatransparency background except for IE <7 */ 95html>body div.dokuwiki input.edit, 96html>body div.dokuwiki select.edit { 97 background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top; 98} 99 100div.dokuwiki select.edit { 101 padding: 0.1em 0; 102} 103 104div.dokuwiki input.missing { 105 font-size: 100%; 106 border: 1px solid __border__; 107 color: __text__; 108 background-color: #ffcccc; 109 vertical-align: middle; 110 margin: 1px; 111 padding: 0.20em 0.3em; 112 display: inline; 113} 114 115/* disabled style - not understood by IE */ 116div.dokuwiki textarea.edit[disabled], 117div.dokuwiki textarea.edit[readonly], 118div.dokuwiki input.edit[disabled], 119div.dokuwiki input.edit[readonly], 120div.dokuwiki input.button[disabled], 121div.dokuwiki select.edit[disabled] { 122 background-color: __background_neu__!important; 123 color: __text_neu__!important; 124 font-weight: normal; 125} 126 127/* edit form */ 128div.dokuwiki div.toolbar, 129div.dokuwiki div#wiki__editbar { 130 margin: 2px 0; 131 text-align: left; 132} 133div.dokuwiki div#size__ctl { 134 float: right; 135 width: 60px; 136 height: 2.7em; 137} 138div.dokuwiki #size__ctl img { 139 cursor: pointer; 140} 141div.dokuwiki div#wiki__editbar div.editButtons { 142 float: left; 143 padding: 0 1.0em 0.7em 0; 144} 145div.dokuwiki div#wiki__editbar div.summary { 146 float: left; 147} 148div.dokuwiki .nowrap { 149 white-space: nowrap; 150} 151div.dokuwiki div#draft__status { 152 float: right; 153 color: __text_alt__; 154} 155 156div.dokuwiki div.license { 157 padding: 0.5em; 158 font-size: 90%; 159 text-align: center; 160} 161 162div.dokuwiki form#dw__editform div.license { 163 clear: left; 164 font-size: 90%; 165} 166 167/* buttons */ 168div.dokuwiki input.button, 169div.dokuwiki button.button { 170 border: 1px solid __border__; 171 color: __text__; 172 background-color: __background__; 173 vertical-align: middle; 174 text-decoration: none; 175 font-size: 100%; 176 cursor: pointer; 177 margin: 1px; 178 padding: 0.125em 0.4em; 179 font-weight: normal; 180 line-height: 1.333em; 181 #line-height: 1em; /* fix MSIE 6, 7 */ 182} 183div.dokuwiki button.toolbutton { 184 height: 20px; 185 width: 24px; 186 padding: 1px 3px; 187 line-height: 16px; 188 text-align: center; 189 height: 22px\9; /* fix MSIE 6, 7, 8 */ 190} 191/* nice alphatransparency background except for IE <7 */ 192html>body div.dokuwiki input.button, 193html>body div.dokuwiki button.button { 194 background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom; 195} 196 197* html div.dokuwiki input.button, 198* html div.dokuwiki button.button { 199 height: 1.8em; 200} 201 202/* links */ 203div.dokuwiki a:link, 204div.dokuwiki a:visited { 205 color: #436976; 206 text-decoration: none; 207} 208div.dokuwiki a:hover, 209div.dokuwiki a:active { 210 color: __text__; 211 text-decoration: underline; 212} 213 214/* missing page links outside rendered articles */ 215a.wikilink2, 216a.wikilink2:link, 217a.wikilink2:visited, 218a.wikilink2:hover { 219 color: __missing__ !important; 220 text-decoration: none; 221} 222a.wikilink2:hover { 223 border-bottom: 0 none !important; 224 text-decoration: none !important; 225} 226 227/* link to current page */ 228.dokuwiki span.curid a { 229 font-weight: normal; 230} 231 232/* internal link */ 233.dokuwiki a.wikilink1, 234.dokuwiki a.wikilink1:visited { 235 color: __existing__ !important; 236} 237 238/* external links */ 239div#bodyContent a.urlextern { 240 background: url(static/3rd/vector/external-link-ltr-icon.png) center right no-repeat; 241 padding: 0 13px 0 0; 242} 243div.dokuwiki a.urlextern:visited { 244 color: purple; 245} 246 247/* email link */ 248div#bodyContent a.mail { 249 background: transparent url(static/3rd/vector/mail-icon.png) center right no-repeat; 250 padding: 0 13px 0 0; 251} 252 253/* windows share */ 254div.dokuwiki a.windows { 255 background: transparent url(static/3rd/dokuwiki/windows.gif) center right no-repeat; 256 padding: 0 18px 1px 0; 257} 258 259/* interwiki link */ 260div.dokuwiki a.interwiki { 261 background-position: center right; 262 padding: 0 17px 0 0; 263} 264div.dokuwiki a.interwiki:visited { 265 color: purple; 266} 267 268/* headlines */ 269h1, 270h2, 271h3, 272h4, 273h5, 274h6 { 275 font-family: sans-serif; 276} 277div#content .dokuwiki h1, 278div#content .dokuwiki h2, 279div#content .dokuwiki h3, 280div#content .dokuwiki h4, 281div#content .dokuwiki h5, 282div#content .dokuwiki h6 { 283 border-bottom: 1px solid #aaa; 284 color: __text__; 285 margin: 0; 286 padding-bottom: 0.17em; 287 padding-top: 0.5em; 288} 289div#content .dokuwiki h1 a, 290div#content .dokuwiki h2 a, 291div#content .dokuwiki h3 a, 292div#content .dokuwiki h4 a, 293div#content .dokuwiki h5 a, 294div#content .dokuwiki h6 a { 295 color: __text__; 296} 297div#content .dokuwiki h1 a:hover, 298div#content .dokuwiki h2 a:hover, 299div#content .dokuwiki h3 a:hover, 300div#content .dokuwiki h4 a:hover, 301div#content .dokuwiki h5 a:hover, 302div#content .dokuwiki h6 a:hover { 303 text-decoration: none; 304} 305div#content .dokuwiki h1 { 306 font-size: 160%; 307} 308div#content .dokuwiki h1, 309div#content .dokuwiki h2 { 310 margin-bottom: 0.6em; 311 font-weight: normal; 312} 313div#content .dokuwiki h3, 314div#content .dokuwiki h4, 315div#content .dokuwiki h5, 316div#content .dokuwiki h6 { 317 font-weight: bold; 318 border-bottom: none; 319 margin-bottom: 0.3em; 320} 321div#content .dokuwiki h3 { 322 font-size: 132%; 323} 324div#content .dokuwiki h4 { 325 font-size: 116%; 326} 327div#content .dokuwiki h5 { 328 font-size: 100%; 329} 330div#content .dokuwiki h6 { 331 font-size: 80%; 332} 333 334/* remove indent from different sections */ 335div#content .dokuwiki div.level1, 336div#content .dokuwiki div.level2, 337div#content .dokuwiki div.level3, 338div#content .dokuwiki div.level4, 339div#content .dokuwiki div.level5 { 340 margin-left: 0; 341} 342 343/* lists */ 344div.dokuwiki ul { 345 line-height: 1.5em; 346 padding: 0; 347 list-style-type: square; 348 list-style-image: url(static/3rd/vector/bullet-icon.png) !important; 349 margin: 0.3em 0 1em 1.5em; 350 color: __text_alt__; 351} 352 353div.dokuwiki ol { 354 line-height: 1.5em; 355 padding: 0; 356 list-style-image: none; 357 margin: 0.3em 0 1em 3.2em; 358 color: __text_alt__; 359 font-weight: bold; 360} 361 362div.dokuwiki li ul, 363div.dokuwiki li ol { 364 margin: 0 0 0 1.5em; /* no bottom gap in between and smaller left margin for nested lists */ 365} 366 367div.dokuwiki .li { 368 color: __text__; /* the list items overriding the ul/ol definition */ 369 font-weight: normal; 370} 371 372div.dokuwiki ol { list-style-type: decimal; } 373div.dokuwiki ol ol { list-style-type: upper-roman; } 374div.dokuwiki ol ol ol { list-style-type: lower-alpha; } 375div.dokuwiki ol ol ol ol { list-style-type: lower-greek; } 376 377div.dokuwiki li.open { 378 list-style-image: url(static/3rd/dokuwiki/images/open.gif); 379} 380 381div.dokuwiki li.closed { 382 list-style-image: url(static/3rd/dokuwiki/closed.gif); 383} 384 385div.dokuwiki li { 386 margin-left: 0; 387} 388 389/* quotes */ 390div#content .dokuwiki blockquote { 391 border-left: 2px solid __border__; 392 padding-left: 3px; 393 padding-right: 0; 394 margin-left: 0.2em; 395} 396 397/* preformatted stuff, source code */ 398div#content .dokuwiki code, 399div#content .dokuwiki pre, 400div#content .dokuwiki pre.code, 401div#content .dokuwiki pre.file { 402 font-size: 100%; 403 background-color: #f9f9f9; 404} 405div#content .dokuwiki pre, 406div#content .dokuwiki pre.code, 407div#content .dokuwiki pre.file { 408 line-height: 1.2em; 409 padding: 0.5em; 410 border-style: dashed; 411} 412div#content .dokuwiki dl.file, 413div#content .dokuwiki dl.file dd { 414 margin-left: 0; 415} 416div#content .dokuwiki dl.file dt, 417div#content .dokuwiki dl.code dt { 418 background-color: #f9f9f9; 419 border-bottom: 2px solid #f9f9f9; 420 border-top: 1px dashed __border__; 421 border-left: 1px dashed __border__; 422 border-right: 1px dashed __border__; 423 display: inline; 424 margin-left: 2em; 425 padding: 0.1em 1em; 426} 427div#content .dokuwiki dl.file dt a, 428div#content .dokuwiki dl.code dt a { 429 color: __text__; 430} 431 432/* "you are here" and "breadcrumbs" */ 433.catlinks { 434 font-size: 80%; 435 margin-bottom: 1em; 436} 437.catlinks p, 438.catlinks div { 439 margin: 0.3em 0; 440} 441 442/* tables */ 443th, 444td { 445 border: 0; 446} 447td[align="right"], 448th[align="right"] { 449 text-align: right; 450} 451div.dokuwiki table.inline { 452 background-color: __background__; 453 min-width: 0; 454} 455div.dokuwiki table.inline th, 456div.dokuwiki table.inline td { 457 border: 1px solid __border__; 458} 459div.dokuwiki table.inline th { 460 background-color: __background_alt__; 461} 462div.dokuwiki table.inline tr:hover th, 463div.dokuwiki table.inline th:hover { 464 background-color: __background_alt__; 465} 466 467/* section edit buttons */ 468.dokuwiki .secedit { 469 margin-top: 0; 470} 471div#content .dokuwiki div.secedit input.button { 472 border: 0 none; 473 text-transform: lowercase; 474 color: __existing__; 475 margin: 0; 476 padding: 0; 477 cursor: pointer; 478 background: transparent none; 479} 480 481/* footnotes */ 482div.dokuwiki div.fn { 483 font-size: 90%; 484} 485 486/* link to footnote inside the text */ 487.dokuwiki sup a.fn_top { 488 font-size: 95%; 489} 490 491/* insitu-footnotes */ 492div.insitu-footnote { 493 font-size: 85%; 494 padding: 4px; 495} 496div.insitu-footnote code, 497div.insitu-footnote pre { 498 font-size: 90%; 499} 500 501/* Toolbar */ 502button.toolbutton { 503 background-color: __background__; 504 padding: 0px; 505 margin: 0 1px 0 0; 506 border: 1px solid __border__; 507 cursor: pointer; 508} 509 510/* nice alphatransparency background except for IE <7 */ 511html>body button.toolbutton { 512 background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom; 513} 514 515div.picker { 516 width: 250px; 517 border: 1px solid __border__; 518 background-color: __background_alt__; 519} 520 521div.pk_hl { 522 width: 125px; 523} 524 525button.pickerbutton { 526 padding: 0px; 527 margin: 0 1px 1px 0; 528 border: 0; 529 background-color: transparent; 530 font-size: 80%; 531 cursor: pointer; 532} 533 534/* gallery plugin compatibilty */ 535div.dokuwiki .gallery table, 536div.dokuwiki .gallery td { 537 border: 0 none; 538} 539 540/* bureaucracy plugin compatibilty */ 541div.dokuwiki form.bureaucracy__plugin fieldset { 542 text-align: center; 543} 544div.dokuwiki form.bureaucracy__plugin label { 545 width: 95% !important; 546 margin-left: auto; 547 margin-right: auto; 548} 549div.dokuwiki form.bureaucracy__plugin label span, 550div.dokuwiki form.bureaucracy__plugin input.edit, 551div.dokuwiki form.bureaucracy__plugin textarea.edit, 552div.dokuwiki form.bureaucracy__plugin fieldset textarea.edit { 553 text-align: left; 554 margin: auto 5px; 555 float: none !important; 556 width: 97% !important; 557 min-width: 97% !important; 558 max-width: 97% !important; 559} 560 561 562/* --------------- sidebar --------------- */ 563div#panel { 564 line-height: 15px; 565} 566div#panel .dokuwiki { 567 font-size: 0.75em; 568} 569div#panel a.wikilink1, 570div#panel a.wikilink2, 571div#panel a.urlextern { 572 padding-left: 0; 573 background: transparent none; 574 color: __existing__; 575} 576div#panel .body { 577 margin-right: 0.45em !important; 578 padding-top: 0.25em !important; 579} 580div#panel .body .dokuwiki p { 581 margin: 0; 582} 583div#panel .body .dokuwiki ul li { 584 font-size: 1em !important; 585 padding: 0.25em 0 !important; 586} 587div#panel .body .dokuwiki li ul { 588 font-size: 95% !important; 589 margin: 0.25em 0 0 1em !important; 590} 591div#panel .body .dokuwiki ol { 592 margin: 0 0 0 1.65em; 593} 594/* translation plugin by Anreas Gohr */ 595div#panel .body .dokuwiki .plugin_translation span { 596 display: none; 597} 598div#panel .body .dokuwiki .plugin_translation { 599 padding-right: 0 !important; 600 text-align: left; 601} 602div#panel .body .dokuwiki .plugin_translation, 603div#panel .body .dokuwiki .plugin_translation ul, 604div#panel .body .dokuwiki .plugin_translation li { 605 float: none; 606 margin: 0; 607 padding-right: 0; 608 line-height: 1.125em; 609 font-size: 100%; 610} 611div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:link, 612div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:hover, 613div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:active, 614div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:visited, 615div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:link, 616div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:hover, 617div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:active, 618div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:visited { 619 background-color: transparent; 620 margin: 0; 621 padding: 0; 622} 623div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:before, 624div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:before { 625 content: attr(title) " ("; 626} 627div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:after, 628div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:after { 629 content: ") "; 630} 631div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1 { 632 color: __existing__ !important; 633} 634div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2 { 635 color: __missing__ !important; 636} 637div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:hover { 638 text-decoration: underline; 639} 640div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:hover { 641 text-decoration: underline !important; 642} 643div#panel .body .dokuwiki .plugin_translation select { 644 width: 90%; 645 margin: auto !important; 646 text-align: left; 647} 648div#panel .body .dokuwiki .plugin_translation option, 649div#panel .body .dokuwiki .plugin_translation option.wikilink1, 650div#panel .body .dokuwiki .plugin_translation option.wikilink2 { 651 padding: auto 5px !important; 652 text-align: left; 653} 654 655 656/* --------------- search --------------- */ 657/* copy of the original vector id="searchInput" styles cause we have to use 658 another id for DokuWiki */ 659div#simpleSearch input#qsearch__in { 660 margin: 0; 661 border-width: 0; 662 padding: 0.25em; 663 line-height: 1em; 664 font-size: 0.8em; 665 width: 14em; 666 background-color: transparent; 667} 668/* Ajax quicksearch */ 669#qsearch__out { 670 top: 72px; 671 display: none; 672 left: auto; 673 right: 7.93335px; 674 bottom: auto; 675 height: auto; 676 font-family: sans-serif; 677 font-size: 0.8em; 678 background-color: window; 679 border: 1px solid #aaa; 680 padding: 0; 681 position: static; 682} 683#qsearch__out ul { 684 padding: 0; 685 margin: 0; 686 list-style: none; 687} 688#qsearch__out li { 689 color: windowtext; 690 margin: 0; 691 width: 100%; 692 padding: 1px; 693} 694#qsearch__out li a { 695 width: 97%; /* leave some space for browser rounding errors */ 696 display: block; 697} 698#qsearch__out li:hover { 699 background-color: #bbb; 700} 701#qsearch__out li a, 702#qsearch__out li a:link, 703#qsearch__out li a:visited, 704#qsearch__out li a:hover { 705 color: windowtext; 706 text-decoration: none; 707} 708 709 710/* --------------- footer --------------- */ 711div#footer a.wikilink1, 712div#footer a.wikilink2, 713div#footer a.urlextern { 714 padding-left: 0; 715 background: transparent none; 716 color: __existing__; 717} 718/* default copyright notice layout */ 719div#footer #footer-info li#footer-info-copyright .license { 720 font-size: 100%; 721 text-align: left; 722 padding: 0; 723} 724div#footer #footer-info li#footer-info-copyright .license a.urlextern { 725 margin-left: 0.4em; 726} 727 728 729/* --------------- Table of contents (TOC) --------------- */ 730div.dokuwiki div.toc { 731 margin: 1.2em 0 0 2em; 732 float: right; 733 width: 200px; 734 font-size: 80%; 735 clear: both; 736} 737 738div.dokuwiki div.tocheader { 739 border: 1px solid __border__; 740 background-color: __background_alt__; 741 text-align: left; 742 font-weight: bold; 743 padding: 3px; 744 margin-bottom: 2px; 745 line-height: 1.45em; 746} 747 748div.dokuwiki span.toc_open, 749div.dokuwiki span.toc_close { 750 border: 0.4em solid __background_alt__; 751 float: right; 752 display: block; 753 margin: 0.4em 3px 0 0; 754} 755 756div.dokuwiki span.toc_open span, 757div.dokuwiki span.toc_close span { 758 display: none; 759} 760 761div.dokuwiki span.toc_open { 762 margin-top: 0.4em; 763 border-top: 0.4em solid __text__; 764} 765 766div.dokuwiki span.toc_close { 767 margin-top: 0; 768 border-bottom: 0.4em solid __text__; 769} 770 771div.dokuwiki #toc__inside { 772 border: 1px solid __border__; 773 background-color: __background__; 774 text-align: left; 775 padding: 0.5em 0 0.7em 0; 776} 777 778div.dokuwiki ul.toc { 779 list-style-type: none; 780 list-style-image: none; 781 line-height: 1.2em; 782 padding: 0 !important; 783 margin: 0.3em 0 0 1.5em !important; 784} 785 786div.dokuwiki ul.toc li { 787 list-style-image: none; 788 list-style-type: none; 789 background: transparent url(static/3rd/dokuwiki/tocdot2.gif) 0 0.6em no-repeat; 790 padding-left: 0.4em !important; 791 margin-bottom: 0.1em !important; 792} 793 794div.dokuwiki ul.toc li.clear { 795 background-image: none; 796 padding-left: 0.4em; 797} 798 799div.dokuwiki a.toc:link, 800div.dokuwiki a.toc:visited { 801 color: #436976; 802} 803 804div.dokuwiki a.toc:hover, 805div.dokuwiki a.toc:active { 806 color: __text__; 807} 808 809div.toc, 810div.dokuwiki a.toc, 811div.dokuwiki ul.toc { 812 border: 0 none; 813 background: transparent none; 814 font-size: 100%; 815} 816 817div.dokuwiki ul.toc { 818 padding-top: 0; 819 padding-bottom: 0; 820 padding-left: 1em !important; 821 list-style-type: none !important; 822 list-style-image: none !important; 823 margin: 0 !important; 824} 825 826div.dokuwiki a.toc { 827 padding: 0; 828} 829 830 831/* --------------- generic content classes --------------- */ 832div.error, 833div.info, 834div.success, 835div.notify { 836 font-size: 80%; 837 line-height: 1.25em; 838} 839 840 841/* --------------- admin menu --------------- */ 842/* editing preview */ 843div#content .dokuwiki div.preview { 844 margin-left: 0; 845} 846/* "remeber me" checkbox, login */ 847div.dokuwiki form#dw__login label.simple { 848 text-align: center; 849 padding-bottom: 0.4em; 850} 851/* main menu */ 852.dokuwiki ul.admin_tasks li { 853 list-style-type: none; 854 list-style-image: none; 855} 856.dokuwiki ul.admin_tasks li a { 857 font-weight: bold; 858} 859/* acl tree */ 860#acl__tree li { 861 list-style-image: none; 862 list-style-type: none; 863} 864 865 866/* --------------- media manager --------------- */ 867#media__manager { 868 min-height: 550px; 869} 870* html #media__manager { 871 height: 550px; /* fix MSIE 6 */ 872} 873#media__manager h1, 874#media__manager h2, 875#media__popup h1, 876#media__popup h2 { 877 font-size: 1em !important; 878 line-height: 1em !important; 879 font-weight: bold !important; 880} 881/* make a "non-embedded"/fullpage manager possible trough hiding some stuff */ 882body.mmanagernotembedded .noprint, 883body.mmanagernotembedded #siteNotice, 884body.mmanagernotembedded #footer { 885 display: none !important; 886} 887body.mmanagernotembedded #content { 888 margin: 0 !important; 889} 890 891 892/* --------------- search result formating --------------- */ 893div.dokuwiki .search_result { 894 margin-bottom: 6px; 895 padding: 0 10px 0 30px; 896} 897 898div.dokuwiki .search_snippet { 899 color: __text_other__; 900 font-size: 12px; 901 margin-left: 20px; 902} 903 904div.dokuwiki .search_sep { 905 color: __text__; 906} 907 908div.dokuwiki .search_hit { 909 color: __text__; 910 background-color: __highlight__; 911} 912div.dokuwiki strong.search_hit { 913 font-weight: normal; 914} 915 916div.dokuwiki div.search_quickresult { 917 margin: 0 0 15px 30px; 918 padding: 0 10px 10px 0; 919 border-bottom: 1px dashed __border__; 920} 921div.dokuwiki div.search_quickresult h3 { 922 margin: 0 0 1.0em 0; 923 font-size: 1em; 924 font-weight: bold; 925} 926 927div.dokuwiki ul.search_quickhits { 928 margin: 0 0 0.5em 1.0em; 929} 930 931div.dokuwiki ul.search_quickhits li { 932 margin: 0 1.0em 0 1.0em; 933 float: left; 934 width: 30%; 935} 936 937div.dokuwiki .section_highlight { 938 background-color: __background_alt__ !important; 939} 940 941/* --------------- image details ----------------- */ 942div.dokuwiki div.img_big { 943 float: left; 944 margin-right: 0.5em; 945} 946 947div.dokuwiki dl.img_tags dt { 948 font-weight: bold; 949 background-color: __background_alt__; 950} 951div.dokuwiki dl.img_tags dd { 952 background-color: __background_neu__; 953} 954 955div.dokuwiki div.imagemeta { 956 color: __text_neu__; 957 font-size: 70%; 958 line-height: 95%; 959} 960 961div.dokuwiki div.imagemeta img.thumb { 962 float: left; 963 margin-right: 0.1em; 964} 965 966 967 968/****************************************************************************** 969 ********************* Browser Hacks and corrections ************************** 970 ******************************************************************************/ 971/* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */ 972textarea, 973.dokuwiki #dw__editform textarea.edit { 974 /* fix scrollbar flickers in IE8 standards mode, see 975 http://j.mp/bHExde and http://j.mp/ad7Abj for details */ 976 width: 450px\9; 977 max-width: 100%\9; 978 min-width: 100%\9; 979 /* overwrite original vector with fixes for IE6/7 */ 980 #width: 100% !important; 981 border: auto; 982} 983/* ajax quicksearch: MSIE 6/7 */ 984* html #qsearch__out { 985 width: 206px; 986} 987#qsearch__out ul { 988 #list-style: none !important; 989 #list-style-image: none !important; 990} 991#qsearch__out li { 992 #width: 206px; 993} 994/* admin menu icons: MSIE 6/7 */ 995.dokuwiki ul.admin_tasks li div.li { 996 #border-left: 1px dashed __background__; /* invisible border triggers IE to render the stuff */ 997} 998/* list style: MSIE 6/7 */ 999div#panel div.portal div.body ul { 1000 #list-style: none outside none !important; 1001} 1002form#page__revisions ul, 1003form#dw__recent ul { 1004 #list-style: none outside none !important; 1005} 1006 1007