simplecov-html 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +24 -0
- data/LICENSE +20 -0
- data/README.rdoc +26 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/assets/app.js +48 -0
- data/assets/fancybox/blank.gif +0 -0
- data/assets/fancybox/fancy_close.png +0 -0
- data/assets/fancybox/fancy_loading.png +0 -0
- data/assets/fancybox/fancy_nav_left.png +0 -0
- data/assets/fancybox/fancy_nav_right.png +0 -0
- data/assets/fancybox/fancy_shadow_e.png +0 -0
- data/assets/fancybox/fancy_shadow_n.png +0 -0
- data/assets/fancybox/fancy_shadow_ne.png +0 -0
- data/assets/fancybox/fancy_shadow_nw.png +0 -0
- data/assets/fancybox/fancy_shadow_s.png +0 -0
- data/assets/fancybox/fancy_shadow_se.png +0 -0
- data/assets/fancybox/fancy_shadow_sw.png +0 -0
- data/assets/fancybox/fancy_shadow_w.png +0 -0
- data/assets/fancybox/fancy_title_left.png +0 -0
- data/assets/fancybox/fancy_title_main.png +0 -0
- data/assets/fancybox/fancy_title_over.png +0 -0
- data/assets/fancybox/fancy_title_right.png +0 -0
- data/assets/fancybox/fancybox-x.png +0 -0
- data/assets/fancybox/fancybox-y.png +0 -0
- data/assets/fancybox/fancybox.png +0 -0
- data/assets/fancybox/jquery.fancybox-1.3.1.css +363 -0
- data/assets/fancybox/jquery.fancybox-1.3.1.pack.js +44 -0
- data/assets/jquery-1.4.2.min.js +155 -0
- data/assets/jquery.dataTables.min.js +152 -0
- data/assets/jquery.timeago.js +141 -0
- data/assets/loading.gif +0 -0
- data/assets/magnify.png +0 -0
- data/assets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/assets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/assets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/assets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/assets/smoothness/jquery-ui-1.8.4.custom.css +295 -0
- data/assets/stylesheet.css +341 -0
- data/lib/simplecov-html.rb +109 -0
- data/simplecov-html.gemspec +103 -0
- data/test/helper.rb +10 -0
- data/test/test_simple_cov-html.rb +7 -0
- data/views/file_list.erb +36 -0
- data/views/layout.erb +42 -0
- data/views/source_file.erb +33 -0
- metadata +150 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Christoph Olszowka
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
= HTML formatter for SimpleCov
|
2
|
+
|
3
|
+
Note: To learn more about SimpleCov, check out the main repo at http://github.com/colszowka/simplecov
|
4
|
+
|
5
|
+
Generates a nice HTML overview of your SimpleCov coverage results.
|
6
|
+
|
7
|
+
To use, add this to your Bundler Gemfile:
|
8
|
+
|
9
|
+
gem 'simplecov-html', '>= 0.1.0'
|
10
|
+
|
11
|
+
The html formatter will be used automatically. The HTML is put into the 'coverage' subdirectory of the
|
12
|
+
current working directory (supposedly the main dir of your project)
|
13
|
+
|
14
|
+
== Note on Patches/Pull Requests
|
15
|
+
|
16
|
+
* Fork the project.
|
17
|
+
* Make your feature addition or bug fix.
|
18
|
+
* Add tests for it. This is important so I don't break it in a
|
19
|
+
future version unintentionally.
|
20
|
+
* Commit, do not mess with rakefile, version, or history.
|
21
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
22
|
+
* Send me a pull request. Bonus points for topic branches.
|
23
|
+
|
24
|
+
== Copyright
|
25
|
+
|
26
|
+
Copyright (c) 2010 Christoph Olszowka. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "simplecov-html"
|
8
|
+
gem.summary = %Q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
9
|
+
gem.description = %Q{HTML formatter for SimpleCov code coverage tool for ruby 1.9+}
|
10
|
+
gem.email = "christoph at olszowka de"
|
11
|
+
gem.homepage = "http://github.com/colszowka/simplecov-html"
|
12
|
+
gem.authors = ["Christoph Olszowka"]
|
13
|
+
gem.add_dependency "simplecov", ">= 0.3.0"
|
14
|
+
gem.add_development_dependency "shoulda", "= 2.10.3"
|
15
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
+
end
|
17
|
+
Jeweler::GemcutterTasks.new
|
18
|
+
rescue LoadError
|
19
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'rake/testtask'
|
23
|
+
Rake::TestTask.new(:test) do |test|
|
24
|
+
test.libs << 'lib' << 'test'
|
25
|
+
test.pattern = 'test/**/test_*.rb'
|
26
|
+
test.verbose = true
|
27
|
+
end
|
28
|
+
|
29
|
+
begin
|
30
|
+
require 'rcov/rcovtask'
|
31
|
+
Rcov::RcovTask.new do |test|
|
32
|
+
test.libs << 'test'
|
33
|
+
test.pattern = 'test/**/test_*.rb'
|
34
|
+
test.verbose = true
|
35
|
+
end
|
36
|
+
rescue LoadError
|
37
|
+
task :rcov do
|
38
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
task :test => :check_dependencies
|
43
|
+
|
44
|
+
task :default => :test
|
45
|
+
|
46
|
+
require 'rake/rdoctask'
|
47
|
+
Rake::RDocTask.new do |rdoc|
|
48
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
|
+
|
50
|
+
rdoc.rdoc_dir = 'rdoc'
|
51
|
+
rdoc.title = "simple_cov-html #{version}"
|
52
|
+
rdoc.rdoc_files.include('README*')
|
53
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
54
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.3.0
|
data/assets/app.js
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
$(document).ready(function() {
|
2
|
+
$('.file_list').dataTable({
|
3
|
+
"aaSorting": [[ 1, "asc" ]],
|
4
|
+
"bPaginate": false,
|
5
|
+
"bJQueryUI": true,
|
6
|
+
"aoColumns": [
|
7
|
+
null,
|
8
|
+
{ "sType": "percent" },
|
9
|
+
null,
|
10
|
+
null,
|
11
|
+
null,
|
12
|
+
null
|
13
|
+
]
|
14
|
+
});
|
15
|
+
|
16
|
+
$("a.src_link").fancybox({
|
17
|
+
'hideOnContentClick': true
|
18
|
+
});
|
19
|
+
|
20
|
+
$('.source_table tbody tr:odd').addClass('odd');
|
21
|
+
$('.source_table tbody tr:even').addClass('even');
|
22
|
+
|
23
|
+
$('.source_files').hide();
|
24
|
+
$('.file_list_container').hide();
|
25
|
+
|
26
|
+
$('.file_list_container h2').each(function(){
|
27
|
+
$('.group_tabs').append('<li><a href="' + $(this).attr('id') + '">' + $(this).html() + '</a></li>');
|
28
|
+
});
|
29
|
+
|
30
|
+
$('.group_tabs a').live('focus', function() {
|
31
|
+
$(this).blur();
|
32
|
+
});
|
33
|
+
$('.group_tabs a').live('click', function(){
|
34
|
+
if (!$(this).parent().hasClass('active')) {
|
35
|
+
$('.group_tabs a').parent().removeClass('active');
|
36
|
+
$(this).parent().addClass('active');
|
37
|
+
$('.file_list_container').hide();
|
38
|
+
$(".file_list_container h2#" + $(this).attr('href')).parent().show();
|
39
|
+
};
|
40
|
+
return false;
|
41
|
+
});
|
42
|
+
|
43
|
+
$('.group_tabs a:first').click();
|
44
|
+
|
45
|
+
$("abbr.timeago").timeago();
|
46
|
+
$('#loading').fadeOut();
|
47
|
+
$('#wrapper').show();
|
48
|
+
});
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,363 @@
|
|
1
|
+
/*
|
2
|
+
* FancyBox - jQuery Plugin
|
3
|
+
* Simple and fancy lightbox alternative
|
4
|
+
*
|
5
|
+
* Examples and documentation at: http://fancybox.net
|
6
|
+
*
|
7
|
+
* Copyright (c) 2008 - 2010 Janis Skarnelis
|
8
|
+
*
|
9
|
+
* Version: 1.3.1 (05/03/2010)
|
10
|
+
* Requires: jQuery v1.3+
|
11
|
+
*
|
12
|
+
* Dual licensed under the MIT and GPL licenses:
|
13
|
+
* http://www.opensource.org/licenses/mit-license.php
|
14
|
+
* http://www.gnu.org/licenses/gpl.html
|
15
|
+
*/
|
16
|
+
|
17
|
+
#fancybox-loading {
|
18
|
+
position: fixed;
|
19
|
+
top: 50%;
|
20
|
+
left: 50%;
|
21
|
+
height: 40px;
|
22
|
+
width: 40px;
|
23
|
+
margin-top: -20px;
|
24
|
+
margin-left: -20px;
|
25
|
+
cursor: pointer;
|
26
|
+
overflow: hidden;
|
27
|
+
z-index: 1104;
|
28
|
+
display: none;
|
29
|
+
}
|
30
|
+
|
31
|
+
* html #fancybox-loading { /* IE6 */
|
32
|
+
position: absolute;
|
33
|
+
margin-top: 0;
|
34
|
+
}
|
35
|
+
|
36
|
+
#fancybox-loading div {
|
37
|
+
position: absolute;
|
38
|
+
top: 0;
|
39
|
+
left: 0;
|
40
|
+
width: 40px;
|
41
|
+
height: 480px;
|
42
|
+
background-image: url('fancybox.png');
|
43
|
+
}
|
44
|
+
|
45
|
+
#fancybox-overlay {
|
46
|
+
position: fixed;
|
47
|
+
top: 0;
|
48
|
+
left: 0;
|
49
|
+
bottom: 0;
|
50
|
+
right: 0;
|
51
|
+
background: #000;
|
52
|
+
z-index: 1100;
|
53
|
+
display: none;
|
54
|
+
}
|
55
|
+
|
56
|
+
* html #fancybox-overlay { /* IE6 */
|
57
|
+
position: absolute;
|
58
|
+
width: 100%;
|
59
|
+
}
|
60
|
+
|
61
|
+
#fancybox-tmp {
|
62
|
+
padding: 0;
|
63
|
+
margin: 0;
|
64
|
+
border: 0;
|
65
|
+
overflow: auto;
|
66
|
+
display: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
#fancybox-wrap {
|
70
|
+
position: absolute;
|
71
|
+
top: 0;
|
72
|
+
left: 0;
|
73
|
+
margin: 0;
|
74
|
+
padding: 20px;
|
75
|
+
z-index: 1101;
|
76
|
+
display: none;
|
77
|
+
}
|
78
|
+
|
79
|
+
#fancybox-outer {
|
80
|
+
position: relative;
|
81
|
+
width: 100%;
|
82
|
+
height: 100%;
|
83
|
+
background: #FFF;
|
84
|
+
}
|
85
|
+
|
86
|
+
#fancybox-inner {
|
87
|
+
position: absolute;
|
88
|
+
top: 0;
|
89
|
+
left: 0;
|
90
|
+
width: 1px;
|
91
|
+
height: 1px;
|
92
|
+
padding: 0;
|
93
|
+
margin: 0;
|
94
|
+
outline: none;
|
95
|
+
overflow: hidden;
|
96
|
+
}
|
97
|
+
|
98
|
+
#fancybox-hide-sel-frame {
|
99
|
+
position: absolute;
|
100
|
+
top: 0;
|
101
|
+
left: 0;
|
102
|
+
width: 100%;
|
103
|
+
height: 100%;
|
104
|
+
background: transparent;
|
105
|
+
}
|
106
|
+
|
107
|
+
#fancybox-close {
|
108
|
+
position: absolute;
|
109
|
+
top: -15px;
|
110
|
+
right: -15px;
|
111
|
+
width: 30px;
|
112
|
+
height: 30px;
|
113
|
+
background-image: url('fancybox.png');
|
114
|
+
background-position: -40px 0px;
|
115
|
+
cursor: pointer;
|
116
|
+
z-index: 1103;
|
117
|
+
display: none;
|
118
|
+
}
|
119
|
+
|
120
|
+
#fancybox_error {
|
121
|
+
color: #444;
|
122
|
+
font: normal 12px/20px Arial;
|
123
|
+
padding: 7px;
|
124
|
+
margin: 0;
|
125
|
+
}
|
126
|
+
|
127
|
+
#fancybox-content {
|
128
|
+
height: auto;
|
129
|
+
width: auto;
|
130
|
+
padding: 0;
|
131
|
+
margin: 0;
|
132
|
+
}
|
133
|
+
|
134
|
+
#fancybox-img {
|
135
|
+
width: 100%;
|
136
|
+
height: 100%;
|
137
|
+
padding: 0;
|
138
|
+
margin: 0;
|
139
|
+
border: none;
|
140
|
+
outline: none;
|
141
|
+
line-height: 0;
|
142
|
+
vertical-align: top;
|
143
|
+
-ms-interpolation-mode: bicubic;
|
144
|
+
}
|
145
|
+
|
146
|
+
#fancybox-frame {
|
147
|
+
position: relative;
|
148
|
+
width: 100%;
|
149
|
+
height: 100%;
|
150
|
+
border: none;
|
151
|
+
display: block;
|
152
|
+
}
|
153
|
+
|
154
|
+
#fancybox-title {
|
155
|
+
position: absolute;
|
156
|
+
bottom: 0;
|
157
|
+
left: 0;
|
158
|
+
font-family: Arial;
|
159
|
+
font-size: 12px;
|
160
|
+
z-index: 1102;
|
161
|
+
}
|
162
|
+
|
163
|
+
.fancybox-title-inside {
|
164
|
+
padding: 10px 0;
|
165
|
+
text-align: center;
|
166
|
+
color: #333;
|
167
|
+
}
|
168
|
+
|
169
|
+
.fancybox-title-outside {
|
170
|
+
padding-top: 5px;
|
171
|
+
color: #FFF;
|
172
|
+
text-align: center;
|
173
|
+
font-weight: bold;
|
174
|
+
}
|
175
|
+
|
176
|
+
.fancybox-title-over {
|
177
|
+
color: #FFF;
|
178
|
+
text-align: left;
|
179
|
+
}
|
180
|
+
|
181
|
+
#fancybox-title-over {
|
182
|
+
padding: 10px;
|
183
|
+
background-image: url('fancy_title_over.png');
|
184
|
+
display: block;
|
185
|
+
}
|
186
|
+
|
187
|
+
#fancybox-title-wrap {
|
188
|
+
display: inline-block;
|
189
|
+
}
|
190
|
+
|
191
|
+
#fancybox-title-wrap span {
|
192
|
+
height: 32px;
|
193
|
+
float: left;
|
194
|
+
}
|
195
|
+
|
196
|
+
#fancybox-title-left {
|
197
|
+
padding-left: 15px;
|
198
|
+
background-image: url('fancybox.png');
|
199
|
+
background-position: -40px -90px;
|
200
|
+
background-repeat: no-repeat;
|
201
|
+
}
|
202
|
+
|
203
|
+
#fancybox-title-main {
|
204
|
+
font-weight: bold;
|
205
|
+
line-height: 29px;
|
206
|
+
background-image: url('fancybox-x.png');
|
207
|
+
background-position: 0px -40px;
|
208
|
+
color: #FFF;
|
209
|
+
}
|
210
|
+
|
211
|
+
#fancybox-title-right {
|
212
|
+
padding-left: 15px;
|
213
|
+
background-image: url('fancybox.png');
|
214
|
+
background-position: -55px -90px;
|
215
|
+
background-repeat: no-repeat;
|
216
|
+
}
|
217
|
+
|
218
|
+
#fancybox-left, #fancybox-right {
|
219
|
+
position: absolute;
|
220
|
+
bottom: 0px;
|
221
|
+
height: 100%;
|
222
|
+
width: 35%;
|
223
|
+
cursor: pointer;
|
224
|
+
outline: none;
|
225
|
+
background-image: url('blank.gif');
|
226
|
+
z-index: 1102;
|
227
|
+
display: none;
|
228
|
+
}
|
229
|
+
|
230
|
+
#fancybox-left {
|
231
|
+
left: 0px;
|
232
|
+
}
|
233
|
+
|
234
|
+
#fancybox-right {
|
235
|
+
right: 0px;
|
236
|
+
}
|
237
|
+
|
238
|
+
#fancybox-left-ico, #fancybox-right-ico {
|
239
|
+
position: absolute;
|
240
|
+
top: 50%;
|
241
|
+
left: -9999px;
|
242
|
+
width: 30px;
|
243
|
+
height: 30px;
|
244
|
+
margin-top: -15px;
|
245
|
+
cursor: pointer;
|
246
|
+
z-index: 1102;
|
247
|
+
display: block;
|
248
|
+
}
|
249
|
+
|
250
|
+
#fancybox-left-ico {
|
251
|
+
background-image: url('fancybox.png');
|
252
|
+
background-position: -40px -30px;
|
253
|
+
}
|
254
|
+
|
255
|
+
#fancybox-right-ico {
|
256
|
+
background-image: url('fancybox.png');
|
257
|
+
background-position: -40px -60px;
|
258
|
+
}
|
259
|
+
|
260
|
+
#fancybox-left:hover, #fancybox-right:hover {
|
261
|
+
visibility: visible; /* IE6 */
|
262
|
+
}
|
263
|
+
|
264
|
+
#fancybox-left:hover span {
|
265
|
+
left: 20px;
|
266
|
+
}
|
267
|
+
|
268
|
+
#fancybox-right:hover span {
|
269
|
+
left: auto;
|
270
|
+
right: 20px;
|
271
|
+
}
|
272
|
+
|
273
|
+
.fancy-bg {
|
274
|
+
position: absolute;
|
275
|
+
padding: 0;
|
276
|
+
margin: 0;
|
277
|
+
border: 0;
|
278
|
+
width: 20px;
|
279
|
+
height: 20px;
|
280
|
+
z-index: 1001;
|
281
|
+
}
|
282
|
+
|
283
|
+
#fancy-bg-n {
|
284
|
+
top: -20px;
|
285
|
+
left: 0;
|
286
|
+
width: 100%;
|
287
|
+
background-image: url('fancybox-x.png');
|
288
|
+
}
|
289
|
+
|
290
|
+
#fancy-bg-ne {
|
291
|
+
top: -20px;
|
292
|
+
right: -20px;
|
293
|
+
background-image: url('fancybox.png');
|
294
|
+
background-position: -40px -162px;
|
295
|
+
}
|
296
|
+
|
297
|
+
#fancy-bg-e {
|
298
|
+
top: 0;
|
299
|
+
right: -20px;
|
300
|
+
height: 100%;
|
301
|
+
background-image: url('fancybox-y.png');
|
302
|
+
background-position: -20px 0px;
|
303
|
+
}
|
304
|
+
|
305
|
+
#fancy-bg-se {
|
306
|
+
bottom: -20px;
|
307
|
+
right: -20px;
|
308
|
+
background-image: url('fancybox.png');
|
309
|
+
background-position: -40px -182px;
|
310
|
+
}
|
311
|
+
|
312
|
+
#fancy-bg-s {
|
313
|
+
bottom: -20px;
|
314
|
+
left: 0;
|
315
|
+
width: 100%;
|
316
|
+
background-image: url('fancybox-x.png');
|
317
|
+
background-position: 0px -20px;
|
318
|
+
}
|
319
|
+
|
320
|
+
#fancy-bg-sw {
|
321
|
+
bottom: -20px;
|
322
|
+
left: -20px;
|
323
|
+
background-image: url('fancybox.png');
|
324
|
+
background-position: -40px -142px;
|
325
|
+
}
|
326
|
+
|
327
|
+
#fancy-bg-w {
|
328
|
+
top: 0;
|
329
|
+
left: -20px;
|
330
|
+
height: 100%;
|
331
|
+
background-image: url('fancybox-y.png');
|
332
|
+
}
|
333
|
+
|
334
|
+
#fancy-bg-nw {
|
335
|
+
top: -20px;
|
336
|
+
left: -20px;
|
337
|
+
background-image: url('fancybox.png');
|
338
|
+
background-position: -40px -122px;
|
339
|
+
}
|
340
|
+
|
341
|
+
/* IE */
|
342
|
+
|
343
|
+
#fancybox-loading.fancybox-ie div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }
|
344
|
+
.fancybox-ie #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }
|
345
|
+
|
346
|
+
.fancybox-ie #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
|
347
|
+
.fancybox-ie #fancybox-title-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
|
348
|
+
.fancybox-ie #fancybox-title-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
|
349
|
+
.fancybox-ie #fancybox-title-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }
|
350
|
+
|
351
|
+
.fancybox-ie #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
|
352
|
+
.fancybox-ie #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }
|
353
|
+
|
354
|
+
.fancybox-ie .fancy-bg { background: transparent !important; }
|
355
|
+
|
356
|
+
.fancybox-ie #fancy-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
|
357
|
+
.fancybox-ie #fancy-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
|
358
|
+
.fancybox-ie #fancy-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
|
359
|
+
.fancybox-ie #fancy-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
|
360
|
+
.fancybox-ie #fancy-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
|
361
|
+
.fancybox-ie #fancy-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
|
362
|
+
.fancybox-ie #fancy-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
|
363
|
+
.fancybox-ie #fancy-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
|