source: documentation/trunk/packages/templates/greenstone-monobook/static/3rd/dokuwiki/_modal.css@ 30114

Last change on this file since 30114 was 30114, checked in by jmt12, 9 years ago

Updated Greenstone customizations for Detritus, but rearranged to move into separate plugin. Initial checkin of plugins, template, special wiki pages.

File size: 1.6 KB
Line 
1/**
2 * This file provides styles for modal dialogues.
3 */
4
5.dokuwiki .ui-widget {
6 font-size: 100%;
7}
8
9
10/* link wizard (opens from the link button in the edit toolbar)
11********************************************************************/
12
13#link__wiz {
14}
15
16#link__wiz_result {
17 background-color: __background__;
18 width: 293px;
19 height: 193px;
20 overflow: auto;
21 border: 1px solid __border__;
22 margin: 3px auto;
23 text-align: left;
24 line-height: 1;
25}
26
27#link__wiz_result div {
28 padding: 3px 3px 3px 0;
29}
30
31#link__wiz_result div a {
32 display: block;
33 padding-left: 22px;
34 min-height: 16px;
35 background: transparent 3px center no-repeat;
36}
37
38#link__wiz_result div.type_u a {
39 background-image: url(../../images/up.png);
40}
41#link__wiz_result div.type_f a {
42 background-image: url(../../images/page.png);
43}
44#link__wiz_result div.type_d a {
45 background-image: url(../../images/ns.png);
46}
47
48#link__wiz_result div.even {
49 background-color: __background_neu__;
50}
51
52#link__wiz_result div.selected {
53 background-color: __background_alt__;
54}
55
56#link__wiz_result span {
57 display: block;
58 color: __text_neu__;
59 margin-left: 22px;
60}
61
62
63/* media option wizard (opens when inserting media in the media popup)
64********************************************************************/
65
66#media__popup {
67 /* for backwards compatibility (not needed since Rincewind) */
68 display: none;
69}
70
71#media__popup_content p {
72 margin: 0 0 .5em;
73}
74
75#media__popup_content label {
76 margin-right: .5em;
77 cursor: default;
78}
79
80#media__popup_content .button {
81 margin-right: 1px;
82 cursor: pointer;
83}
Note: See TracBrowser for help on using the repository browser.