xref: /template/sprintdoc/css/plugins/tabinclude.less (revision d9d97457c39e04d8c09c10facf24ad8712cddae3) !
1/**
2 * This file provides styles for the tabinclude
3 */
4
5
6/* + + + + +  plugin tabinclude  + + + + + */
7
8div#dwpl-ti-container {
9    li.dwpl-ti-tab {
10        box-shadow: none;
11        background-color: @ini_background_page_header;
12        border-color: @ini_border;
13        border-radius: @fix_border-radius @fix_border-radius 0 0;
14        color: @ini_background_page_footer;
15        padding: 0;
16
17        &:hover {
18            background-color: @ini_background_page_header;
19            text-decoration: none;
20
21            div {
22                text-decoration: underline;
23
24                &.selected {
25                    color: @ini_text;
26                }
27            }
28        }
29
30        div {
31            border-radius: inherit;
32            color: inherit;
33            padding: .1em .35em;
34
35            &.selected {
36                position: relative;
37                background-color: @ini_background;
38                color: @ini_text;
39            }
40        }
41    }
42
43
44/* + + +  content box  + + + */
45    div.dwpl-ti-content-box {
46        position: relative;
47        overflow: auto;
48        box-shadow: @box-shadow;
49        background-color: @ini_background;
50        border: solid 1px @ini_border;
51        border-radius: 0;
52        margin-top: -1px;
53    }
54}
55
56
57/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
58/* media queries */
59
60@media @screen_max-md {
61    div#dwpl-ti-container { }
62}
63