annotate webapp/src/main/webapp/jquery/jquery.digilib.css @ 1128:fcafcc8996be

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