annotate webapp/src/main/webapp/jquery/jquery.digilib.css @ 1134:cd594aa261ec

fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
author hertzhaft
date Tue, 13 Nov 2012 20:18:11 +0100
parents fcafcc8996be
children bbb09797d7fc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
1 /*
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
2 * CSS style file for jQuery digilib
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
3 *
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
4 * Martin Raspe, Robert Casties, 11.1.2011
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
5 */
1109
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
6 * {
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
7 -moz-box-sizing: border-box;
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
8 -webkit-box-sizing: border-box;
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
9 box-sizing: border-box;
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
10 }
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
11
1056
89c5b56933af Ticket #9: new option 'showPageButtons', function 'disableButtons'
hertzhaft
parents: 1052
diff changeset
12 div.dl-digilib .dl-disabled {
89c5b56933af Ticket #9: new option 'showPageButtons', function 'disableButtons'
hertzhaft
parents: 1052
diff changeset
13 display: none;
89c5b56933af Ticket #9: new option 'showPageButtons', function 'disableButtons'
hertzhaft
parents: 1052
diff changeset
14 }
89c5b56933af Ticket #9: new option 'showPageButtons', function 'disableButtons'
hertzhaft
parents: 1052
diff changeset
15
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
16 div.dl-digilib,
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
17 div.dl-digilib button,
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
18 div.dl-digilib input {
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
19 font-family: Verdana, Arial, Helvetica, sans-serif;
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
20 font-size: 12px;
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
21 }
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
22
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
23 div.dl-digilib div.dl-scaler {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
24 background-color: gray;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
25 z-index: 0;
746
2e9a48dc7a0c move zoom-drag background along with birdview indicator
hertzhaft
parents: 726
diff changeset
26 width: 0px;
2e9a48dc7a0c move zoom-drag background along with birdview indicator
hertzhaft
parents: 726
diff changeset
27 height: 0px;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
28 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
29
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
30 div.dl-digilib div.dl-area {
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
31 display: none;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
32 position: absolute;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
33 border: 2px solid #ff0000;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
34 }
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
35
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
36 div.dl-digilib div.dl-areaoverlay {
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
37 position: absolute;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
38 z-index: 100;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
39 background-image:url('.');
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
40 }
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
41
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
42 div.dl-digilib div.dl-birdview {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
43 border: 1px solid white;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
44 z-index: 10;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
45 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
46
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
47 div.dl-digilib div.dl-birdzoom {
726
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
48 position: absolute;
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
49 border: 2px solid #ff0000;
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
50 z-index: 100;
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
51 }
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
52
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
53 div.dl-digilib div.dl-mark {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
54 position: absolute;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
55 color: white;
1089
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
56 background: url('img/mark-bg-16.png');
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
57 font-family: Verdana, Arial, Helvetica, sans-serif;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
58 font-weight: bold;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
59 font-size: 11px;
1089
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
60 height: 16px;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
61 width: 16px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
62 padding-top: 1px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
63 text-align: center;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
64 z-index: 10;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
65 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
66
1089
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
67 div.dl-digilib div.dl-annotationmark {
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
68 position: absolute;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
69 color: black;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
70 background: url('img/annotationmark-bg-16.png');
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
71 /* background-color: yellow; */
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
72 font-family: Verdana, Arial, Helvetica, sans-serif;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
73 font-weight: bold;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
74 font-size: 11px;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
75 height: 16px;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
76 width: 16px;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
77 padding-top: 1px;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
78 text-align: center;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
79 z-index: 10;
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
80 }
5e8077501ef8 oops, worked with outdated css file
hertzhaft
parents: 1088
diff changeset
81
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
82 div.dl-digilib div.dl-annotationregion {
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
83 background-color: rgba(255, 255, 10, 0.3);
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
84 /* border: 1px solid black; */
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
85 padding: 2px 4px;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
86 color: black;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
87 font-family: Verdana, Arial, Helvetica, sans-serif;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
88 font-weight: bold;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
89 font-size: 11px;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
90 }
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
91 div.dl-digilib div.dl-annotationregion:hover {
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
92 background-color: transparent;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
93 border: 2px solid yellow;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
94 }
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
95
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
96 div.dl-digilib div.dl-about {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
97 position: absolute;
1052
0d2491acfe70 simplify 'about' div
hertzhaft
parents: 1049
diff changeset
98 padding: 10px;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
99 font-family: Verdana, Arial, Helvetica, sans-serif;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
100 border: 2px solid aqua;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
101 background-color: silver;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
102 text-align: center;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
103 display: none;
1052
0d2491acfe70 simplify 'about' div
hertzhaft
parents: 1049
diff changeset
104 z-index: 100;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
105 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
106
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
107 div.dl-digilib div.dl-region {
813
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
108 position: absolute;
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
109 border: none;
1024
4ee43243a6a0 more clean up.
robcast
parents: 1020
diff changeset
110 color: white;
4ee43243a6a0 more clean up.
robcast
parents: 1020
diff changeset
111 font-family: Verdana, Arial, Helvetica, sans-serif;
4ee43243a6a0 more clean up.
robcast
parents: 1020
diff changeset
112 font-size: 11px;
792
d742bd92b05a first step to a regions plugin
hertzhaft
parents: 770
diff changeset
113 background-color: red;
895
01b875d668b1 another ugly workaround for IE7
hertzhaft
parents: 879
diff changeset
114 opacity: 0.3;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
115 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
116 filter: alpha(opacity=30);
813
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
117 }
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
118
1025
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
119 div.dl-digilib div.dl-region a:link,
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
120 div.dl-digilib div.dl-region a:visited {
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
121 color: white;
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
122 }
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
123
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
124 div.dl-digilib div.dl-region:hover {
1024
4ee43243a6a0 more clean up.
robcast
parents: 1020
diff changeset
125 background-color: transparent;
4ee43243a6a0 more clean up.
robcast
parents: 1020
diff changeset
126 border: 2px solid red;
1067
a45894a81e40 #26: minor enhancements for the regions plugin
hertzhaft
parents: 1063
diff changeset
127 opacity: 0.6;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
128 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
129 filter: alpha(opacity=60);
792
d742bd92b05a first step to a regions plugin
hertzhaft
parents: 770
diff changeset
130 }
d742bd92b05a first step to a regions plugin
hertzhaft
parents: 770
diff changeset
131
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
132 div.dl-digilib div.dl-regionArea {
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
133 background-color: red;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
134 border: none;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
135 opacity: 0.3;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
136 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
137 filter: alpha(opacity=30);
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
138 }
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
139
1088
16215fc22fbf better separation of HTML and user defined regions
hertzhaft
parents: 1083
diff changeset
140 div.dl-digilib div.dl-regionHTML {
16215fc22fbf better separation of HTML and user defined regions
hertzhaft
parents: 1083
diff changeset
141 background-color: purple;
16215fc22fbf better separation of HTML and user defined regions
hertzhaft
parents: 1083
diff changeset
142 }
16215fc22fbf better separation of HTML and user defined regions
hertzhaft
parents: 1083
diff changeset
143
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
144 div.dl-digilib div.dl-region a.dl-regionnumber {
813
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
145 color: white;
823
8af71d9d830b fixed automatic region links and region content
hertzhaft
parents: 818
diff changeset
146 text-decoration: none;
813
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
147 font-weight: bold;
851
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
148 font-size: 11px;
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
149 text-align: center;
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
150 padding: 0px 2px;
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
151 margin-right: 4px;
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
152 border: 1px solid white;
5922c444cd11 fixed region position bug in embedded mode, sigh
hertzhaft
parents: 848
diff changeset
153 display: inline-block;
813
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
154 }
1a7b14deae3a regions plugin works, inclunding event handlers
hertzhaft
parents: 792
diff changeset
155
1025
c75858ee4452 more fiddling with regions.
robcast
parents: 1024
diff changeset
156 div.dl-digilib map.dl-regioncontent {
818
eff74cfaaf97 read regions from HTML (not working yet), show info
hertzhaft
parents: 813
diff changeset
157 display: none;
823
8af71d9d830b fixed automatic region links and region content
hertzhaft
parents: 818
diff changeset
158 }
8af71d9d830b fixed automatic region links and region content
hertzhaft
parents: 818
diff changeset
159
1109
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
160 div.dl-digilib div.dl-highlightregion {
1110
ffda96c2fde0 use RegExp for finding regions; use ID for highlighting
hertzhaft
parents: 1109
diff changeset
161 background-color: transparent;
1109
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
162 border: 5px solid orange;
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
163 opacity: 0.8;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
164 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
165 filter: alpha(opacity=80);
1109
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
166 }
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
167
1092
4964a1e252eb first step towards a find region functionality
hertzhaft
parents: 1090
diff changeset
168 div.dl-digilib div.dl-findregion {
4964a1e252eb first step towards a find region functionality
hertzhaft
parents: 1090
diff changeset
169 background-color: transparent;
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
170 border: 5px solid orange;
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
171 opacity: 0.8;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
172 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
173 filter: alpha(opacity=80);
1092
4964a1e252eb first step towards a find region functionality
hertzhaft
parents: 1090
diff changeset
174 }
4964a1e252eb first step towards a find region functionality
hertzhaft
parents: 1090
diff changeset
175
1109
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
176 div.dl-digilib select.dl-finddata {
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
177 font-size: 11px;
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
178 }
ae796bcac7f4 better text search for regions; border-box rox!
hertzhaft
parents: 1108
diff changeset
179
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
180 div.dl-digilib #dl-calibration {
981
367f64acda4e added images for calibration dialog
hertzhaft
parents: 978
diff changeset
181 background: url('img/blue.png');
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
182 position: absolute;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
183 border: 2px solid aqua;
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
184 width: 400px;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
185 display: none;
1107
365f95a14057 factor out defineArea, using overlay div
hertzhaft
parents: 1101
diff changeset
186 z-index: 100;
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
187 }
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
188
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
189 div.dl-digilib #dl-ruler {
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
190 width: 100%;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
191 height: 100%;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
192 padding-bottom: 10px;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
193 font-family: Verdana, Arial, Helvetica, sans-serif;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
194 font-size: 12px;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
195 font-weight: bold;
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
196 text-align: center;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
197 color: aqua;
981
367f64acda4e added images for calibration dialog
hertzhaft
parents: 978
diff changeset
198 background: url('img/ruler-top.gif') 0px -1px repeat-x;
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
199 }
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
200
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
201 div.dl-digilib #dl-cm {
978
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
202 padding: 5px;
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
203 }
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
204
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
205 div.dl-digilib #dl-calibrationError {
978
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
206 color: red;
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
207 padding: 10px;
978
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
208 display: none;
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
209 }
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
210
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
211 div.dl-digilib #dl-calibrationInput {
978
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
212 margin: 0px 10px;
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
213 }
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
214
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
215 div.dl-digilib .dl-error {
978
3b334a7d81ec finished calibration dialog
hertzhaft
parents: 974
diff changeset
216 color: red;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
217 background-color: maroon;
974
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
218 }
678313a989a9 first part of calibration dialog
hertzhaft
parents: 903
diff changeset
219
1018
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
220 div.dl-digilib button.dl-button {
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
221 margin: 0px 10px 10px 10px;
1020
0eedb4a5b674 sliders for rot/brgt/cont, needs some refactoring
hertzhaft
parents: 1018
diff changeset
222 border-width: 1px;
1018
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
223 font-family: Verdana, Arial, Helvetica, sans-serif;
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
224 font-size: 12px;
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
225 color: white;
1020
0eedb4a5b674 sliders for rot/brgt/cont, needs some refactoring
hertzhaft
parents: 1018
diff changeset
226 background: transparent;
1018
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
227 }
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
228
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
229 div.dl-digilib table.dl-rgbslider td.dl-rgb {
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
230 width: 40%;
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
231 padding: 6px;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
232 border: 2px solid aqua;
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
233 }
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
234
1057
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
235 div.dl-digilib div.dl-rgbslider {
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
236 display: none;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
237 border: 2px solid aqua;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
238 background-color: silver;
1057
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
239 width: 400px;
1059
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
240 padding: 10px;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
241 position: absolute;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
242 top: 0px;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
243 }
1090
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
244 div.dl-digilib div.dl-rgbsliderpreview,
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
245 div.dl-digilib div.dl-singlesliderpreview {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
246 border: 2px solid aqua;
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
247 margin: 10px 0px;
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
248 }
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
249
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
250 div.dl-digilib table.dl-rgbslider,
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
251 div.dl-digilib table.dl-rgbslidergrey,
1090
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
252 div.dl-digilib table.dl-rgbsliderpreview,
1063
fb4d550869c8 indicators for brgt/cont sliders
hertzhaft
parents: 1062
diff changeset
253 div.dl-digilib table.dl-singleslider,
fb4d550869c8 indicators for brgt/cont sliders
hertzhaft
parents: 1062
diff changeset
254 div.dl-digilib table.dl-singleslidergrey,
1090
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
255 div.dl-digilib table.dl-singlesliderpreview {
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
256 width: 100%;
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
257 border-collapse: collapse;
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
258 }
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
259
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
260 div.dl-digilib table.dl-rgbslidergrey td,
1090
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
261 div.dl-digilib table.dl-rgbsliderpreview td,
1063
fb4d550869c8 indicators for brgt/cont sliders
hertzhaft
parents: 1062
diff changeset
262 div.dl-digilib table.dl-singleslidergrey td,
1090
436b59ff76fd oops again, didn't catch all changes
hertzhaft
parents: 1089
diff changeset
263 div.dl-digilib table.dl-singlesliderpreview td {
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
264 height: 20px;
1059
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
265 }
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
266
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
267 div.dl-digilib td.dl-color div {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
268 color: aqua;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
269 border: 2px solid aqua;
1059
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
270 text-align: center;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
271 padding: 20px 0px;
1062
41991d1598f1 rgb slider: reset now functional, minor refactoring
hertzhaft
parents: 1060
diff changeset
272 margin: 0px 20px 20px 0px;
1059
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
273 }
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
274
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
275 div.dl-digilib td.dl-r div {
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
276 background-color: #800000;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
277 }
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
278
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
279 div.dl-digilib td.dl-g div {
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
280 background-color: #008000;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
281 }
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
282
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
283 div.dl-digilib td.dl-b div {
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
284 background-color: #000080;
1057
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
285 }
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
286
d139f59a5f80 rgb slider functional, get/set values not yet
hertzhaft
parents: 1056
diff changeset
287 div.dl-digilib div.dl-singleslider {
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
288 display: none;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
289 border: 2px solid aqua;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
290 background-color: silver;
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
291 width: 300px;
1059
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
292 padding: 10px;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
293 position: absolute;
c7fd2f239953 rgb slider: color labels, first step to color indicator
hertzhaft
parents: 1058
diff changeset
294 top: 0px;
1047
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
295 }
4f17420392a9 factor out calibration/scalemode to new dialogs plugin
hertzhaft
parents: 1025
diff changeset
296
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
297 div.dl-digilib div.dl-slider {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
298 border: 1px solid aqua;
1018
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
299 margin: 30px;
1060
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
300 z-index: 100;
998
d084717a1ed9 steps towards sliders
hertzhaft
parents: 996
diff changeset
301 height: 6px;
985
7f93dc476cdf halfway up the slider
hertzhaft
parents: 981
diff changeset
302 }
7f93dc476cdf halfway up the slider
hertzhaft
parents: 981
diff changeset
303
1060
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
304 div.dl-digilib div.dl-regionInfo {
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
305 display: none;
1018
7f8aaae89f9b rotation slider now working
hertzhaft
parents: 1004
diff changeset
306 position: absolute;
1060
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
307 overflow: visible;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
308 padding: 10px;
1004
8fe70597f7e7 more slider
hertzhaft
parents: 1003
diff changeset
309 font-family: Verdana, Arial, Helvetica, sans-serif;
8fe70597f7e7 more slider
hertzhaft
parents: 1003
diff changeset
310 font-size: 12px;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
311 border: 2px solid aqua;
1060
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
312 color: black;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
313 background-color: silver;
1060
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
314 width: 300px;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
315 z-index: 100;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
316 }
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
317
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
318 div.dl-digilib div.dl-regionInfo a {
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
319 color: white;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
320 text-decoration: none;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
321 font-size: 11px;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
322 font-weight: bold;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
323 width: 300px;
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
324 }
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
325
d9abeaa44c49 better region info
hertzhaft
parents: 1059
diff changeset
326 .dl-infobutton {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
327 background-color: aqua;
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
328 color: gray;
855
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
329 padding: 0px 4px;
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
330 }
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
331
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
332 div.dl-info {
855
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
333 display: none;
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
334 margin: 10px;
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
335 }
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
336
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
337 div.dl-infoheader {
855
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
338 margin-bottom: 20px;
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
339 }
2c401f68d577 better region info
hertzhaft
parents: 852
diff changeset
340
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
341 /* scroll arrows */
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
342 div.dl-digilib table.dl-scalertable {
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
343 border: 0;
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
344 padding: 0;
877
971b7122930f arrows: got basic functionality working
hertzhaft
parents: 872
diff changeset
345 }
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
346 div.dl-digilib table.dl-scalertable td {
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
347 padding: 0;
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
348 }
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
349 div.dl-digilib table.dl-scalertable td.dl-arrow {
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
350 }
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
351 div.dl-digilib table.dl-scalertable td.dl-arrow:hover {
862
7ebdc106a61a second step towards zoom arrows
hertzhaft
parents: 855
diff changeset
352 background-color: black;
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
353 opacity: 0.3;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
354 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
355 filter: alpha(opacity=30);
862
7ebdc106a61a second step towards zoom arrows
hertzhaft
parents: 855
diff changeset
356 }
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
357
995
76cffbaf0083 starting introduction of cssPrefix.
robcast
parents: 989
diff changeset
358 div.dl-digilib table.dl-scalertable img.button {
989
f4757bf6ab65 new arrows plugin for scroll arrows next to the image.
robcast
parents: 985
diff changeset
359 opacity: 1;
879
b2ec8244b86e arrows: positioning works in embedded mode, too
hertzhaft
parents: 877
diff changeset
360 }
b2ec8244b86e arrows: positioning works in embedded mode, too
hertzhaft
parents: 877
diff changeset
361
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
362 /* special definitions for fullscreen */
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
363 div.dl-digilib.dl-fullscreen div.dl-buttons {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
364 position: fixed;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
365 right: 0px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
366 top: 0px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
367 padding: 2px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
368 background-color: transparent;
879
b2ec8244b86e arrows: positioning works in embedded mode, too
hertzhaft
parents: 877
diff changeset
369 z-index: 200;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
370 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
371
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
372 div.dl-digilib.dl-fullscreen div.dl-buttons div.dl-button:hover {
770
6d7c51e4724b highlight buttons by background image
hertzhaft
parents: 765
diff changeset
373 background-image: url('img/fullscreen/corona.png');
877
971b7122930f arrows: got basic functionality working
hertzhaft
parents: 872
diff changeset
374 background-repeat: no-repeat;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
375 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
376
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
377 div.dl-digilib.dl-fullscreen div.dl-button-on {
770
6d7c51e4724b highlight buttons by background image
hertzhaft
parents: 765
diff changeset
378 background-image: url('img/fullscreen/whitedisc.png');
877
971b7122930f arrows: got basic functionality working
hertzhaft
parents: 872
diff changeset
379 background-repeat: no-repeat;
765
8d5239d7b1d4 state indicators for buttons
hertzhaft
parents: 746
diff changeset
380 }
8d5239d7b1d4 state indicators for buttons
hertzhaft
parents: 746
diff changeset
381
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
382 div.dl-digilib.dl-fullscreen div.dl-birdview {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
383 position: fixed;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
384 bottom: 8px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
385 right: 48px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
386 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
387
1003
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
388 /* no borders for button images */
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
389 div.dl-digilib a img.dl-button {
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
390 border:none;
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
391 }
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
392
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
393 /* special definitions for embedded */
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
394 div.dl-digilib.dl-embedded {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
395 position: relative;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
396 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
397
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
398 div.dl-digilib.dl-embedded div.dl-buttons {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
399 position: absolute;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
400 right: 0px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
401 top: 0px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
402 padding: 1px;
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
403 background-color: gray;
848
77248c6d2a5f fix missing buttons
hertzhaft
parents: 835
diff changeset
404 opacity: 0.5;
1134
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
405 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
cd594aa261ec fix defineArea bug in IE; reintroduce CSS opacity filters for IE 6-8
hertzhaft
parents: 1128
diff changeset
406 filter: alpha(opacity=50);
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
407 z-index: 100;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
408 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
409
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
410 div.dl-digilib.dl-embedded div.dl-buttons div.dl-button:hover {
848
77248c6d2a5f fix missing buttons
hertzhaft
parents: 835
diff changeset
411 background-color: black;
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
412 }
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
413
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
414 div.dl-digilib.dl-embedded div.dl-button-on {
1127
a5699754288b use css standard color names (from http://en.wikipedia.org/wiki/Web_colors).
robcast
parents: 1121
diff changeset
415 background-color: green;
765
8d5239d7b1d4 state indicators for buttons
hertzhaft
parents: 746
diff changeset
416 }
8d5239d7b1d4 state indicators for buttons
hertzhaft
parents: 746
diff changeset
417
996
0b63093d598e cssPrefix works now.
robcast
parents: 995
diff changeset
418 div.dl-digilib.dl-embedded div.dl-birdview {
725
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
419 position: absolute;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
420 bottom: 0px;
936d88972cd0 put styles in stylesheet.
robcast
parents:
diff changeset
421 right: 0px;
726
6224f64cbd58 fixed birdZoomDiv positioning in embedded mode
robcast
parents: 725
diff changeset
422 }
877
971b7122930f arrows: got basic functionality working
hertzhaft
parents: 872
diff changeset
423
1003
07af442509de get rid of blue button borders in IE
hertzhaft
parents: 998
diff changeset
424