xref: /template/sprintdoc/css/plugins/tabinclude.less (revision 5671e6e5e8447c4e2d768f9df08dd418c33a6772)
1/**
2 * This file provides styles for the edit view (?do=edit), preview
3 * and section edit buttons.
4 */
5
6
7/* + + + + +  plugin tabinclude  + + + + + */
8
9
10div#dwpl-ti-container {
11
12/* + + +  tabnav  + + + */
13    li.dwpl-ti-tab {
14        box-shadow: none;
15        border-color: @color-site-bg;
16        border-radius: @fix_border-radius @fix_border-radius 0 0;
17        padding: 0;
18
19        div {
20            background-color: @background_page-header;
21            border-radius: inherit;
22            padding: .1em .35em;
23            &.selected {
24                background-color: @color-site-bg;
25            }
26        }
27    }
28
29
30/* + + +  box  + + + */
31    div.dwpl-ti-content-box {
32        overflow: auto;
33        box-shadow: none;
34        background-color: @color-site-bg;
35        border: solid 1px @color-site-bg;
36        border-radius: 0;
37    }
38}
39
40
41/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
42/* media queries */
43
44@media @screen_max-md {
45    div#dwpl-ti-container {
46
47    }
48}
49