alula-plugins 0.4.4 → 0.4.11a
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/{LICENSE → MIT-LICENSE} +0 -0
- data/lib/alula/plugins/version.rb +8 -1
- metadata +21 -55
- data/.gitignore +0 -21
- data/Gemfile +0 -4
- data/README.md +0 -29
- data/Rakefile +0 -6
- data/VERSION +0 -1
- data/alula-plugins.gemspec +0 -21
- data/plugins/disqus/assets/javascripts/disqus.js +0 -0
- data/plugins/disqus/assets/stylesheets/disqus.css +0 -0
- data/plugins/emphasis/assets/javascripts/emphasis.js +0 -529
- data/plugins/emphasis/assets/stylesheets/emphasis.css +0 -0
- data/plugins/fancybox/assets/images/blank.gif +0 -0
- data/plugins/fancybox/assets/images/fancybox_loading.gif +0 -0
- data/plugins/fancybox/assets/images/fancybox_sprite.png +0 -0
- data/plugins/fancybox/assets/images/zoom_icon.png +0 -0
- data/plugins/fancybox/assets/javascripts/fancybox.js.coffee +0 -15
- data/plugins/fancybox/assets/javascripts/jquery.fancybox.js +0 -1414
- data/plugins/fancybox/assets/stylesheets/fancybox.css.erb +0 -248
- data/plugins/sublimevideo/assets/images/zoom_icon.png +0 -0
- data/plugins/sublimevideo/assets/javascripts/sublimevideo.js.coffee +0 -0
- data/plugins/sublimevideo/assets/stylesheets/sublimevideo.css.erb +0 -28
|
@@ -1,248 +0,0 @@
|
|
|
1
|
-
/*! fancyBox v2.0.5 fancyapps.com | fancyapps.com/fancybox/#license */
|
|
2
|
-
.fancybox-tmp iframe, .fancybox-tmp object {
|
|
3
|
-
vertical-align: top;
|
|
4
|
-
padding: 0;
|
|
5
|
-
margin: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.fancybox-wrap {
|
|
9
|
-
position: absolute;
|
|
10
|
-
top: 0;
|
|
11
|
-
left: 0;
|
|
12
|
-
z-index: 1002;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.fancybox-outer {
|
|
16
|
-
position: relative;
|
|
17
|
-
padding: 0;
|
|
18
|
-
margin: 0;
|
|
19
|
-
background: #f9f9f9;
|
|
20
|
-
color: #444;
|
|
21
|
-
text-shadow: none;
|
|
22
|
-
-webkit-border-radius: 4px;
|
|
23
|
-
-moz-border-radius: 4px;
|
|
24
|
-
border-radius: 4px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.fancybox-opened {
|
|
28
|
-
z-index: 1003;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.fancybox-opened .fancybox-outer {
|
|
32
|
-
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
|
|
33
|
-
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
|
|
34
|
-
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.fancybox-inner {
|
|
38
|
-
width: 100%;
|
|
39
|
-
height: 100%;
|
|
40
|
-
padding: 0;
|
|
41
|
-
margin: 0;
|
|
42
|
-
position: relative;
|
|
43
|
-
outline: none;
|
|
44
|
-
overflow: hidden;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.fancybox-error {
|
|
48
|
-
color: #444;
|
|
49
|
-
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
50
|
-
margin: 0;
|
|
51
|
-
padding: 10px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.fancybox-image, .fancybox-iframe {
|
|
55
|
-
display: block;
|
|
56
|
-
width: 100%;
|
|
57
|
-
height: 100%;
|
|
58
|
-
border: 0;
|
|
59
|
-
padding: 0;
|
|
60
|
-
margin: 0;
|
|
61
|
-
vertical-align: top;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.fancybox-image {
|
|
65
|
-
max-width: 100%;
|
|
66
|
-
max-height: 100%;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
|
|
70
|
-
background-image: url('<%= asset_url("fancybox_sprite.png") %>');
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
#fancybox-loading {
|
|
74
|
-
position: fixed;
|
|
75
|
-
top: 50%;
|
|
76
|
-
left: 50%;
|
|
77
|
-
margin-top: -22px;
|
|
78
|
-
margin-left: -22px;
|
|
79
|
-
background-position: 0 -108px;
|
|
80
|
-
opacity: 0.8;
|
|
81
|
-
cursor: pointer;
|
|
82
|
-
z-index: 1010;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
#fancybox-loading div {
|
|
86
|
-
width: 44px;
|
|
87
|
-
height: 44px;
|
|
88
|
-
background: url('<%= asset_url("fancybox_loading.gif") %>') center center no-repeat;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.fancybox-close {
|
|
92
|
-
position: absolute;
|
|
93
|
-
top: -18px;
|
|
94
|
-
right: -18px;
|
|
95
|
-
width: 36px;
|
|
96
|
-
height: 36px;
|
|
97
|
-
cursor: pointer;
|
|
98
|
-
z-index: 1004;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.fancybox-nav {
|
|
102
|
-
position: absolute;
|
|
103
|
-
top: 0;
|
|
104
|
-
width: 40%;
|
|
105
|
-
height: 100%;
|
|
106
|
-
cursor: pointer;
|
|
107
|
-
background: transparent url('<%= asset_url("blank.gif") %>'); /* helps IE */
|
|
108
|
-
z-index: 1003;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.fancybox-prev {
|
|
112
|
-
left: 0;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.fancybox-next {
|
|
116
|
-
right: 0;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.fancybox-nav span {
|
|
120
|
-
position: absolute;
|
|
121
|
-
top: 50%;
|
|
122
|
-
width: 36px;
|
|
123
|
-
height: 36px;
|
|
124
|
-
margin-top: -18px;
|
|
125
|
-
cursor: pointer;
|
|
126
|
-
z-index: 1003;
|
|
127
|
-
visibility: hidden;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.fancybox-prev span {
|
|
131
|
-
left: 20px;
|
|
132
|
-
background-position: 0 -36px;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.fancybox-next span {
|
|
136
|
-
right: 20px;
|
|
137
|
-
background-position: 0 -72px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.fancybox-nav:hover span {
|
|
141
|
-
visibility: visible;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.fancybox-tmp {
|
|
145
|
-
position: absolute;
|
|
146
|
-
top: -9999px;
|
|
147
|
-
left: -9999px;
|
|
148
|
-
padding: 0;
|
|
149
|
-
overflow: visible;
|
|
150
|
-
visibility: hidden;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
/* Overlay helper */
|
|
154
|
-
|
|
155
|
-
#fancybox-overlay {
|
|
156
|
-
position: absolute;
|
|
157
|
-
top: 0;
|
|
158
|
-
left: 0;
|
|
159
|
-
overflow: hidden;
|
|
160
|
-
display: none;
|
|
161
|
-
z-index: 1001;
|
|
162
|
-
background: #000;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
/* Title helper */
|
|
166
|
-
|
|
167
|
-
.fancybox-title {
|
|
168
|
-
visibility: hidden;
|
|
169
|
-
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
|
|
170
|
-
position: relative;
|
|
171
|
-
text-shadow: none;
|
|
172
|
-
z-index: 1005;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.fancybox-opened .fancybox-title {
|
|
176
|
-
visibility: visible;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.fancybox-title-float-wrap {
|
|
180
|
-
position: absolute;
|
|
181
|
-
bottom: 0;
|
|
182
|
-
right: 50%;
|
|
183
|
-
margin-bottom: -35px;
|
|
184
|
-
z-index: 1003;
|
|
185
|
-
text-align: center;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.fancybox-title-float-wrap .child {
|
|
189
|
-
display: inline-block;
|
|
190
|
-
margin-right: -100%;
|
|
191
|
-
padding: 2px 20px;
|
|
192
|
-
background: transparent; /* Fallback for web browsers that doesn't support RGBa */
|
|
193
|
-
background: rgba(0, 0, 0, 0.8);
|
|
194
|
-
-webkit-border-radius: 15px;
|
|
195
|
-
-moz-border-radius: 15px;
|
|
196
|
-
border-radius: 15px;
|
|
197
|
-
text-shadow: 0 1px 2px #222;
|
|
198
|
-
color: #FFF;
|
|
199
|
-
font-weight: bold;
|
|
200
|
-
line-height: 24px;
|
|
201
|
-
white-space: nowrap;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.fancybox-title-outside-wrap {
|
|
205
|
-
position: relative;
|
|
206
|
-
margin-top: 10px;
|
|
207
|
-
color: #fff;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
.fancybox-title-inside-wrap {
|
|
211
|
-
margin-top: 10px;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
.fancybox-title-over-wrap {
|
|
215
|
-
position: absolute;
|
|
216
|
-
bottom: 0;
|
|
217
|
-
left: 0;
|
|
218
|
-
color: #fff;
|
|
219
|
-
padding: 10px;
|
|
220
|
-
background: #000;
|
|
221
|
-
background: rgba(0, 0, 0, .8);
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
/* Zoom icon*/
|
|
225
|
-
a.fb_zoomable {
|
|
226
|
-
max-width: 100%;
|
|
227
|
-
display:block;
|
|
228
|
-
width:180px;
|
|
229
|
-
height:76px;
|
|
230
|
-
position:relative;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
a.fb_zoomable span.fb_zoom_icon {
|
|
234
|
-
display:block;
|
|
235
|
-
width:100%;
|
|
236
|
-
height:100%;
|
|
237
|
-
position:absolute;
|
|
238
|
-
top:0;
|
|
239
|
-
left:0;
|
|
240
|
-
background:url(<%= asset_url('zoom_icon.png') %>) no-repeat bottom right;
|
|
241
|
-
opacity:0.3;
|
|
242
|
-
-o-transition:opacity 0.25s;
|
|
243
|
-
-moz-transition:opacity 0.25s;
|
|
244
|
-
-webkit-transition:opacity 0.25s;
|
|
245
|
-
transition:opacity 0.25s;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
a.fb_zoomable:hover span.fb_zoom_icon {opacity:1}
|
|
Binary file
|
|
File without changes
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
a.zoomable {
|
|
2
|
-
max-width: 100%;
|
|
3
|
-
display:block;
|
|
4
|
-
width:180px;
|
|
5
|
-
height:76px;
|
|
6
|
-
background:#000;
|
|
7
|
-
position:relative;
|
|
8
|
-
-webkit-box-shadow:rgba(0,0,0,0.4) 0 4px 10px;
|
|
9
|
-
-moz-box-shadow:rgba(0,0,0,0.4) 0 4px 10px;
|
|
10
|
-
box-shadow:rgba(0,0,0,0.4) 0 4px 10px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
a.zoomable span.zoom_icon {
|
|
14
|
-
display:block;
|
|
15
|
-
width:100%;
|
|
16
|
-
height:100%;
|
|
17
|
-
position:absolute;
|
|
18
|
-
top:0;
|
|
19
|
-
left:0;
|
|
20
|
-
background:url(<%= asset_url('zoom_icon.png') %>) no-repeat bottom right;
|
|
21
|
-
opacity:0.3;
|
|
22
|
-
-o-transition:opacity 0.25s;
|
|
23
|
-
-moz-transition:opacity 0.25s;
|
|
24
|
-
-webkit-transition:opacity 0.25s;
|
|
25
|
-
transition:opacity 0.25s;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
a.zoomable:hover span.zoom_icon {opacity:1}
|