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.

111 lines
2.4 KiB

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: 100%;
  39. margin-bottom: .5em;
  40. }
  41. /*____________ below the textarea ____________*/
  42. .dokuwiki #wiki__editbar {
  43. overflow: hidden;
  44. margin-bottom: .5em;
  45. }
  46. /* size and wrap controls */
  47. .dokuwiki #wiki__editbar #size__ctl {
  48. float: right;
  49. }
  50. .dokuwiki #wiki__editbar #size__ctl img {
  51. cursor: pointer;
  52. }
  53. /* edit buttons */
  54. .dokuwiki #wiki__editbar .editButtons {
  55. display: inline;
  56. margin-right: 1em;
  57. }
  58. .dokuwiki #wiki__editbar .editButtons input {
  59. }
  60. /* summary input and minor changes checkbox */
  61. .dokuwiki #wiki__editbar .summary {
  62. display: inline;
  63. }
  64. .dokuwiki #wiki__editbar .summary label {
  65. vertical-align: middle;
  66. white-space: nowrap;
  67. }
  68. .dokuwiki #wiki__editbar .summary label span {
  69. vertical-align: middle;
  70. }
  71. .dokuwiki #wiki__editbar .summary input {
  72. }
  73. /* change background colour if summary is missing */
  74. .dokuwiki #wiki__editbar .summary input.missing {
  75. color: __text__;
  76. background-color: #ffcccc;
  77. }
  78. /* preview
  79. ********************************************************************/
  80. .dokuwiki div.preview {
  81. background-color: __background_neu__;
  82. color: __text__;
  83. margin-bottom: 1.4em;
  84. padding: .5em;
  85. border: 1px dotted __text_neu__;
  86. }
  87. /* section edit buttons
  88. ********************************************************************/
  89. .dokuwiki .secedit {
  90. float: right;
  91. margin-top: -1.4em;
  92. }
  93. .dokuwiki .section_highlight {
  94. background-color: __background_alt__ !important;
  95. color: inherit;
  96. }