Mercurial > hg > digilib-old
annotate client/digitallibrary/jquery/jquery.digilib.css @ 759:16a16ca5f651 stream
use concurrent put methods in DocuDirDache.
move synchronized to readdir in DocuDirectory.
author | robcast |
---|---|
date | Tue, 08 Feb 2011 22:49:44 +0100 |
parents | 2e9a48dc7a0c |
children | 8d5239d7b1d4 |
rev | line source |
---|---|
725 | 1 /* |
2 * CSS style file for jQuery digilib | |
3 * | |
4 * Martin Raspe, Robert Casties, 11.1.2011 | |
5 */ | |
6 div.digilib div.scaler { | |
7 background-color: grey; | |
8 z-index: 0; | |
746
2e9a48dc7a0c
move zoom-drag background along with birdview indicator
hertzhaft
parents:
726
diff
changeset
|
9 width: 0px; |
2e9a48dc7a0c
move zoom-drag background along with birdview indicator
hertzhaft
parents:
726
diff
changeset
|
10 height: 0px; |
725 | 11 } |
12 | |
13 div.digilib div.birdview { | |
14 border: 1px solid white; | |
15 z-index: 10; | |
16 } | |
17 | |
18 div.digilib div.zoomrect { | |
19 position: absolute; | |
20 border: 2px solid #ff0000; | |
21 z-index: 100; | |
22 } | |
23 | |
726 | 24 div.digilib div.birdzoom { |
25 position: absolute; | |
26 border: 2px solid #ff0000; | |
27 z-index: 100; | |
28 } | |
29 | |
725 | 30 div.digilib div.mark { |
31 position: absolute; | |
32 color: white; | |
33 background: url('../greyskin/mark-bg-16.png'); | |
34 font-family: Verdana, Arial, Helvetica, sans-serif; | |
35 font-weight: bold; | |
36 font-size: 11px; | |
37 height: 15px; | |
38 width: 16px; | |
39 padding-top: 1px; | |
40 text-align: center; | |
41 z-index: 10; | |
42 } | |
43 | |
44 div.digilib div.about { | |
45 position: absolute; | |
46 width: 200px; | |
47 top: 100px; | |
48 left: 350px; | |
49 height: 200px; | |
50 padding: 0px 2px; | |
51 font-family: Verdana, Arial, Helvetica, sans-serif; | |
52 border: 2px solid lightcyan; | |
53 background-color: lightgrey; | |
54 text-align: center; | |
55 display: none; | |
56 z-index: 1000; | |
57 } | |
58 | |
59 /* special definitions for fullscreen */ | |
60 div.digilib.dl_fullscreen div.buttons { | |
61 position: fixed; | |
62 right: 0px; | |
63 top: 0px; | |
64 padding: 2px; | |
65 background-color: transparent; | |
66 z-index: 100; | |
67 } | |
68 | |
69 div.digilib.dl_fullscreen div.button:hover { | |
70 background-image: url('../greyskin/corona.png'); | |
71 } | |
72 | |
73 div.digilib.dl_fullscreen div.birdview { | |
74 position: fixed; | |
75 bottom: 8px; | |
76 right: 48px; | |
77 } | |
78 | |
79 /* special definitions for embedded */ | |
80 div.digilib.dl_embedded { | |
81 position: relative; | |
82 } | |
83 | |
84 div.digilib.dl_embedded div.buttons { | |
85 position: absolute; | |
86 right: 0px; | |
87 top: 0px; | |
88 padding: 1px; | |
89 background-color: grey; | |
90 opacity: 0.4; | |
91 z-index: 100; | |
92 } | |
93 | |
94 div.digilib.dl_embedded div.button:hover { | |
95 background-color: darkred; | |
96 } | |
97 | |
98 div.digilib.dl_embedded div.birdview { | |
99 position: absolute; | |
100 bottom: 0px; | |
101 right: 0px; | |
726 | 102 } |