flutie 1.1.4 → 1.1.5
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.textile
CHANGED
@@ -6,7 +6,11 @@ h2. Installation & Upgrading
|
|
6
6
|
|
7
7
|
Flutie is a Rails engine. It works with versions of Rails greater than 3.0.
|
8
8
|
|
9
|
-
Flutie is recommended to be run as a gem and included in your Gemfile
|
9
|
+
Flutie is recommended to be run as a gem and included in your Gemfile:
|
10
|
+
|
11
|
+
bc. gem "flutie", "~> 1.1"
|
12
|
+
|
13
|
+
After you've bundled, run the installer:
|
10
14
|
|
11
15
|
bc. rake flutie:install
|
12
16
|
|
@@ -81,7 +81,7 @@ input, select {
|
|
81
81
|
body {
|
82
82
|
color: #222;
|
83
83
|
font-size: 13px;
|
84
|
-
font-family:
|
84
|
+
font-family: "helvetica neue", arial, helvetica, "lucida grande", sans-serif; }
|
85
85
|
|
86
86
|
h1, h2, h3, h4, h5, h6 {
|
87
87
|
color: #111;
|
@@ -90,9 +90,9 @@ h1, h2, h3, h4, h5, h6 {
|
|
90
90
|
/* Success, error & notice boxes for messages and errors. */
|
91
91
|
div.error, div.notice, div.success,
|
92
92
|
#flash_failure, #flash_success, #flash_notice {
|
93
|
-
border: 1px solid #ddd;
|
94
93
|
-moz-border-radius: 8px;
|
95
94
|
-webkit-border-radius: 8px;
|
95
|
+
border: 1px solid #ddd;
|
96
96
|
margin-bottom: 1em;
|
97
97
|
padding: 0.8em; }
|
98
98
|
|
@@ -150,12 +150,12 @@ hr.space {
|
|
150
150
|
|
151
151
|
/* for image replacement */
|
152
152
|
.ir {
|
153
|
+
background-repeat: no-repeat;
|
154
|
+
direction: ltr;
|
153
155
|
display: block;
|
154
|
-
text-indent: -999em;
|
155
156
|
overflow: hidden;
|
156
|
-
background-repeat: no-repeat;
|
157
157
|
text-align: left;
|
158
|
-
|
158
|
+
text-indent: -999em; }
|
159
159
|
|
160
160
|
/* Hide for both screenreaders and browsers
|
161
161
|
css-discuss.incutio.com/wiki/Screenreader_Visibility */
|
@@ -163,20 +163,21 @@ hr.space {
|
|
163
163
|
display: none;
|
164
164
|
visibility: hidden; }
|
165
165
|
|
166
|
-
/* Hide only visually, but have it available for screenreaders
|
166
|
+
/* Hide only visually, but have it available for screenreaders
|
167
167
|
www.webaim.org/techniques/css/invisiblecontent/ & j.mp/visuallyhidden */
|
168
168
|
.visuallyhidden {
|
169
|
-
position: absolute !important;
|
170
169
|
clip: rect(1px 1px 1px 1px);
|
171
170
|
/* IE6, IE7 */
|
172
|
-
clip: rect(1px, 1px, 1px, 1px);
|
171
|
+
clip: rect(1px, 1px, 1px, 1px);
|
172
|
+
position: absolute !important; }
|
173
173
|
|
174
174
|
/* Hide visually and from screenreaders, but maintain layout */
|
175
175
|
.invisible {
|
176
176
|
visibility: hidden; }
|
177
177
|
|
178
178
|
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
|
179
|
-
.clearfix:before,
|
179
|
+
.clearfix:before,
|
180
|
+
.clearfix:after {
|
180
181
|
content: "\0020";
|
181
182
|
display: block;
|
182
183
|
height: 0;
|
@@ -332,8 +333,6 @@ pre, code {
|
|
332
333
|
/* CSS2 */
|
333
334
|
white-space: pre-wrap;
|
334
335
|
/* CSS 2.1 */
|
335
|
-
white-space: pre-line;
|
336
|
-
/* CSS 3 (and 2.1 as well, actually) */
|
337
336
|
word-wrap: break-word;
|
338
337
|
/* IE */ }
|
339
338
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
body {
|
2
2
|
color: #222;
|
3
3
|
font-size: 13px;
|
4
|
-
font-family:
|
4
|
+
font-family: "helvetica neue", arial, helvetica, "lucida grande", sans-serif;
|
5
5
|
}
|
6
6
|
|
7
7
|
h1, h2, h3, h4, h5, h6 {
|
@@ -12,9 +12,9 @@ h1, h2, h3, h4, h5, h6 {
|
|
12
12
|
/* Success, error & notice boxes for messages and errors. */
|
13
13
|
div.error, div.notice, div.success,
|
14
14
|
#flash_failure, #flash_success, #flash_notice {
|
15
|
-
border: 1px solid #ddd;
|
16
15
|
-moz-border-radius: 8px;
|
17
16
|
-webkit-border-radius: 8px;
|
17
|
+
border: 1px solid #ddd;
|
18
18
|
margin-bottom: 1em;
|
19
19
|
padding: 0.8em;
|
20
20
|
}
|
@@ -82,13 +82,12 @@ hr.space {
|
|
82
82
|
|
83
83
|
/* for image replacement */
|
84
84
|
.ir {
|
85
|
+
background-repeat: no-repeat;
|
86
|
+
direction: ltr;
|
85
87
|
display: block;
|
86
|
-
text-indent: -999em;
|
87
88
|
overflow: hidden;
|
88
|
-
background-repeat:
|
89
|
-
no-repeat;
|
90
89
|
text-align: left;
|
91
|
-
|
90
|
+
text-indent: -999em;
|
92
91
|
}
|
93
92
|
|
94
93
|
/* Hide for both screenreaders and browsers
|
@@ -98,28 +97,40 @@ hr.space {
|
|
98
97
|
visibility: hidden;
|
99
98
|
}
|
100
99
|
|
101
|
-
/* Hide only visually, but have it available for screenreaders
|
100
|
+
/* Hide only visually, but have it available for screenreaders
|
102
101
|
www.webaim.org/techniques/css/invisiblecontent/ & j.mp/visuallyhidden */
|
103
|
-
.visuallyhidden {
|
102
|
+
.visuallyhidden {
|
104
103
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
105
|
-
clip: rect(1px, 1px, 1px, 1px);
|
104
|
+
clip: rect(1px, 1px, 1px, 1px);
|
105
|
+
position: absolute !important;
|
106
|
+
}
|
106
107
|
|
107
108
|
/* Hide visually and from screenreaders, but maintain layout */
|
108
|
-
.invisible {
|
109
|
+
.invisible {
|
110
|
+
visibility: hidden;
|
111
|
+
}
|
109
112
|
|
110
113
|
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
|
111
|
-
.clearfix:before,
|
114
|
+
.clearfix:before,
|
115
|
+
.clearfix:after {
|
112
116
|
content: "\0020";
|
113
117
|
display: block;
|
114
118
|
height: 0;
|
115
119
|
visibility: hidden;
|
116
120
|
}
|
117
121
|
|
118
|
-
.clearfix:after {
|
122
|
+
.clearfix:after {
|
123
|
+
clear: both;
|
124
|
+
}
|
125
|
+
|
119
126
|
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
|
120
|
-
.clearfix {
|
127
|
+
.clearfix {
|
128
|
+
zoom: 1;
|
129
|
+
}
|
121
130
|
|
122
|
-
.ie7 img {
|
131
|
+
.ie7 img {
|
132
|
+
-ms-interpolation-mode: bicubic;
|
133
|
+
}
|
123
134
|
|
124
135
|
@media print {
|
125
136
|
* { background: transparent !important; color: #444 !important; text-shadow: none !important; }
|
@@ -3,7 +3,6 @@
|
|
3
3
|
v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
|
4
4
|
html5doctor.com/html-5-reset-stylesheet/
|
5
5
|
*/
|
6
|
-
|
7
6
|
html, body, div, span, object, iframe,
|
8
7
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
9
8
|
abbr, address, cite, code,
|
@@ -13,7 +12,7 @@ b, i,
|
|
13
12
|
dl, dt, dd, ol, ul, li,
|
14
13
|
fieldset, form, label, legend,
|
15
14
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
16
|
-
article, aside, canvas, details, figcaption, figure,
|
15
|
+
article, aside, canvas, details, figcaption, figure,
|
17
16
|
footer, header, hgroup, menu, nav, section, summary,
|
18
17
|
time, mark, audio, video {
|
19
18
|
margin:0;
|
@@ -26,7 +25,7 @@ time, mark, audio, video {
|
|
26
25
|
}
|
27
26
|
|
28
27
|
article, aside, details, figcaption, figure,
|
29
|
-
footer, header, hgroup, menu, nav, section {
|
28
|
+
footer, header, hgroup, menu, nav, section {
|
30
29
|
display:block;
|
31
30
|
}
|
32
31
|
|
@@ -52,4 +51,4 @@ table { border-collapse:collapse; border-spacing:0; }
|
|
52
51
|
|
53
52
|
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
|
54
53
|
|
55
|
-
input, select { vertical-align:middle; }
|
54
|
+
input, select { vertical-align:middle; }
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flutie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 5
|
10
|
+
version: 1.1.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Chad Pytel
|