xref: /template/sprintdoc/css/plugins/tabinclude.less (revision 24b8fdfaf2572ec70e180c09c7c055f28e544368)
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
9div#dwpl-ti-container {
10
11/* + + +  tabnav  + + + */
12    li.dwpl-ti-tab {
13        box-shadow: none;
14        border-color: @color-site-bg;
15        border-radius: @fix_border-radius @fix_border-radius 0 0;
16        padding: 0;
17
18        div {
19            background-color: @background_page-header;
20            border-radius: inherit;
21            padding: .1em .35em;
22
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