##// END OF EJS Templates
Decreased popup image border size. Speed up fade effect of the popup.
neko259 -
r64:35dab848 default
parent child Browse files
Show More
@@ -29,21 +29,12 b''
29 29 background: #f9f9f9;
30 30 color: #444;
31 31 text-shadow: none;
32 -webkit-border-radius: 4px;
33 -moz-border-radius: 4px;
34 border-radius: 4px;
35 32 }
36 33
37 34 .fancybox-opened {
38 35 z-index: 8030;
39 36 }
40 37
41 .fancybox-opened .fancybox-skin {
42 -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
43 -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
44 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
45 }
46
47 38 .fancybox-outer, .fancybox-inner {
48 39 position: relative;
49 40 }
@@ -76,7 +67,7 b''
76 67 }
77 68
78 69 #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
79 background-image: url('fancybox_sprite.png');
70 /*background-image: url('fancybox_sprite.png');*/
80 71 }
81 72
82 73 #fancybox-loading {
@@ -94,7 +85,7 b''
94 85 #fancybox-loading div {
95 86 width: 44px;
96 87 height: 44px;
97 background: url('fancybox_loading.gif') center center no-repeat;
88 /*background: url('fancybox_loading.gif') center center no-repeat;*/
98 89 }
99 90
100 91 .fancybox-close {
@@ -114,7 +105,7 b''
114 105 height: 100%;
115 106 cursor: pointer;
116 107 text-decoration: none;
117 background: transparent url('blank.gif'); /* helps IE */
108 background: transparent /*url('blank.gif'); /* helps IE */
118 109 -webkit-tap-highlight-color: rgba(0,0,0,0);
119 110 z-index: 8040;
120 111 }
@@ -175,7 +166,7 b''
175 166 overflow: hidden;
176 167 display: none;
177 168 z-index: 8010;
178 background: url('fancybox_overlay.png');
169 /*background: url('fancybox_overlay.png');*/
179 170 }
180 171
181 172 .fancybox-overlay-fixed {
@@ -6,6 +6,9 b''
6 6
7 7 $(".fancy").fancybox({
8 8 closeBtn: false,
9 closeClick: true
9 closeClick: true,
10 padding: 5,
11 openEffect: 'none',
12 closeEffect: 'none'
10 13 });
11 14 }) No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now