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