xref: /template/sprintdoc/css/plugins/edit.less (revision 1741a375bc4606f2007682ec74a528d80509b6fb)
1/**
2 * This file provides styles for the edit view (?do=edit), preview
3 * and section edit buttons.
4 */
5
6
7/* + + + + +  edit view  + + + + + */
8
9#dokuwiki__content {
10    div.section_highlight {
11        clear: right;
12        padding-top: 0 !important; // heredity
13    }
14
15    .secedit button {
16        clear: both;
17        font-size: 100%;
18        margin-top: .5rem;
19        margin-bottom: .5rem;
20    }
21
22    div.editBox {
23        background-color: #FFF;
24        border: solid 2px #FFF;
25        border-radius: @ini_default_border_radius;
26
27        .editButtons {
28            display: inline-block;
29            padding-bottom: 1rem;
30        }
31
32        * {
33            &:not(button) {
34                color: @color-editBox;
35            }
36        }
37    }
38}
39
40
41.mode_edit {
42    .content {
43        .msg-area {
44            display: block;
45            margin-bottom: 1.5rem;
46            clear: both;
47        }
48
49        #spr__meta-box {
50            display: none;
51        }
52    }
53}
54