1#multiorphan__throbber {
2    visibility: hidden;
3}
4
5#multiorphan {
6
7    display: block;
8    width: 100%;
9
10    fieldset {
11
12        text-align: left;
13        min-width: 60%; // this makes the fieldset behave correctly.
14
15        label {
16
17            input, select {
18                float: right;
19                text-align: left;
20                width: 50%;
21            }
22
23            input[type=checkbox] {
24                width: 3%;
25                margin: 4px;
26                margin-right: 47%;
27            }
28        }
29
30        legend, fieldset.hideOptions .forceVisible {
31            display: block !important;
32        }
33
34        br {
35            clear: both;
36        }
37
38        p {
39            clear: both;
40        }
41    }
42
43    #multiorphan__out {
44        min-height: 3em;
45        text-overflow: ellipsis;
46        white-space: nowrap;
47        overflow: hidden;
48        max-width: 100%;
49    }
50
51    .multiorphan__throbber, .multiorphan__throbber img {
52        display: block;
53        margin-left: auto;
54        margin-right: auto;
55    }
56
57    .multiorphan__result_group .header[count]:after {
58        content: attr(count);
59        float: right;
60    }
61
62    .multiorphan__result {
63
64        padding: 0px;
65        border-bottom: 1px solid @ini_border;
66        overflow: hidden;
67
68        > div {
69            padding: 0.5em 1em;
70            background-color: #fefefe;
71
72            > span {
73                display: inline-block;
74                width: 80%;
75                word-break: break-all;
76            }
77
78            &:nth-child(even) {
79                background-color: #efefef;
80            }
81
82            &:hover {
83                background-color: fade(@ini_existing, 10%);
84            }
85
86            &.deleted, &.deleted:hover {
87                background-color: fade(@ini_missing, 10%);
88            }
89
90            &.deleted:nth-child(even), &.deleted:nth-child(even):hover {
91                background-color: fade(@ini_missing, 20%);
92            }
93        }
94
95        div.actions {
96            float: right;
97
98            a {
99                padding: 0px 5px;
100            }
101        }
102
103        li.requestPage {
104            position: relative;
105
106            > span {
107                display: inline-block;
108                width: 80%;
109                vertical-align: text-top;
110            }
111
112            div.actions:hover:before {
113                content: '';
114                position: absolute;
115                left: 0;
116                right: 0;
117                top: 0;
118                bottom: 0;
119
120                background: fade(@ini_existing, 10%);
121                pointer-events: none;
122            }
123        }
124    }
125}
126
127#multiorphan__errorlog {
128    overflow: auto;
129    max-height: 200px;
130
131    p {
132        color: #a00;
133        margin: 0px;
134        padding: 0px 5px;
135        overflow: hidden;
136        background-color: #FFEDED;
137
138        &:nth-child(even) {
139            background-color: #FFD4D4;
140        }
141    }
142}
143
144#multiorphan__preview_dialog {
145
146    ul.tabs, ul.actions {
147        display: none;
148    }
149
150    div.panelContent > * {
151        float: left;
152    }
153
154    div.panelContent .image {
155        min-width: 100px;
156        min-height: 100px;
157    }
158
159    div.panelContent .image img {
160        margin: 0 auto;
161    }
162}
163
164// Setup VIM: ex: et ts=4 enc=utf-8 :
165