source: documentation/trunk/packages/templates/greenstone-monobook/static/3rd/dokuwiki/_edit.css@ 30114

Last change on this file since 30114 was 30114, checked in by jmt12, 9 years ago

Updated Greenstone customizations for Detritus, but rearranged to move into separate plugin. Initial checkin of plugins, template, special wiki pages.

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