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.

138 lines
3.4 KiB

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