1
2.dokuwiki div.aimgcontent {
3    display: none;
4}
5
6@media aural,braille,tty {
7  .dokuwiki div.aimgcontent {
8	  display: block;
9  }
10  .dokuwiki img.aimg {
11	  display: none;
12  }
13}
14
15/*
16The overall canvas: added in fnclient-0.5.0 to provide a canvas works space to be able to place
17controls outside of image, and also one of: container-inactive container-active
18*/
19
20.fn-canvas {
21 position: relative;
22 border: 0px solid #ddd;
23 /*background-color: #eef5f9;
24 border-left: 1px solid #d5e6ee;
25 border-top: 1px solid #d5e6ee;
26 border-right: 1px solid #d5e6ee; */
27}
28
29/*
30The overall container: always has class="fn-container", and also one of:
31container-inactive container-active
32*/
33
34.fn-container {
35 position: absolute;
36}
37
38.fn-container img {
39 border-width: 0;
40}
41
42.fn-view-image-link {
43	display: block;
44	margin-top: 10px;
45	text-align: left;
46}
47
48#fn-modaldialog {
49	position: absolute;
50	background-color: #fddddd;
51	height: 20px;
52	width: 150px;
53	right: 0px;
54	top: 0px;
55	color: black;
56	padding-left: 4px;
57}
58
59
60/* Note areas - a separate class is applied to those being edited. */
61
62.fn-area {
63 position: absolute;
64 background: url(artwork/transparent.gif);
65 border: 1px dotted #33CCFF;
66 cursor: crosshair;
67}
68
69#fn-area-new{
70 border: 1px dotted #ff0;
71}
72
73.fn-container-active .fn-area {
74 visibility: inherit;
75}
76
77.fn-container-inactive .fn-area {
78 visibility: hidden;
79}
80
81
82.fn-area-innerborder-left {
83 position: absolute;
84 top: 0xp;
85 left: 0px;
86 border-left:1px solid #fff;
87 width: 0px;
88 height: 100%;
89}
90
91.fn-area-innerborder-top {
92 position: absolute;
93 top: 0xp;
94 left: 0px;
95 border-top: 1px solid #fff;
96 width: 100%;
97 height: 1px;
98}
99
100.fn-area-innerborder-right {
101 position: absolute;
102 top: 0xp;
103 right: 0px;
104 border-right:1px solid #fff;
105 width: 0px;
106 height: 100%;
107}
108
109.fn-area-innerborder-bottom {
110 position: absolute;
111 top: 0xp;
112 bottom: 0px;
113 border-bottom: 1px solid #fff;
114 width: 100%;
115}
116
117
118/* Notes themselves. */
119
120.fn-note {
121 position: absolute;
122 left: 0%;
123 top: 100%;
124 width: 150px;
125 visibility: hidden;
126 padding: 4px;
127 background-color: #FFEECC;
128 border: 1px solid #000;
129 -moz-border-radius: 7px; /* Non-standard */
130}
131.fn-note span {
132 display: block;
133 margin-top: 2px;
134 text-align: left;
135 line-height: 1em;
136}
137.fn-note-title {
138 margin-bottom: 1px;
139 font-size: 110%;
140 font-weight: bold;
141 color: #666633;
142}
143.fn-note-content {
144 color: #000000;
145}
146.fn-note-author {
147 font-size: 80%;
148 font-style: italic;
149 text-align: right;
150 color: #333300;
151}
152
153
154
155