1/**
2 * The CSS in here controls the appearance of the media manager
3 */
4
5#media__manager {
6    height: 100%;
7    overflow: hidden;
8}
9
10#media__left {
11    width: 30%;
12    border-right: solid 1px __border__;
13
14    height: 100%;
15    overflow: auto;
16    position: absolute;
17    left: 0;
18}
19
20#media__right {
21    width: 69.7%;
22
23    height: 100%;
24    overflow: auto;
25    position: absolute;
26    right: 0;
27}
28
29#media__manager h1 {
30    margin: 0;
31    padding: 0;
32    margin-bottom: 0.5em;
33}
34
35#media__manager a.select {
36    cursor: pointer;
37}
38
39/* --- Tree formatting --- */
40
41#media__tree img {
42    float: left;
43    padding: 0.5em 0.3em 0 0;
44}
45
46#media__tree ul {
47    list-style-type: none;
48    list-style-image: none;
49    margin-left: 1.5em;
50}
51
52#media__tree li {
53    clear: left;
54    list-style-type: none;
55    list-style-image: none;
56}
57*+html #media__tree li,
58* html #media__tree li {
59    border: 1px solid __background__;
60}/* I don't understand this, but this fixes a style bug in IE;
61it's dirty, so any "real" fixes are welcome */
62
63/* --- options --- */
64
65#media__opts {
66    padding-left: 1em;
67    margin-bottom: 0.5em;
68}
69
70#media__opts input {
71    float: left;
72    display: block;
73    margin-top: 4px;
74    position: absolute;
75}
76*+html #media__opts input,
77* html #media__opts input {
78    position: static;
79}
80
81#media__opts label {
82    display: block;
83    float: left;
84    margin-left: 20px;
85    margin-bottom: 4px;
86}
87*+html #media__opts label,
88* html #media__opts label {
89    margin-left: 10px;
90}
91
92#media__opts br {
93    clear: left;
94}
95
96/* --- file list --- */
97
98#media__content img.load {
99    margin: 1em auto;
100}
101
102#media__content #scroll__here {
103    border: 1px dashed __border__;
104}
105
106#media__content .odd {
107    background-color: __background_other__;
108    padding: 0.4em;
109}
110
111#media__content .even {
112    padding: 0.4em;
113}
114
115#media__content a.mediafile {
116    margin-right: 1.5em;
117    font-weight: bold;
118}
119
120#media__content div.detail {
121    padding: 0.3em 0 0.3em 2em;
122}
123
124#media__content div.detail div.thumb {
125    float: left;
126    width: 130px;
127    text-align: center;
128    margin-right: 0.4em;
129}
130
131
132#media__content img.btn {
133    vertical-align: text-bottom;
134}
135
136#media__content div.example {
137    color: __text_neu__;
138    margin-left: 1em;
139}
140
141/* --- upload form --- */
142
143#media__content div.upload {
144    font-size: 90%;
145    padding: 0 0.5em 0.5em 0.5em;
146}
147
148#media__content #mediamanager__uploader {
149    display: block;
150    border-bottom: solid 1px __border__;
151    padding: 0 0.5em 1em 0.5em;
152}
153
154#media__content form#dw__upload {
155    border-bottom: 0;
156}
157
158#media__content form#dw__upload fieldset {
159    padding: 0;
160    margin: 0;
161    border: none;
162    width: auto;
163}
164#media__content form#dw__upload p {
165    text-align: left;
166    padding: 0.25em 0;
167    margin: 0;
168    line-height: 1.0em;
169}
170#media__content form#dw__upload label.check {
171    float: none;
172    width: auto;
173    margin-left: 11.5em;
174}
175
176/* --- meta edit form --- */
177
178#media__content form.meta {
179    display: block;
180    padding: 0 0 1em 0;
181}
182
183#media__content form.meta label {
184    display: block;
185    width: 25%;
186    float: left;
187    font-weight: bold;
188    margin-left: 1em;
189    clear: left;
190}
191
192#media__content form.meta .edit {
193    font: 100% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
194    float: left;
195    width: 70%;
196    padding-right: 0;
197    padding-left: 0.2em;
198    margin: 2px;
199}
200
201#media__content form.meta textarea.edit {
202    height: 8em;
203}
204
205#media__content form.meta div.metafield {
206    clear: left;
207}
208
209#media__content form.meta div.buttons {
210    clear: left;
211    margin-left: 20%;
212    padding-left: 1em;
213}
214