1div.sectiontag {
2    position: absolute;
3    left: 0px;
4
5    .sectiontag__form {
6
7        left: 100%;
8        margin-left: -150%;
9
10        .sectiontag_button {
11            text-indent: -999px;
12            border: 0px;
13
14            background-color: transparent;
15            background-image: url(images/sectiontag.png);
16            width: 20px;
17            height: 20px;
18
19            &:hover, &:active {
20                background-color: @ini_highlight;
21            }
22        }
23    }
24}
25
26div.tagsections__accordeon {
27
28    label {
29        float: right;
30        display: inline-block;
31        width: 100%;
32        padding: 0px 5px;
33
34        &:after {
35            display: inline-block;
36            content: '';
37            clear: both;
38        }
39
40        &:hover {
41            background-color: @ini_highlight;
42        }
43    }
44
45    input[type='checkbox'] {
46        margin: 5px;
47        float: left;
48    }
49
50    input.tagsections__tag__new {
51        margin: 0px 10px;
52    }
53}
54
55.tagsections.header.tag {
56    font-size: small;
57    font-weight: normal;
58    margin: 0px 0.2em;
59
60    &:first-child {
61        margin-left: 1em;
62    }
63
64    &:first-child:before {
65        content: '';
66        width: 16px;
67        height: 12px;
68        background: url(images/tag.gif);
69        display: inline-block;
70        margin-bottom: -3px;
71        margin-right: 5px;
72    }
73}
74