author | veltr |
Wed, 27 Jun 2012 13:15:28 +0200 | |
changeset 71 | fa03eb8a3fe5 |
parent 70 | 43012525c832 |
child 73 | 642ef9139fad |
permissions | -rw-r--r-- |
65 | 1 |
.Tl-Main { |
71 | 2 |
overflow: hidden; border: 1px solid #ccc; font-family: Arial, Helvetica, sans-serif; |
65 | 3 |
} |
4 |
||
5 |
.Tl-TopBar { |
|
6 |
height: 25px; border-style: solid none; border-color: #ccc; border-width: 1px; |
|
7 |
background: url(../img/barbgd.png); |
|
8 |
} |
|
9 |
||
10 |
.Tl-TopBar-Button { |
|
11 |
float: left; background: url(../img/barbgd.png); cursor: pointer; |
|
12 |
} |
|
13 |
||
14 |
.Tl-TopBar-TextBtn { |
|
15 |
font-size: 12px; height: 15px; padding: 5px; |
|
16 |
} |
|
17 |
||
18 |
.Tl-TopBar-Button.active, .Tl-TopBar-Button:hover { |
|
19 |
background-position: 0 -25px; |
|
20 |
} |
|
21 |
||
22 |
.Tl-Border-Right { |
|
23 |
border-right: 1px solid #ccc; |
|
24 |
} |
|
25 |
||
26 |
.Tl-Border-Left { |
|
27 |
border-left: 1px solid #ccc; |
|
28 |
} |
|
29 |
||
30 |
.Tl-TopBar-Spacer { |
|
31 |
float: left; height: 25px; width: 25px; |
|
32 |
} |
|
33 |
||
34 |
.Tl-TopBar-AddButton { |
|
35 |
width: 25px; height: 25px; background: url(../img/sprites.png); background-position: -50px 0; |
|
36 |
} |
|
37 |
||
38 |
.Tl-TopBar-AddButton.active, .Tl-TopBar-AddButton:hover { |
|
39 |
background-position: -50px -25px; |
|
40 |
} |
|
41 |
||
42 |
.Tl-TopBar-PreviousButton { |
|
43 |
width: 25px; height: 25px; background: url(../img/sprites.png); background-position: -100px 0; |
|
44 |
} |
|
45 |
||
46 |
.Tl-TopBar-PreviousButton.active, .Tl-TopBar-PreviousButton:hover { |
|
47 |
background-position: -100px -25px; |
|
48 |
} |
|
49 |
||
50 |
.Tl-TopBar-NextButton { |
|
51 |
width: 25px; height: 25px; background: url(../img/sprites.png); background-position: -75px 0; |
|
52 |
} |
|
53 |
||
54 |
.Tl-TopBar-NextButton.active, .Tl-TopBar-NextButton:hover { |
|
55 |
background-position: -75px -25px; |
|
56 |
} |
|
57 |
||
58 |
.Tl-TopBar-SyncButton { |
|
59 |
width: 25px; height: 25px; background: url(../img/sprites.png); background-position: 0 0; |
|
60 |
} |
|
61 |
||
62 |
.Tl-TopBar-SyncButton.active, .Tl-TopBar-SyncButton:hover { |
|
63 |
background-position: 0 -25px; |
|
64 |
} |
|
65 |
||
66 |
.Tl-TopBar-TimeSpan { |
|
67 |
float: left; width: 120px; text-align: center; |
|
68 |
} |
|
69 |
||
70 |
.Tl-BottomPart { |
|
71 |
position: relative; |
|
72 |
} |
|
73 |
||
74 |
.Tl-MainPart { |
|
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
75 |
position: absolute; right: 0; top: 0; bottom: 0; border-left: 1px solid #ccc; right: 0; top: 0; bottom: 0; |
65 | 76 |
} |
77 |
||
78 |
.Tl-UniversLabels { |
|
79 |
list-style: none; margin: 0; padding: 0; border: none; |
|
80 |
} |
|
81 |
||
82 |
.Tl-Line-Even { |
|
83 |
background: #e0e0e0; |
|
84 |
} |
|
85 |
||
66 | 86 |
.Tl-Layer { |
67 | 87 |
position: absolute; top: 0; left: 0; height: 100%; |
65 | 88 |
} |
89 |
||
90 |
.Tl-Grid-Column { |
|
91 |
position: absolute; top: 0; height: 100%; border-left: 1px solid #999; |
|
92 |
} |
|
93 |
/* |
|
94 |
.Tl-Grid-Major { |
|
95 |
z-index: 3; border-left: 1px solid #999; |
|
96 |
} |
|
97 |
*/ |
|
98 |
.Tl-Grid-Label { |
|
99 |
position: absolute; height: 12px; bottom: 0; left: 1px; font-size: 10px; z-index: 4; width: 80px; |
|
100 |
} |
|
101 |
||
102 |
.Tl-Grid-Now { |
|
103 |
position: absolute; top: 0; height: 100%; margin-left: -1px; width: 2px; background: #f000ff; |
|
104 |
} |
|
66 | 105 |
|
71 | 106 |
.Tl-Occurrence, .Tl-Cluster, .Tl-AddOccurrence { |
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
107 |
width: 19px; height: 22px; background: url(../img/sprites.png); cursor: pointer; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
108 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
109 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
110 |
.Tl-OccOnGrid, .Tl-Cluster { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
111 |
position: absolute; margin-left: -9px; margin-top: -1px; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
112 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
113 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
114 |
.Tl-OccInCluster { |
70 | 115 |
float: left; position: relative; |
116 |
} |
|
117 |
||
118 |
.Tl-Locked { |
|
119 |
position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../img/sprites.png); background-position: -57px -50px; |
|
66 | 120 |
} |
121 |
||
122 |
.Tl-Occnarrative { |
|
123 |
background-position: 0 -50px; |
|
124 |
} |
|
125 |
||
126 |
.Tl-Occproduction { |
|
127 |
background-position: -19px -50px; |
|
128 |
} |
|
129 |
||
67 | 130 |
.Tl-Occnarrative.Tl-Editing { |
131 |
background-position: 0 -72px; |
|
132 |
} |
|
133 |
||
134 |
.Tl-Occproduction.Tl-Editing { |
|
135 |
background-position: -19px -72px; |
|
136 |
} |
|
137 |
||
66 | 138 |
.Tl-Occboth { |
139 |
background-position: -38px -50px; |
|
140 |
} |
|
141 |
||
70 | 142 |
.Tl-Link { |
143 |
position: absolute; left: 0; bottom: 0; width: 11px; height: 11px; background: url(../img/sprites.png) -38px -83px; display: none; |
|
144 |
} |
|
145 |
||
66 | 146 |
.Tl-ClusterCount { |
147 |
position: absolute; right: 0; top: 0; border: 1px solid #999999; background: #333333; |
|
148 |
padding: 1px 2px; font-size: 9px; color: #ffffff; border-radius: 5px; |
|
149 |
} |
|
150 |
||
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
151 |
.Tl-ClusterOverlay { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
152 |
position: absolute; margin-top: -20px; height: 30px; background: url(../img/cluster-overlay.png) center; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
153 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
154 |
|
66 | 155 |
.Tl-Overlay-Container { |
156 |
position: absolute; top: 0; |
|
157 |
} |
|
158 |
||
159 |
.Tl-Overlay-Box { |
|
160 |
position: absolute; width: 0; height: 0; display: none; |
|
161 |
} |
|
162 |
||
163 |
.Tl-Overlay { |
|
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
164 |
position: absolute; left: -105px; width: 210px; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
165 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
166 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
167 |
.Tl-Overlay-Up .Tl-Overlay { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
168 |
bottom: 0; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
169 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
170 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
171 |
.Tl-Overlay-Down .Tl-Overlay { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
172 |
top: 22px; |
66 | 173 |
} |
174 |
||
175 |
.Tl-Overlay-Main { |
|
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
176 |
width: 190px; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
177 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
178 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
179 |
.Tl-Overlay-Up .Tl-Overlay-Main { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
180 |
background: url(../img/tooltip.png) top; padding: 10px 10px 0; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
181 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
182 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
183 |
.Tl-Overlay-Down .Tl-Overlay-Main { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
184 |
background: url(../img/tooltip-down.png) bottom; padding: 0 10px 10px; |
66 | 185 |
} |
186 |
||
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
187 |
.Tl-Overlay-Up .Tl-Overlay-Tip-Bottom { |
66 | 188 |
width: 210px; height: 20px; background: url(../img/tooltip.png) bottom; |
189 |
} |
|
68
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
190 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
191 |
.Tl-Overlay-Down .Tl-Overlay-Tip-Top { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
192 |
width: 210px; height: 20px; background: url(../img/tooltip-down.png) top; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
193 |
} |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
194 |
|
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
195 |
.Tl-Overlay-Up .Tl-Overlay-Tip-Top, .Tl-Overlay-Down .Tl-Overlay-Tip-Bottom { |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
196 |
display: none; |
4def147b1604
Added a visualization of the contents of clusters + mousewheel support
veltr
parents:
67
diff
changeset
|
197 |
} |
70 | 198 |
|
199 |
h3.Tl-Tooltip-Title { |
|
200 |
font-size: 14px; font-weight: bold; color: #000080; margin: 0; |
|
201 |
} |
|
202 |
||
203 |
p.Tl-Tooltip-Date { |
|
204 |
font-size: 11px; margin: 2px 0; color: #000080; border-bottom: 1px dotted; float: left; |
|
205 |
} |
|
206 |
||
207 |
p.Tl-Tooltip-Description, p.Tl-Tooltip-Characters { |
|
208 |
font-size: 12px; margin: 5px 0 0; clear: both; |
|
209 |
} |
|
71 | 210 |
|
211 |
ul.Tl-Adding { |
|
212 |
position: absolute; left: -150px; top: 0; display: none; |
|
213 |
list-style: none; font-size: 12px; padding: 0; margin: 0; width: 150px; border-style: none solid; border-color: #999999; border-width: 1px; |
|
214 |
} |
|
215 |
||
216 |
.Tl-Adding li { |
|
217 |
border-style: none none solid; border-color: #cccccc; border-width: 1px; padding: 4px; background: rgba(255,255,255,.9); |
|
218 |
} |
|
219 |
||
220 |
li.Tl-AddingTitle { |
|
221 |
background: rgba(215,215,215,.9); font-weight: bold; |
|
222 |
} |
|
223 |
||
224 |
.Tl-AddOccurrence { |
|
225 |
float: right; margin: -3px; |
|
226 |
} |