flexlayout-rails 0.1.1 → 0.1.2
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/README.md +94 -37
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/flexlayout-rails.gemspec +12 -3
- data/spec/flexlayout/center.html +13 -0
- data/spec/flexlayout/form.html +18 -0
- data/vendor/assets/javascripts/FT-colum-flow.min.js +22 -0
- data/vendor/assets/javascripts/FT-column-flow.js +1409 -0
- data/vendor/assets/javascripts/jquery.wookmark.js +169 -0
- data/vendor/assets/javascripts/jquery.wookmark.min.js +11 -0
- data/vendor/assets/javascripts/multi-column.js +403 -0
- data/vendor/assets/stylesheets/flexlayout.css +105 -0
- data/vendor/assets/stylesheets/multi-column.css +13 -0
- metadata +13 -3
@@ -0,0 +1,105 @@
|
|
1
|
+
/* From: http://infrequently.org/2009/08/css-3-progress/ */
|
2
|
+
|
3
|
+
/* hbox and vbox classes */
|
4
|
+
|
5
|
+
.hbox {
|
6
|
+
display: -webkit-box;
|
7
|
+
-webkit-box-orient: horizontal;
|
8
|
+
-webkit-box-align: stretch;
|
9
|
+
|
10
|
+
display: -moz-box;
|
11
|
+
-moz-box-orient: horizontal;
|
12
|
+
-moz-box-align: stretch;
|
13
|
+
|
14
|
+
display: box;
|
15
|
+
box-orient: horizontal;
|
16
|
+
box-align: stretch;
|
17
|
+
}
|
18
|
+
|
19
|
+
.hbox > * {
|
20
|
+
-webkit-box-flex: 0;
|
21
|
+
-moz-box-flex: 0;
|
22
|
+
box-flex: 0;
|
23
|
+
display: block;
|
24
|
+
}
|
25
|
+
|
26
|
+
.vbox {
|
27
|
+
display: -webkit-box;
|
28
|
+
-webkit-box-orient: vertical;
|
29
|
+
-webkit-box-align: stretch;
|
30
|
+
|
31
|
+
display: -moz-box;
|
32
|
+
-moz-box-orient: vertical;
|
33
|
+
-moz-box-align: stretch;
|
34
|
+
|
35
|
+
display: box;
|
36
|
+
box-orient: vertical;
|
37
|
+
box-align: stretch;
|
38
|
+
}
|
39
|
+
|
40
|
+
.vbox > * {
|
41
|
+
-webkit-box-flex: 0;
|
42
|
+
-moz-box-flex: 0;
|
43
|
+
box-flex: 0;
|
44
|
+
display: block;
|
45
|
+
}
|
46
|
+
|
47
|
+
.spacer {
|
48
|
+
-webkit-box-flex: 1;
|
49
|
+
-moz-box-flex: 1;
|
50
|
+
box-flex: 1;
|
51
|
+
}
|
52
|
+
|
53
|
+
.reverse {
|
54
|
+
-webkit-box-direction: reverse;
|
55
|
+
-moz-box-direction: reverse;
|
56
|
+
box-direction: reverse;
|
57
|
+
}
|
58
|
+
|
59
|
+
.boxFlex0 {
|
60
|
+
-webkit-box-flex: 0;
|
61
|
+
-moz-box-flex: 0;
|
62
|
+
box-flex: 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
.boxFlex1, .boxFlex {
|
66
|
+
-webkit-box-flex: 1;
|
67
|
+
-moz-box-flex: 1;
|
68
|
+
box-flex: 1;
|
69
|
+
}
|
70
|
+
|
71
|
+
.boxFlex2 {
|
72
|
+
-webkit-box-flex: 2;
|
73
|
+
-moz-box-flex: 2;
|
74
|
+
box-flex: 2;
|
75
|
+
}
|
76
|
+
|
77
|
+
.boxGroup1 {
|
78
|
+
-webkit-box-flex-group: 1;
|
79
|
+
-moz-box-flex-group: 1;
|
80
|
+
box-flex-group: 1;
|
81
|
+
}
|
82
|
+
|
83
|
+
.boxGroup2 {
|
84
|
+
-webkit-box-flex-group: 2;
|
85
|
+
-moz-box-flex-group: 2;
|
86
|
+
box-flex-group: 2;
|
87
|
+
}
|
88
|
+
|
89
|
+
.start {
|
90
|
+
-webkit-box-pack: start;
|
91
|
+
-moz-box-pack: start;
|
92
|
+
box-pack: start;
|
93
|
+
}
|
94
|
+
|
95
|
+
.end {
|
96
|
+
-webkit-box-pack: end;
|
97
|
+
-moz-box-pack: end;
|
98
|
+
box-pack: end;
|
99
|
+
}
|
100
|
+
|
101
|
+
.center {
|
102
|
+
-webkit-box-pack: center;
|
103
|
+
-moz-box-pack: center;
|
104
|
+
box-pack: center;
|
105
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flexlayout-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -91,7 +91,8 @@ dependencies:
|
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0.5'
|
94
|
-
description: Use CSS Flex, Regions and Template layout models in your
|
94
|
+
description: Use CSS Flex, Regions, Multi-column and Template layout models in your
|
95
|
+
Rails apps
|
95
96
|
email: kmandrup@gmail.com
|
96
97
|
executables: []
|
97
98
|
extensions: []
|
@@ -109,17 +110,24 @@ files:
|
|
109
110
|
- VERSION
|
110
111
|
- flexlayout-rails.gemspec
|
111
112
|
- lib/flexlayout-rails.rb
|
113
|
+
- spec/flexlayout/center.html
|
114
|
+
- spec/flexlayout/form.html
|
112
115
|
- spec/regions/img/lorem-ipsum-logo.jpeg
|
113
116
|
- spec/regions/index.html
|
114
117
|
- spec/regions/js/detection.js
|
115
118
|
- spec/regions/js/layout.js
|
116
119
|
- spec/regions/js/setup.js
|
117
120
|
- spec/spec_helper.rb
|
121
|
+
- vendor/assets/javascripts/FT-colum-flow.min.js
|
122
|
+
- vendor/assets/javascripts/FT-column-flow.js
|
118
123
|
- vendor/assets/javascripts/feature-detects/cssregions.js
|
119
124
|
- vendor/assets/javascripts/flexie.js
|
120
125
|
- vendor/assets/javascripts/flexie.min.js
|
121
126
|
- vendor/assets/javascripts/jquery.lettering.js
|
122
127
|
- vendor/assets/javascripts/jquery.lettering.min.js
|
128
|
+
- vendor/assets/javascripts/jquery.wookmark.js
|
129
|
+
- vendor/assets/javascripts/jquery.wookmark.min.js
|
130
|
+
- vendor/assets/javascripts/multi-column.js
|
123
131
|
- vendor/assets/javascripts/regions.jquery.js
|
124
132
|
- vendor/assets/javascripts/regions.jquery.min.js
|
125
133
|
- vendor/assets/javascripts/template_layout/jquery/jquery.tpl_layout1.1.6.js
|
@@ -127,6 +135,8 @@ files:
|
|
127
135
|
- vendor/assets/javascripts/template_layout/templateLayout.compiler.js
|
128
136
|
- vendor/assets/javascripts/template_layout/templateLayout.generator.js
|
129
137
|
- vendor/assets/javascripts/template_layout/templateLayout.js
|
138
|
+
- vendor/assets/stylesheets/flexlayout.css
|
139
|
+
- vendor/assets/stylesheets/multi-column.css
|
130
140
|
homepage: http://github.com/kristianmandrup/flexlayout-rails
|
131
141
|
licenses:
|
132
142
|
- MIT
|
@@ -142,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
152
|
version: '0'
|
143
153
|
segments:
|
144
154
|
- 0
|
145
|
-
hash:
|
155
|
+
hash: 3858388048093815556
|
146
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
157
|
none: false
|
148
158
|
requirements:
|