##// 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 background: #f9f9f9;
29 background: #f9f9f9;
30 color: #444;
30 color: #444;
31 text-shadow: none;
31 text-shadow: none;
32 -webkit-border-radius: 4px;
33 -moz-border-radius: 4px;
34 border-radius: 4px;
35 }
32 }
36
33
37 .fancybox-opened {
34 .fancybox-opened {
38 z-index: 8030;
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 .fancybox-outer, .fancybox-inner {
38 .fancybox-outer, .fancybox-inner {
48 position: relative;
39 position: relative;
49 }
40 }
@@ -76,7 +67,7 b''
76 }
67 }
77
68
78 #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
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 #fancybox-loading {
73 #fancybox-loading {
@@ -94,7 +85,7 b''
94 #fancybox-loading div {
85 #fancybox-loading div {
95 width: 44px;
86 width: 44px;
96 height: 44px;
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 .fancybox-close {
91 .fancybox-close {
@@ -114,7 +105,7 b''
114 height: 100%;
105 height: 100%;
115 cursor: pointer;
106 cursor: pointer;
116 text-decoration: none;
107 text-decoration: none;
117 background: transparent url('blank.gif'); /* helps IE */
108 background: transparent /*url('blank.gif'); /* helps IE */
118 -webkit-tap-highlight-color: rgba(0,0,0,0);
109 -webkit-tap-highlight-color: rgba(0,0,0,0);
119 z-index: 8040;
110 z-index: 8040;
120 }
111 }
@@ -175,7 +166,7 b''
175 overflow: hidden;
166 overflow: hidden;
176 display: none;
167 display: none;
177 z-index: 8010;
168 z-index: 8010;
178 background: url('fancybox_overlay.png');
169 /*background: url('fancybox_overlay.png');*/
179 }
170 }
180
171
181 .fancybox-overlay-fixed {
172 .fancybox-overlay-fixed {
@@ -6,6 +6,9 b''
6
6
7 $(".fancy").fancybox({
7 $(".fancy").fancybox({
8 closeBtn: false,
8 closeBtn: false,
9 closeClick: true
9 closeClick: true,
10 padding: 5,
11 openEffect: 'none',
12 closeEffect: 'none'
10 });
13 });
11 }) No newline at end of file
14 })
General Comments 0
You need to be logged in to leave comments. Login now