facades 1.0.4 → 1.0.6
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/lib/facades/support/middleman.rb +15 -0
- data/lib/facades/version.rb +1 -1
- data/src/icons/font-awesome.yml +60 -1
- data/src/scss/facades/media/_video.scss +16 -0
- metadata +4 -2
@@ -0,0 +1,15 @@
|
|
1
|
+
module Facades
|
2
|
+
module Middleman
|
3
|
+
class << self
|
4
|
+
##
|
5
|
+
# Make helpers available to middleman
|
6
|
+
#
|
7
|
+
def registered(app)
|
8
|
+
app.send :include, Facades::Helpers
|
9
|
+
end
|
10
|
+
alias :included :registered
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
::Middleman::Extensions.register(:facades, Facades::Middleman)
|
data/lib/facades/version.rb
CHANGED
data/src/icons/font-awesome.yml
CHANGED
@@ -247,4 +247,63 @@ circle: 'f111'
|
|
247
247
|
reply: 'f112'
|
248
248
|
github_alt: 'f113'
|
249
249
|
folder_close_a: 'f114'
|
250
|
-
folder_open_al: 'f115'
|
250
|
+
folder_open_al: 'f115'
|
251
|
+
expand_alt: 'f116'
|
252
|
+
collapse_alt: 'f117'
|
253
|
+
smile: 'f118'
|
254
|
+
frown: 'f119'
|
255
|
+
meh: 'f11a'
|
256
|
+
gamepad: 'f11b'
|
257
|
+
keyboard: 'f11c'
|
258
|
+
flag_alt: 'f11d'
|
259
|
+
flag_checkered: 'f11e'
|
260
|
+
terminal: 'f120'
|
261
|
+
code: 'f121'
|
262
|
+
mail_forward: 'f064'
|
263
|
+
mail_reply: 'f112'
|
264
|
+
reply_all: 'f122'
|
265
|
+
mail_reply_all: 'f122'
|
266
|
+
star_half_empty: 'f123'
|
267
|
+
star_half_full: 'f123'
|
268
|
+
location_arrow: 'f124'
|
269
|
+
rotate_left: 'f0e2'
|
270
|
+
rotate_right: 'f01e'
|
271
|
+
crop: 'f125'
|
272
|
+
code_fork: 'f126'
|
273
|
+
unlink: 'f127'
|
274
|
+
question: 'f128'
|
275
|
+
info: 'f129'
|
276
|
+
exclamation: 'f12a'
|
277
|
+
superscript: 'f12b'
|
278
|
+
subscript: 'f12c'
|
279
|
+
eraser: 'f12d'
|
280
|
+
puzzle_piece: 'f12e'
|
281
|
+
microphone: 'f130'
|
282
|
+
microphone_off: 'f131'
|
283
|
+
shield: 'f132'
|
284
|
+
calendar_empty: 'f133'
|
285
|
+
fire_extinguisher: 'f134'
|
286
|
+
rocket: 'f135'
|
287
|
+
maxcdn: 'f136'
|
288
|
+
chevron_sign_left: 'f137'
|
289
|
+
chevron_sign_right: 'f138'
|
290
|
+
chevron_sign_up: 'f139'
|
291
|
+
chevron_sign_down: 'f13a'
|
292
|
+
html5: 'f13b'
|
293
|
+
css3: 'f13c'
|
294
|
+
anchor: 'f13d'
|
295
|
+
unlock_alt: 'f13e'
|
296
|
+
bullseye: 'f140'
|
297
|
+
ellipsis_horizontal: 'f141'
|
298
|
+
ellipsis_vertical: 'f142'
|
299
|
+
rss_sign: 'f143'
|
300
|
+
play_sign: 'f144'
|
301
|
+
ticket: 'f145'
|
302
|
+
minus_sign_alt: 'f146'
|
303
|
+
check_minus: 'f147'
|
304
|
+
level_up: 'f148'
|
305
|
+
level_down: 'f149'
|
306
|
+
check_sign: 'f14a'
|
307
|
+
edit_sign: 'f14b'
|
308
|
+
external_link_sign: 'f14c'
|
309
|
+
share_sign: 'f14d'
|
@@ -0,0 +1,16 @@
|
|
1
|
+
//------------------------------------------------------
|
2
|
+
// Video players
|
3
|
+
//
|
4
|
+
// Responsive video player taken from http://webdesignerwall.com/demo/responsive-css-tricks/
|
5
|
+
//------------------------------------------------------*/
|
6
|
+
|
7
|
+
@mixin responsive-video{
|
8
|
+
position: relative;
|
9
|
+
padding-bottom: 56.25%;
|
10
|
+
height: 0;
|
11
|
+
overflow: hidden;
|
12
|
+
|
13
|
+
iframe, object, embed, video{
|
14
|
+
position:absolute; top:0; left:0; width:100%; height:100%;
|
15
|
+
}
|
16
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: facades
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-05-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
@@ -164,6 +164,7 @@ files:
|
|
164
164
|
- lib/facades/support/compass/project/index.html
|
165
165
|
- lib/facades/support/compass/project/manifest.rb
|
166
166
|
- lib/facades/support/compass/project/robots.txt
|
167
|
+
- lib/facades/support/middleman.rb
|
167
168
|
- lib/facades/support/rails.rb
|
168
169
|
- lib/facades/support/simple_form.rb
|
169
170
|
- lib/facades/version.rb
|
@@ -202,6 +203,7 @@ files:
|
|
202
203
|
- src/scss/facades/icons/_classes.scss
|
203
204
|
- src/scss/facades/icons/_legacy.scss
|
204
205
|
- src/scss/facades/layout/_lists.scss
|
206
|
+
- src/scss/facades/media/_video.scss
|
205
207
|
- src/scss/facades/mixins/_gradients.scss
|
206
208
|
- src/scss/facades/mixins/_rhythm.scss
|
207
209
|
- src/scss/facades/mobile/_buttons.scss
|