1
2/* TODO */
3
4/**
5 * This file provides styles for modal dialogues.
6 */
7
8/* link wizard (opens from the link button in the edit toolbar)
9********************************************************************/
10
11#link__wiz {
12    position: absolute;
13    display: block;
14    z-index: 99;
15    width:   300px;
16    height:  250px;
17    padding: 0;
18    margin:  0;
19    overflow: hidden;
20    border: 1px solid __border__;
21    background-color: __background_neu__;
22    text-align: center;
23}
24
25#link__wiz_header {
26    background-color: __background_alt__;
27    height: 16px;
28    margin-bottom: 5px;
29}
30
31#link__wiz_close {
32    cursor: pointer;
33    margin: 0;
34}
35
36#link__wiz_result {
37    background-color: __background__;
38    width:  293px;
39    height: 193px;
40    overflow: auto;
41    border: 1px solid __border__;
42    margin: 3px auto;
43    text-align: left;
44}
45
46#link__wiz_result div.type_u {
47    padding: 3px 3px 3px 22px;
48    background: transparent url(../../images/up.png) 3px 3px no-repeat;
49}
50
51#link__wiz_result div.type_f {
52    padding: 3px 3px 3px 22px;
53    background: transparent url(../../images/page.png) 3px 3px no-repeat;
54}
55
56#link__wiz_result div.type_d {
57    padding: 3px 3px 3px 22px;
58    background: transparent url(../../images/ns.png) 3px 3px no-repeat;
59}
60
61#link__wiz_result div.even {
62    background-color: __background_neu__;
63}
64
65#link__wiz_result div.selected {
66    background-color: __background_alt__;
67}
68
69#link__wiz_result span {
70    display: block;
71    color: __text_neu__;
72}
73
74/*FIXME maybe move to a more general style sheet*/
75.ondrag {
76    cursor: move;
77    opacity: 0.8;
78}
79
80
81/* media option wizard (opens when inserting media in the media popup)
82********************************************************************/
83
84/* --- popup --- */
85
86#media__popup {
87    background-color:__background__;
88    display:none;
89    border: 1px solid __border__;
90    position: absolute;
91    width:270px;
92}
93
94#media__popup h1 {
95    text-align:center;
96    font-weight:normal;
97    background-color: __background_alt__;
98    height: 16px;
99    margin-bottom: 5px;
100    font-size:12px;
101    border-bottom: 0;
102}
103
104#media__popup p {
105    display:block;
106    line-height:14pt;
107    margin:0.5em;
108}
109
110#media_nolink {
111    padding:4px 0;
112}
113
114#media__popup label {
115    float:left;
116    width:9em;
117}
118
119#media__popup .button {
120    margin-left:auto;
121    margin-right:auto;
122}
123
124#media__popup .btnlbl {
125    text-align:center;
126}
127
128#media__popup .btnlbl input {
129    margin:0 1em;
130}
131
132#media__closeimg {
133    float:right;
134}
135
136/* --- display options --- */
137
138#media__linkopts label,
139#media__nolnk {
140    width: 80px;
141    float: left;
142    margin-left: 10px;
143}
144
145#media__linkopts label{
146    line-height: 20px;
147}
148
149#media__nolnk,
150#media__linkopts label.long{
151    margin-bottom: 8px;
152    line-height: 12px;
153}
154
155#media__linkopts label.long{
156    width: 150px;
157    float: none;
158}
159
160#media__linkopts br {
161    clear: both;
162}
163
164#media__linkopts select {
165    width: 60px;
166    margin-left: 10px;
167}
168
169#media__linkopts input.edit {
170    width:50px;
171    margin-left:10px;
172}
173#media__linkopts #media__title {
174    width:150px;
175}
176