You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
2.7 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. /**
  2. * This file provides styles for the edit view (?do=edit), preview
  3. * and section edit buttons.
  4. */
  5. /* edit view
  6. ********************************************************************/
  7. /*____________ toolbar ____________*/
  8. .dokuwiki div.toolbar {
  9. margin-bottom: .5em;
  10. }
  11. .dokuwiki div.toolbar #draft__status {
  12. float: right;
  13. color: __text_alt__;
  14. background-color: inherit;
  15. }
  16. .dokuwiki div.toolbar #tool__bar {
  17. }
  18. /* buttons inside of toolbar */
  19. .dokuwiki div.toolbar button.toolbutton {
  20. }
  21. /* picker popups (outside of .dokuwiki) */
  22. div.picker {
  23. width: 300px;
  24. border: 1px solid __border__;
  25. background-color: __background_alt__;
  26. color: inherit;
  27. }
  28. /* picker for headlines */
  29. div.picker.pk_hl {
  30. width: auto;
  31. }
  32. /* buttons inside of picker */
  33. div.picker button.pickerbutton {
  34. }
  35. /*____________ edit textarea ____________*/
  36. .dokuwiki textarea.edit {
  37. /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
  38. width: 700px;
  39. min-width: 100%;
  40. max-width: 100%;
  41. margin-bottom: .5em;
  42. }
  43. /*____________ below the textarea ____________*/
  44. .dokuwiki #wiki__editbar {
  45. overflow: hidden;
  46. margin-bottom: .5em;
  47. }
  48. /* size and wrap controls */
  49. .dokuwiki #wiki__editbar #size__ctl {
  50. float: right;
  51. }
  52. .dokuwiki #wiki__editbar #size__ctl img {
  53. cursor: pointer;
  54. }
  55. /* edit buttons */
  56. .dokuwiki #wiki__editbar .editButtons {
  57. display: inline;
  58. margin-right: 1em;
  59. }
  60. .dokuwiki #wiki__editbar .editButtons input {
  61. }
  62. /* summary input and minor changes checkbox */
  63. .dokuwiki #wiki__editbar .summary {
  64. display: inline;
  65. }
  66. .dokuwiki #wiki__editbar .summary label {
  67. vertical-align: middle;
  68. white-space: nowrap;
  69. }
  70. .dokuwiki #wiki__editbar .summary label span {
  71. vertical-align: middle;
  72. }
  73. .dokuwiki #wiki__editbar .summary input {
  74. }
  75. /* change background colour if summary is missing */
  76. .dokuwiki #wiki__editbar .summary input.missing {
  77. color: __text__;
  78. background-color: #ffcccc;
  79. }
  80. /* preview
  81. ********************************************************************/
  82. .dokuwiki div.preview {
  83. border: dashed __border__;
  84. border-width: .2em 0;
  85. padding: 1.4em 0;
  86. margin-bottom: 1.4em;
  87. }
  88. /* section edit buttons
  89. ********************************************************************/
  90. .dokuwiki .secedit {
  91. float: right;
  92. margin-top: -1.4em;
  93. }
  94. .dokuwiki .secedit input.button {
  95. font-size: 75%;
  96. }
  97. /* generic style for section highlighting (including headings) */
  98. .dokuwiki .section_highlight {
  99. }
  100. /* style for section highlighting (only sections below headings) */
  101. .dokuwiki div.section_highlight {
  102. margin: -3em 0 -.01em -1.5em;
  103. padding: 3em 0 .01em 1em;
  104. border-left: .5em solid __background_alt__;
  105. }