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