1/**
2 * This file provides styles for the edit view (?do=edit), preview
3 * and "section edit button" and "editbutton_table edit button".
4 */
5
6/* + + + + +  edit view  + + + + + */
7#dokuwiki__content {
8    div.section_highlight {
9        clear: right;
10        background: repeating-linear-gradient(
11            -45deg,
12            @highlight-odd-ini_text,
13            @highlight-odd-ini_text 10px,
14            @highlight-even-ini_text 10px,
15            @highlight-even-ini_text 20px,
16        );
17        border-color: @ini_background_page_header;
18    }
19
20    // "section edit button" and "editbutton_table edit button"
21    .secedit button {
22        clear: both;
23        font-size: 100%;
24        margin-top: .5rem;
25        margin-bottom: .5rem;
26    }
27
28    div.editBox {
29        background-color: #FFF;
30        border: solid 2px #FFF;
31
32        .editButtons {
33            display: inline-block;
34            padding-bottom: 1rem;
35        }
36
37        @media @screen_max-xs {
38            div.summary {
39                label[for=edit__summary] {
40                    white-space: normal;
41                    display: block;
42                    width: 100%;
43                    span {
44                        display: inline-block;
45                        padding-bottom: .4rem;
46                    }
47                    input#edit__summary{
48                        max-width: 100%;
49                        box-sizing: border-box;
50                    }
51                }
52            }
53        }
54    }
55}
56
57.mode_edit {
58    .content {
59        .msg-area {
60            display: block;
61            margin-bottom: 1.5rem;
62            clear: both;
63        }
64
65        #spr__meta-box {
66            display: none;
67        }
68    }
69}
70