1#plugin__farmer_admin {
2
3    .panelHeader {
4        background-color: #eee;
5        margin: 0;
6        padding: 10px 10px 8px;
7        overflow: hidden;
8        border-right: 1px solid @ini_border;
9        border-left: 1px solid @ini_border;
10    }
11
12    .panelMain,
13    .panelFooter {
14        padding: 1em;
15        border-right: 1px solid @ini_border;
16        border-left: 1px solid @ini_border;
17    }
18
19    .panelFooter {
20        border-bottom: 1px solid @ini_border;
21    }
22
23    form {
24        display: block;
25        text-align: center;
26
27        fieldset {
28            width: 80%;
29            padding: 1em;
30        }
31
32        label {
33            text-align: left;
34            display: block;
35            margin-bottom: 0.5em;
36
37            &:hover {
38                background-color: @ini_background_alt;
39            }
40
41            span {
42                display: inline-block;
43                width: 40%;
44            }
45        }
46
47        .chosen-container {
48            margin-bottom: 0.5em;
49        }
50
51        button {
52            margin: 1em;
53        }
54    }
55
56    .pluginmatrix {
57        width: 80%;
58        margin: 1em auto;
59
60        table {
61            thead th {
62                position: relative;
63                height: 8em;
64                vertical-align: bottom;
65                overflow: visible;
66                background-color: transparent;
67                border: none;
68
69                div {
70                    transform-origin: bottom left;
71                    transform: rotate(-60deg);
72                    position: absolute;
73                    left: 1em;
74                    bottom: 0;
75                    z-index: 5;
76                }
77            }
78
79            tbody {
80                position: relative;
81
82                td {
83                    cursor: pointer;
84                }
85
86                th.off,
87                td.off {
88                    background-color: #c33;
89                }
90
91                th.on,
92                td.on {
93                    background-color: #3c3;
94                }
95
96                th.default,
97                td.default {
98                    opacity: 0.5;
99                }
100            }
101        }
102    }
103
104}
105