1
2
3/* The text area in the edit form */
4textarea {
5    width: 100%;
6}
7
8/* Preview in the edit form */
9div.preview {
10    -moz-border-bottom-colors: none;
11    -moz-border-left-colors: none;
12    -moz-border-right-colors: none;
13    -moz-border-top-colors: none;
14    background-color: #f5f5f5;
15    border-bottom-color: #000;
16    border-bottom-style: dashed;
17    border-bottom-width: 1px;
18    border-image-outset: 0 0 0 0;
19    border-image-repeat: stretch stretch;
20    border-image-slice: 100% 100% 100% 100%;
21    border-image-source: none;
22    border-image-width: 1 1 1 1;
23    border-left-color: #000;
24    border-left-style: dashed;
25    border-left-width: 1px;
26    border-right-color: #000;
27    border-right-style: dashed;
28    border-right-width: 1px;
29    border-top-color: #000;
30    border-top-style: dashed;
31    border-top-width: 1px;
32    margin-bottom: 0;
33    margin-left: 2em;
34    margin-right: 0;
35    margin-top: 0;
36    padding-bottom: 4px;
37    padding-left: 4px;
38    padding-right: 4px;
39    padding-top: 4px;
40}
41
42/** The input summary when editing a page is 50px fix **/
43input {
44    max-width: 100%;
45}
46
47
48
49
50
51